-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
118 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
package i18n | ||
|
||
var enLocale = LocaleTexts{ | ||
StartMessage: "Welcome! Use /link command to get you link!", | ||
InitialSendMessagePrompt: "You are sending message to:\n%s\n\nEnter your message:", | ||
StartMessageText: "Welcome! Use /link command to get you link!", | ||
InitialSendMessagePromptText: "You are sending message to:\n%s\n\nEnter your message:", | ||
UnblockButtonText: "Unblock", | ||
SendMessageButtonText: "Send message", | ||
ReplyButtonText: "Reply", | ||
BlockButtonText: "Block", | ||
UnblockAllUsersResultText: "All users unblocked!", | ||
UserBlockedText: "User blocked!", | ||
UserUnblockedText: "User unblocked!", | ||
CancelButtonText: "Cancel", | ||
YourLanguageText: "Your language is: %s", | ||
NoPreferredLanguageSetText: "You don't have a preferred language yet.", | ||
NeverMindButtonText: "Never mind!", | ||
LanguageUpdatedSuccessfullyText: "Language updated successfully to English.", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
package i18n | ||
|
||
var faLocale = LocaleTexts{ | ||
StartMessage: "خوش اومدی! از دستور /link برای دریافت لینک ناشناس خودت استفاده بکن", | ||
InitialSendMessagePrompt: "در حال ارسال پیام ناشناس به %s هستید.\n\n پیغام خود را بنویسید:", | ||
StartMessageText: "خوش اومدی! از دستور /link برای دریافت لینک ناشناس خودت استفاده بکن", | ||
InitialSendMessagePromptText: "در حال ارسال پیام ناشناس به %s هستید.\n\n پیغام خود را بنویسید:", | ||
UnblockButtonText: "آنبلاک", | ||
SendMessageButtonText: "ارسال پیغام", | ||
ReplyButtonText: "پاسخ بده", | ||
BlockButtonText: "بلاک کن", | ||
UnblockAllUsersResultText: "تمامی کاربران آنبلاک شدند!", | ||
UserBlockedText: "کاربر بلاک شد!", | ||
UserUnblockedText: "کاربر آنبلاک شد!", | ||
CancelButtonText: "لغو", | ||
YourLanguageText: "زبان انتخابی شما: %s", | ||
NoPreferredLanguageSetText: "شما زبان ترجیح داده شدهای ندارید", | ||
NeverMindButtonText: "بیخیال!", | ||
LanguageUpdatedSuccessfullyText: "زبان با موفقیت به فارسی تغییر پیدا کرد.", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//go:build manual | ||
|
||
package main | ||
|
||
import ( | ||
|