misc: reduce impact of locale changes

This is more backwards compatible and would permit applying this locale to an older version without as much mess. I don't think MSE has any concept of versioning on locales unfortunately to permit declaring which field applies to which version.
This commit is contained in:
Brendan Hagan
2022-07-09 19:21:41 -04:00
parent 65452f7c7a
commit 5e1f923b38
2 changed files with 33 additions and 31 deletions
+31 -29
View File
@@ -80,9 +80,9 @@ menu:
stack: &Stacked Bars 3 stack: &Stacked Bars 3
scatter: S&catter Plot 4 scatter: S&catter Plot 4
scatter pie: Sc&atter-Pie 5 scatter pie: Sc&atter-Pie 5
console: Console console: Console
clear console: &Clear Console Ctrl+L clear console: &Clear Console Ctrl+L
window: &Window window: &Window
new window: &New Window new window: &New Window
@@ -199,9 +199,9 @@ help:
stack: A bar graph with stacked bars stack: A bar graph with stacked bars
scatter: A scatter plot, the size indicates the number of cards scatter: A scatter plot, the size indicates the number of cards
scatter pie: A scatter plot where each item is a small pie graph scatter pie: A scatter plot where each item is a small pie graph
#console: #console:
clear console: Clear the console clear console: Clear the console
#window: #window:
new window: Creates another window to edit the same set new window: Creates another window to edit the same set
@@ -356,8 +356,8 @@ tool:
curve segment: Curve curve segment: Curve
free point: Free free point: Free
smooth point: Smooth smooth point: Smooth
symmetric point: Symmetric symmetric point: Symmetric
clear console: Clear Console clear console: Clear Console
############################################################## Toolbar help text ############################################################## Toolbar help text
@@ -433,8 +433,8 @@ tooltip:
curve segment: To curve curve segment: To curve
free point: Unlock point free point: Unlock point
smooth point: Make point smooth smooth point: Make point smooth
symmetric point: Make point symmetric symmetric point: Make point symmetric
clear console: Clear Console clear console: Clear Console
############################################################## Labels in the GUI ############################################################## Labels in the GUI
@@ -474,29 +474,29 @@ label:
# New set window # New set window
game type: &Game type: game type: &Game type:
style type: &Card style: style type: &Card style:
search game list : Filter Games search game list: Filter Games
search stylesheet list: Filter Stylesheets search stylesheet list: Filter Stylesheets
stylesheet not found : stylesheet not found:
The set you are trying to open uses the stylesheet "%s". The set you are trying to open uses the stylesheet "%s".
This stylesheet is not found on your system, please select an alternative. This stylesheet is not found on your system, please select an alternative.
# Preferences # Preferences
language : Language language: Language
windows : Open sets windows: Open sets
app language : Language of the user interface : app language: Language of the user interface:
card display : Card Display card display: Card Display
storage : Storage storage: Storage
zoom : &Zoom: zoom: &Zoom:
export : &Export: export: &Export:
scale : &Internal Scale: scale: &Internal Scale:
percent of normal: % of normal size percent of normal: % of normal size
external programs: External programs external programs: External programs
apprentice: &Apprentice: apprentice: &Apprentice:
apprentice exe: Apprentice Executable apprentice exe: Apprentice Executable
internal scale desc: internal scale desc:
Scale to internally store card images at. Scale to internally store card images at.
Changing this may impact how Sharpening looks. Changing this may impact how Sharpening looks.
Does not retroactively apply to existing images. Does not retroactively apply to existing images.
check at startup: Check for new versions at startup check at startup: Check for new versions at startup
checking requires internet: checking requires internet:
@@ -526,8 +526,10 @@ label:
html export options:Export options html export options:Export options
# Image slicer # Image slicer
original: Original (%s x %s): original: Original:
result: Result (%s x %s): result: Result:
original with dimensions: Original (%s x %s):
result with dimensions: Result (%s x %s):
size: Size size: Size
original size: &Original Size original size: &Original Size
size to fit: Size to &Fit size to fit: Size to &Fit
@@ -597,7 +599,7 @@ button:
add custom pack: Add &Custom Pack... add custom pack: Add &Custom Pack...
# Console panel # Console panel
evaluate: &Evaluate evaluate: &Evaluate
clear: &Clear clear: &Clear
# Welcome # Welcome
@@ -618,7 +620,7 @@ button:
check now: Check &Now check now: Check &Now
always: Always always: Always
if internet connection exists: If internet connection exists if internet connection exists: If internet connection exists
never: Never never: Never
internal image extension: Store images internally with file extension internal image extension: Store images internally with file extension
# Column select # Column select
@@ -681,7 +683,7 @@ title:
preferences: Preferences preferences: Preferences
global: Global global: Global
display: Display display: Display
directories: Directories directories: Directories
internal: Internal internal: Internal
updates: Updates updates: Updates
update check: Update Check update check: Update Check
+2 -2
View File
@@ -134,11 +134,11 @@ ImageSliceWindow::ImageSliceWindow(Window* parent, const Image& source, const wx
// top row: image editors // top row: image editors
wxSizer* s2 = new wxBoxSizer(wxHORIZONTAL); wxSizer* s2 = new wxBoxSizer(wxHORIZONTAL);
wxSizer* s3 = new wxBoxSizer(wxVERTICAL); wxSizer* s3 = new wxBoxSizer(wxVERTICAL);
s3->Add(new wxStaticText(this, wxID_ANY, _LABEL_2_("original", to_string(slice.source.GetWidth()), to_string(slice.source.GetHeight())))); s3->Add(new wxStaticText(this, wxID_ANY, _LABEL_2_("original with dimensions", to_string(slice.source.GetWidth()), to_string(slice.source.GetHeight()))));
s3->Add(selector, 1, wxEXPAND | wxTOP, 4); s3->Add(selector, 1, wxEXPAND | wxTOP, 4);
s2->Add(s3, 1, wxEXPAND | wxALL, 4); s2->Add(s3, 1, wxEXPAND | wxALL, 4);
wxSizer* s4 = new wxBoxSizer(wxVERTICAL); wxSizer* s4 = new wxBoxSizer(wxVERTICAL);
s4->Add(new wxStaticText(this, wxID_ANY, _LABEL_2_("result", to_string(slice.target_size.GetWidth()), to_string(slice.target_size.GetHeight())))); s4->Add(new wxStaticText(this, wxID_ANY, _LABEL_2_("result with dimensions", to_string(slice.target_size.GetWidth()), to_string(slice.target_size.GetHeight()))));
s4->Add(preview, 0, wxTOP, 4); s4->Add(preview, 0, wxTOP, 4);
s2->Add(s4, 0, wxALL, 4); s2->Add(s4, 0, wxALL, 4);
s->Add(s2, 1, wxEXPAND); s->Add(s2, 1, wxEXPAND);