[Uml-devel] kdesdk (silent)
Stephan Binner
binner at kde.org
Sun Jan 16 11:38:04 UTC 2005
CVS commit by binner:
CVS_SILENT i18n style guide fixes
M +2 -2 kbabel/kbabel/kbabel.cpp 1.194
M +1 -1 kspy/spy.cpp 1.12
M +2 -2 umbrello/umbrello/classimport.cpp 1.63
M +1 -1 umbrello/umbrello/uml.cpp 1.134
M +2 -2 umbrello/umbrello/dialogs/umlentityattributedialog.cpp 1.2
--- kdesdk/kbabel/kbabel/kbabel.cpp #1.193:1.194
@@ -534,7 +534,7 @@ void KBabelMW::setupActions()
SHIFT+Key_Next, m_view,
SLOT(gotoNextError()),actionCollection(), "go_next_error");
- action = new KAction(i18n("&Back in history"), "back", ALT+Key_Left, m_view,
+ action = new KAction(i18n("&Back in History"), "back", ALT+Key_Left, m_view,
SLOT(backHistory()),actionCollection(), "go_back_history");
- action = new KAction(i18n("For&ward in history"), "forward", ALT+Key_Right, m_view,
+ action = new KAction(i18n("For&ward in History"), "forward", ALT+Key_Right, m_view,
SLOT(forwardHistory()),actionCollection(), "go_forward_history");
--- kdesdk/kspy/spy.cpp #1.11:1.12
@@ -65,5 +65,5 @@ Spy::Spy( QWidget *parent, const char *n
mSigSlotView = new SigSlotView( tabs, "signals and slots view" );
- tabs->addTab( mSigSlotView, i18n( "Signals and Slots" ) );
+ tabs->addTab( mSigSlotView, i18n( "Signals && Slots" ) );
mReceiversView = new ReceiversView( tabs, "receivers view" );
--- kdesdk/umbrello/umbrello/classimport.cpp #1.62:1.63
@@ -109,6 +109,6 @@ UMLObject *ClassImport::createUMLObject(
int wantNamespace = KMessageBox::questionYesNo(NULL,
i18n("Is the scope %1 a namespace or a class?").arg(scopeName),
- i18n("C++ import requests your help"),
- i18n("namespace"), i18n("class"));
+ i18n("C++ Import Requests Your Help"),
+ i18n("Namespace"), i18n("Class"));
Uml::Object_Type ot = (wantNamespace == KMessageBox::Yes ? Uml::ot_Package : Uml::ot_Class);
o = m_umldoc->createUMLObject(ot, scopeName, parentPkg);
--- kdesdk/umbrello/umbrello/uml.cpp #1.133:1.134
@@ -254,5 +254,5 @@ void UMLApp::initActions() {
viewExportImage = new KAction(i18n("&Export as Picture..."), SmallIconSet("image"), 0,
this, SLOT( slotCurrentViewExportImage() ), actionCollection(), "view_export_image");
- viewProperties = new KAction(i18n("&Properties..."), SmallIconSet("info"), 0,
+ viewProperties = new KAction(i18n("&Properties"), SmallIconSet("info"), 0,
this, SLOT( slotCurrentViewProperties() ), actionCollection(), "view_properties");
--- kdesdk/umbrello/umbrello/dialogs/umlentityattributedialog.cpp #1.1:1.2
@@ -82,9 +82,9 @@ void UMLEntityAttributeDialog::setupDial
m_pValuesLE, m_pEntityAttribute->getValues() );
- m_pAutoIncrementCB = new QCheckBox( i18n("&Auto Increment"), m_pValuesGB );
+ m_pAutoIncrementCB = new QCheckBox( i18n("&Auto increment"), m_pValuesGB );
m_pAutoIncrementCB->setChecked( m_pEntityAttribute->getAutoIncrement() );
valuesLayout->addWidget(m_pAutoIncrementCB, 5, 0);
- m_pNullCB = new QCheckBox( i18n("Allow &Null"), m_pValuesGB );
+ m_pNullCB = new QCheckBox( i18n("Allow &null"), m_pValuesGB );
m_pNullCB->setChecked( m_pEntityAttribute->getNull() );
valuesLayout->addWidget(m_pNullCB, 6, 0);
More information about the umbrello-devel
mailing list