-
-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes: Newly supported languages (Hungarian) #1344
- Loading branch information
1 parent
ef31fc4
commit 48a0536
Showing
5 changed files
with
179 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"NSCameraUsageDescription" = "Used to take photo for post status"; | ||
"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; | ||
"NewPostShortcutItemTitle" = "New Post"; | ||
"SearchShortcutItemTitle" = "Search"; |
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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
"16wxgf" = "Post on Mastodon"; | ||
|
||
"3sNRTG" = "Username"; | ||
|
||
"4kVQfr" = "Just to confirm, you wanted ‘${accounts}’?"; | ||
|
||
"751xkl" = "Text Content"; | ||
|
||
"CsR7G2" = "Post on Mastodon"; | ||
|
||
"D2h76g" = "Post on Mastodon"; | ||
|
||
"Gcmnot" = "Account"; | ||
|
||
"HZSGTr" = "What content to post?"; | ||
|
||
"HdGikU" = "Posting failed"; | ||
|
||
"KDNTJ4" = "Failure Reason"; | ||
|
||
"RHxKOw" = "Send Post with text content"; | ||
|
||
"RxSqsb" = "Post"; | ||
|
||
"WCIR3D" = "Post ${content} on Mastodon"; | ||
|
||
"YMuITB-dYQ5NN" = "${content}. Post via ${accounts}. (Public)"; | ||
|
||
"YMuITB-ehFLjY" = "${content}. Post via ${accounts}. (Followers Only)"; | ||
|
||
"ZKJSNu" = "Posts"; | ||
|
||
"ZS1XaK" = "${content}"; | ||
|
||
"ZbSjzC" = "Visibility"; | ||
|
||
"Zim0Js" = "Name"; | ||
|
||
"Zo4jgJ" = "Post Visibility"; | ||
|
||
"apSxMG-dYQ5NN" = "There are ${count} options matching ‘Public’."; | ||
|
||
"apSxMG-ehFLjY" = "There are ${count} options matching ‘Followers Only’."; | ||
|
||
"ayoYEb-dYQ5NN" = "${content}. (Public)"; | ||
|
||
"ayoYEb-ehFLjY" = "${content}. (Followers Only)"; | ||
|
||
"ciITyC" = "There are ${count} options matching ‘${accounts}’."; | ||
|
||
"dUyuGg" = "Post on Mastodon"; | ||
|
||
"dYQ5NN" = "Public"; | ||
|
||
"ehFLjY" = "Followers Only"; | ||
|
||
"gfePDu" = "Posting failed. ${failureReason}"; | ||
|
||
"k7dbKQ" = "Post was sent successfully."; | ||
|
||
"nQtHsT" = "Accounts"; | ||
|
||
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted ‘Public’?"; | ||
|
||
"oGiqmY-ehFLjY" = "Just to confirm, you wanted ‘Followers Only’?"; | ||
|
||
"rM6dvp" = "URL"; | ||
|
||
"ryJLwG" = "Post was sent successfully."; | ||
|
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>There are ${count} options matching ‘${content}’. - 2</key> | ||
<dict> | ||
<key>NSStringLocalizedFormatKey</key> | ||
<string>There are %#@count_option@ matching ‘${content}’.</string> | ||
<key>count_option</key> | ||
<dict> | ||
<key>NSStringFormatSpecTypeKey</key> | ||
<string>NSStringPluralRuleType</string> | ||
<key>NSStringFormatValueTypeKey</key> | ||
<string>%ld</string> | ||
<key>zero</key> | ||
<string>0 options</string> | ||
<key>one</key> | ||
<string>1 option</string> | ||
<key>two</key> | ||
<string>2 options</string> | ||
<key>few</key> | ||
<string>%ld options</string> | ||
<key>many</key> | ||
<string>%ld options</string> | ||
<key>other</key> | ||
<string>%ld options</string> | ||
</dict> | ||
</dict> | ||
<key>There are ${count} options matching ‘${visibility}’.</key> | ||
<dict> | ||
<key>NSStringLocalizedFormatKey</key> | ||
<string>There are %#@count_option@ matching ‘${visibility}’.</string> | ||
<key>count_option</key> | ||
<dict> | ||
<key>NSStringFormatSpecTypeKey</key> | ||
<string>NSStringPluralRuleType</string> | ||
<key>NSStringFormatValueTypeKey</key> | ||
<string>%ld</string> | ||
<key>zero</key> | ||
<string>0 options</string> | ||
<key>one</key> | ||
<string>1 option</string> | ||
<key>two</key> | ||
<string>2 options</string> | ||
<key>few</key> | ||
<string>%ld options</string> | ||
<key>many</key> | ||
<string>%ld options</string> | ||
<key>other</key> | ||
<string>%ld options</string> | ||
</dict> | ||
</dict> | ||
</dict> | ||
</plist> |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
"3d6HSO" = "Enter username"; | ||
|
||
"7DZrRA" = "Username"; | ||
|
||
"82L4Nj" = "Yes"; | ||
|
||
"A1rwKl" = "Hashtag"; | ||
|
||
"BFppgH" = "Username"; | ||
|
||
"GTUbZg" = "Hashtag"; | ||
|
||
"OL6lkx" = "Account"; | ||
|
||
"OcUp1W" = "Hashtag"; | ||
|
||
"QkKsLf" = "true"; | ||
|
||
"ZLZ6sg" = "Latest Followers"; | ||
|
||
"e0W2wo" = "Multi Followers Count"; | ||
|
||
"fovmPX" = "Accounts"; | ||
|
||
"gpCwrM" = "Followers Count"; | ||
|
||
"jg9D5P" = "No"; | ||
|
||
"sOLUtG" = "Enter follower Username"; | ||
|
||
"tVvJ9c" = "Followers"; | ||
|
||
"wftYbm" = "false"; | ||
|
||
"xVtyec" = "Show chart"; | ||
|
||
"xcBHPA" = "Ignore content warnings"; | ||
|
||
"zbXop9" = "Hashtag"; | ||
|
||
"zeJo4f" = "Should the Widget show a chart?"; | ||
|