Skip to content

Commit 5a4c57c

Browse files
grikomsnlove-linger
authored andcommitted
localization: add Bahasa Indonesia (id_ID) support (#1849)
(cherry picked from commit 936244b)
1 parent 64a7a18 commit 5a4c57c

File tree

3 files changed

+908
-1
lines changed

3 files changed

+908
-1
lines changed

src/App.axaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<ResourceInclude x:Key="de_DE" Source="/Resources/Locales/de_DE.axaml"/>
1515
<ResourceInclude x:Key="en_US" Source="/Resources/Locales/en_US.axaml"/>
1616
<ResourceInclude x:Key="fr_FR" Source="/Resources/Locales/fr_FR.axaml"/>
17+
<ResourceInclude x:Key="id_ID" Source="/Resources/Locales/id_ID.axaml"/>
1718
<ResourceInclude x:Key="it_IT" Source="/Resources/Locales/it_IT.axaml"/>
1819
<ResourceInclude x:Key="pt_BR" Source="/Resources/Locales/pt_BR.axaml"/>
1920
<ResourceInclude x:Key="uk_UA" Source="/Resources/Locales/uk_UA.axaml"/>

src/Models/Locales.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Collections.Generic;
1+
using System.Collections.Generic;
22

33
namespace SourceGit.Models
44
{
@@ -12,6 +12,7 @@ public class Locale
1212
new Locale("English", "en_US"),
1313
new Locale("Español", "es_ES"),
1414
new Locale("Français", "fr_FR"),
15+
new Locale("Bahasa Indonesia", "id_ID"),
1516
new Locale("Italiano", "it_IT"),
1617
new Locale("Português (Brasil)", "pt_BR"),
1718
new Locale("Українська", "uk_UA"),

0 commit comments

Comments
 (0)