Skip to content

Commit

Permalink
Fix issue #326 Translation error of Indonesian.
Browse files Browse the repository at this point in the history
  • Loading branch information
j-fbriere committed Jun 20, 2024
1 parent 3692f0f commit 7c322fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/47.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
* Implement feature #316 Add fixupx.com as supported link.
* Implement PR #323 Put newly saved tweets to the top of the saved view.
* Fix issue #324 Customized translator settings not applied on Application Restart.
* Fix issue #326 Translation error of Indonesian.
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/default.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
* Implement feature #316 Add fixupx.com as supported link.
* Implement PR #323 Put newly saved tweets to the top of the saved view.
* Fix issue #324 Customized translator settings not applied on Application Restart.
* Fix issue #326 Translation error of Indonesian.
3 changes: 2 additions & 1 deletion lib/utils/translation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ class TranslationAPI {
static List<Map<String,dynamic>>? _translation_hosts;
static int current_translation_host_idx = 0; // Random().nextInt(translation_hosts.length);
static Map<String, String> langCodeReplace = {
'iw': 'he'
'iw': 'he',
'in': 'id'
};

static List<Map<String,dynamic>> translationHosts() {
Expand Down

0 comments on commit 7c322fa

Please sign in to comment.