Refactor translation files

- Add prefixes to all message keys to provide context
- Use messages with attributes for some UI elements (dropdowns, dialogs, checkboxes, menus)
- Rename some class fields for consistency with translation keys
This commit is contained in:
Ivaylo Draganov
2022-11-10 13:46:51 +02:00
committed by Paul Chote
parent 46caa2d889
commit a0f17b15ec
89 changed files with 1095 additions and 1053 deletions

View File

@@ -18,7 +18,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
public class ConnectionLogic : ChromeLogic
{
[TranslationReference("endpoint")]
const string ConnectingToEndpoint = "connecting-to-endpoint";
const string ConnectingToEndpoint = "label-connecting-to-endpoint";
readonly Action onConnect;
readonly Action onAbort;
@@ -87,16 +87,16 @@ namespace OpenRA.Mods.Common.Widgets.Logic
public class ConnectionFailedLogic : ChromeLogic
{
[TranslationReference("target")]
const string CouldNotConnectToTarget = "could-not-connect-to-target";
const string CouldNotConnectToTarget = "label-could-not-connect-to-target";
[TranslationReference]
const string UnknownError = "unknown-error";
const string UnknownError = "label-unknown-error";
[TranslationReference]
const string PasswordRequired = "password-required";
const string PasswordRequired = "label-password-required";
[TranslationReference]
const string ConnectionFailed = "connection-failed";
const string ConnectionFailed = "label-connection-failed";
readonly PasswordFieldWidget passwordField;
bool passwordOffsetAdjusted;
@@ -171,7 +171,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
public class ConnectionSwitchModLogic : ChromeLogic
{
[TranslationReference]
const string ModSwitchFailed = "mod-switch-failed";
const string ModSwitchFailed = "notification-mod-switch-failed";
[ObjectCreator.UseCtor]
public ConnectionSwitchModLogic(Widget widget, OrderManager orderManager, NetworkConnection connection, Action onAbort, Action<string> onRetry)