From eef348ff20784f49643e58693cd6025a01cb6715 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 10 Jun 2013 15:51:10 +0000 Subject: [PATCH] Don't mark the strings "1", "2", ... "10" as translatable. 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 | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/richtext/richtextindentspage.cpp b/src/richtext/richtextindentspage.cpp index 7f84d4e32d..15019ae7c0 100644 --- a/src/richtext/richtextindentspage.cpp +++ b/src/richtext/richtextindentspage.cpp @@ -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.")); -- 2.47.2