Merge similar but not quite identical translated strings.
Some translated strings appeared several times in almost but not quite identical form. Remove a few of them so that they don't have to be translated multiple times. Closes #13637. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69828 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -804,7 +804,7 @@ wxComboBox *wxGenericPrintSetupDialog::CreatePaperTypeChoice()
|
||||
|
||||
wxComboBox *choice = new wxComboBox( this,
|
||||
wxPRINTID_PAPERSIZE,
|
||||
_("Paper Size"),
|
||||
_("Paper size"),
|
||||
wxDefaultPosition,
|
||||
wxSize(width, wxDefaultCoord),
|
||||
n, choices );
|
||||
@@ -831,7 +831,7 @@ wxGenericPageSetupDialog::wxGenericPageSetupDialog( wxWindow *parent,
|
||||
wxPageSetupDialogData* data)
|
||||
: wxPageSetupDialogBase( parent,
|
||||
wxID_ANY,
|
||||
_("Page Setup"),
|
||||
_("Page setup"),
|
||||
wxPoint(0,0),
|
||||
wxSize(600, 600),
|
||||
wxDEFAULT_DIALOG_STYLE|wxTAB_TRAVERSAL )
|
||||
@@ -858,7 +858,7 @@ wxGenericPageSetupDialog::wxGenericPageSetupDialog( wxWindow *parent,
|
||||
|
||||
m_paperTypeChoice = new wxComboBox( this,
|
||||
wxPRINTID_PAPERSIZE,
|
||||
_("Paper Size"),
|
||||
_("Paper size"),
|
||||
wxDefaultPosition,
|
||||
wxSize(300, wxDefaultCoord),
|
||||
n, choices );
|
||||
@@ -1060,7 +1060,7 @@ wxComboBox *wxGenericPageSetupDialog::CreatePaperTypeChoice(int *x, int *y)
|
||||
|
||||
wxComboBox *choice = new wxComboBox( this,
|
||||
wxPRINTID_PAPERSIZE,
|
||||
_("Paper Size"),
|
||||
_("Paper size"),
|
||||
wxPoint(*x, *y),
|
||||
wxSize(300, wxDefaultCoord),
|
||||
n, choices );
|
||||
|
||||
Reference in New Issue
Block a user