aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-04-06 11:58:00 -0400
committerlempamo <[email protected]>2017-04-06 11:58:00 -0400
commit5308c1cd4807edb2ec33f75923e609e8a382f1af (patch)
treeda9df0f701520300c973613547deecf5d6680022 /ShiftOS.WinForms
parenta40ba40cc048422c6bd3b810fe52d5b00014a031 (diff)
downloadshiftos_thereturn-5308c1cd4807edb2ec33f75923e609e8a382f1af.tar.gz
shiftos_thereturn-5308c1cd4807edb2ec33f75923e609e8a382f1af.tar.bz2
shiftos_thereturn-5308c1cd4807edb2ec33f75923e609e8a382f1af.zip
german translations aint showin halp
Diffstat (limited to 'ShiftOS.WinForms')
-rw-r--r--ShiftOS.WinForms/Resources/strings_de.txt9
-rw-r--r--ShiftOS.WinForms/Resources/strings_en.txt1
-rw-r--r--ShiftOS.WinForms/WinformsDesktop.cs6
3 files changed, 9 insertions, 7 deletions
diff --git a/ShiftOS.WinForms/Resources/strings_de.txt b/ShiftOS.WinForms/Resources/strings_de.txt
index 0602612..139ed69 100644
--- a/ShiftOS.WinForms/Resources/strings_de.txt
+++ b/ShiftOS.WinForms/Resources/strings_de.txt
@@ -48,7 +48,7 @@ Wenn eine Systemdatei von dem Virenscanner erkannt wird, wird sie ersetzt.",
"{UPGRADES}":"Upgrades",
"{APPLICATION}":"Anwendung",
"{SCRIPT}":"Skript",
- "{ERROR}":"Error",
+ "{ERROR}":"Fehler",
"{SCRIPTS}":"Skripts",
"{NULL}":"null",
"{ID}":"ID Num",
@@ -109,7 +109,7 @@ Wenn eine Systemdatei von dem Virenscanner erkannt wird, wird sie ersetzt.",
"{UPGRADE_DEVELOPMENT_DESCRIPTION}":"Development Upgrade Don't Buy",
"{SECONDS_LEFT}":"sekunden �brig",
"{CASH_OUT_WITH_CODEPOINTS}":"Cash out with your codepoints",
- "{PONG_PLAY_ON_FOR_MORE}":"Play on for more!",
+ "{PONG_PLAY_ON_FOR_MORE}":"Spiel f�r mehr!",
"{YOU_REACHED_LEVEL}":"You've reached level",
"{PONG_BEAT_AI_REWARD}":"Reward for beating AI (CP)",
"{PONG_BEAT_AI_REWARD_SECONDARY}":"Codepoints for beating AI:",
@@ -121,7 +121,7 @@ Wenn eine Systemdatei von dem Virenscanner erkannt wird, wird sie ersetzt.",
"{TERMINAL_FORMATTING_DRIVE}":"Formatting drive... %percent %",
"{INSTALLING_SHIFTOS}":"Installing ShiftOS on %domain.",
"{YOU_MISSED_OUT_ON}":"You missed out on",
- "{BUT_YOU_GAINED}":"But you gained",
+ "{BUT_YOU_GAINED}":"Aber du hast gewonnen",
"{PONG_PLAYON_DESC}":"Or do you want to try your luck on the next level to increase your reward?",
"{PONG_CASHOUT_DESC}":"Would you like the end the game now and cash out with your reward?",
"{INITIAL_H_VEL}":"Initial H Vel",
@@ -131,7 +131,7 @@ Wenn eine Systemdatei von dem Virenscanner erkannt wird, wird sie ersetzt.",
"{MULTIPLAYER_ONLY}":"Program not compatible with single-user domain.",
"{MULTIPLAYER_ONLY_EXP}":"This program cannot run within a single-user domain. You must be within a multi-user domain to use this program.",
"{SHIFTER_SKIN_APPLIED}":"Shifter - Settings applied!",
- "{YOU_HAVE_EARNED}":"You have earned",
+ "{YOU_HAVE_EARNED}":"Du hast bekommen",
"{CREATING_PATH}":"Creating directory: %path",
"{CREATING_FILE}":"Creating file: %path",
"{SHIFTORIUM_HELP_DESCRIPTION}": "Help Descriptions",
@@ -240,5 +240,6 @@ Wenn eine Systemdatei von dem Virenscanner erkannt wird, wird sie ersetzt.",
"{DIALOG_NAME}":"Dialog",
"{COLOR_PICKER_NAME}":"Color Picker",
"{CHAT_NAME}":"Chat",
+ "{NOTIFICATIONS}":"Benachrichtigungen",
"{GERMAN_SECRET}":"guten tag polen ist anschluss",
} \ No newline at end of file
diff --git a/ShiftOS.WinForms/Resources/strings_en.txt b/ShiftOS.WinForms/Resources/strings_en.txt
index cc4bd1a..f63f0e0 100644
--- a/ShiftOS.WinForms/Resources/strings_en.txt
+++ b/ShiftOS.WinForms/Resources/strings_en.txt
@@ -240,4 +240,5 @@ If a system file is deleted by the virus scanner, it will be replaced.",
"{DIALOG_NAME}":"Dialog",
"{COLOR_PICKER_NAME}":"Color Picker",
"{CHAT_NAME}":"Chat",
+ "{NOTIFICATIONS}":"Notifications",
}
diff --git a/ShiftOS.WinForms/WinformsDesktop.cs b/ShiftOS.WinForms/WinformsDesktop.cs
index 033802e..182c607 100644
--- a/ShiftOS.WinForms/WinformsDesktop.cs
+++ b/ShiftOS.WinForms/WinformsDesktop.cs
@@ -65,7 +65,7 @@ namespace ShiftOS.WinForms
//Soon this will pop a balloon note.
this.Invoke(new Action(() =>
{
- btnnotifications.Text = "Notifications (" + NotificationDaemon.GetUnreadCount().ToString() + ")";
+ btnnotifications.Text = Localization.Parse("{NOTIFICATIONS} (" + NotificationDaemon.GetUnreadCount().ToString() + ")");
}));
};
@@ -74,7 +74,7 @@ namespace ShiftOS.WinForms
//Soon this will pop a balloon note.
this.Invoke(new Action(() =>
{
- btnnotifications.Text = "Notifications (" + NotificationDaemon.GetUnreadCount().ToString() + ")";
+ btnnotifications.Text = Localization.Parse("{NOTIFICATIONS} (" + NotificationDaemon.GetUnreadCount().ToString() + ")");
}));
};
@@ -100,7 +100,7 @@ namespace ShiftOS.WinForms
this.Invoke(new Action(() => SetupDesktop()));
this.Invoke(new Action(() =>
{
- btnnotifications.Text = "Notifications (" + NotificationDaemon.GetUnreadCount().ToString() + ")";
+ btnnotifications.Text = Localization.Parse("{NOTIFICATIONS} (" + NotificationDaemon.GetUnreadCount().ToString() + ")");
}));
};
Shiftorium.Installed += () =>