]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't mark the strings "1", "2", ... "10" as translatable.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 10 Jun 2013 15:51:10 +0000 (15:51 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 10 Jun 2013 15:51:10 +0000 (15:51 +0000)
They are the same in all the languages, don't create extra work for the
translators.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74151 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/richtext/richtextindentspage.cpp

index 7f84d4e32d830b55042882d4ad5a22dd8ae86a1d..15019ae7c0dc28f8fd80f83c9300148e72f7312e 100644 (file)
@@ -237,16 +237,16 @@ void wxRichTextIndentsSpacingPage::CreateControls()
 
     wxArrayString m_outlineLevelCtrlStrings;
     m_outlineLevelCtrlStrings.Add(_("(none)"));
-    m_outlineLevelCtrlStrings.Add(_("1"));
-    m_outlineLevelCtrlStrings.Add(_("2"));
-    m_outlineLevelCtrlStrings.Add(_("3"));
-    m_outlineLevelCtrlStrings.Add(_("4"));
-    m_outlineLevelCtrlStrings.Add(_("5"));
-    m_outlineLevelCtrlStrings.Add(_("6"));
-    m_outlineLevelCtrlStrings.Add(_("7"));
-    m_outlineLevelCtrlStrings.Add(_("8"));
-    m_outlineLevelCtrlStrings.Add(_("9"));
-    m_outlineLevelCtrlStrings.Add(_("10"));
+    m_outlineLevelCtrlStrings.Add("1");
+    m_outlineLevelCtrlStrings.Add("2");
+    m_outlineLevelCtrlStrings.Add("3");
+    m_outlineLevelCtrlStrings.Add("4");
+    m_outlineLevelCtrlStrings.Add("5");
+    m_outlineLevelCtrlStrings.Add("6");
+    m_outlineLevelCtrlStrings.Add("7");
+    m_outlineLevelCtrlStrings.Add("8");
+    m_outlineLevelCtrlStrings.Add("9");
+    m_outlineLevelCtrlStrings.Add("10");
     m_outlineLevelCtrl = new wxComboBox( itemRichTextDialogPage1, ID_RICHTEXTINDENTSSPACINGPAGE_OUTLINELEVEL, _("(none)"), wxDefaultPosition, wxSize(85, -1), m_outlineLevelCtrlStrings, wxCB_READONLY );
     m_outlineLevelCtrl->SetStringSelection(_("(none)"));
     m_outlineLevelCtrl->SetHelpText(_("The outline level."));