github.com/GeniusesGroup/libgo@v0.0.0-20220929090155-5ff932cb408e/command/locale.per.go (about) 1 //go:build lang_per 2 3 /* For license and copyright information please see the LEGAL file in the code repository */ 4 5 package cmd 6 7 import ( 8 er "github.com/GeniusesGroup/libgo/error" 9 "github.com/GeniusesGroup/libgo/protocol" 10 ) 11 12 const domainPersian = "فرمان" 13 14 func init() { 15 ErrServiceNotAcceptCLI.SetDetail(protocol.LanguagePersian, domainPersian, "پروتکل CLI پشتیبانی نمی شود", 16 "درخواست برای سرویس مدنظر بدلیل عدم پشتیبانی پروتکل مورد نیاز قابلیت انجام روی سرور فعلی را ندارد", 17 "سرور دیگر را امتحان کنید یا با پشتیبانی پلتفرم تماس بگیرید", 18 "پیاده سازی این پروتکل برای پاسخ گویی به سرویس ها به شدت ساده است، وقتی برای پیاده سازی اختصاص دهید", 19 nil) 20 }