author | llornkcor <llornkcor> | 2002-09-30 03:36:02 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-09-30 03:36:02 (UTC) |
commit | 57e740cb3826b88b10daad09b8d453dd609af9cb (patch) (side-by-side diff) | |
tree | 32bdbebdd37107d62225aa71c926b8cb8f0c39e8 | |
parent | 251458a2dd6d75c59440dc006060db2544de5d0e (diff) | |
download | opie-57e740cb3826b88b10daad09b8d453dd609af9cb.zip opie-57e740cb3826b88b10daad09b8d453dd609af9cb.tar.gz opie-57e740cb3826b88b10daad09b8d453dd609af9cb.tar.bz2 |
one tr - Standard, the rest of the catagories are in etc/unit_conversion.dat
-rw-r--r-- | noncore/tools/calculator/calculatorimpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/tools/calculator/calculatorimpl.cpp b/noncore/tools/calculator/calculatorimpl.cpp index 0925073..8d11132 100644 --- a/noncore/tools/calculator/calculatorimpl.cpp +++ b/noncore/tools/calculator/calculatorimpl.cpp @@ -163,25 +163,25 @@ CalculatorImpl::CalculatorImpl( QWidget * parent, const char * name, func_buttons[11] = PushButtonF12; for ( int x = 0 ; x < func_button_count ; x++ ) { QPushButton* tmpbutton = func_buttons[x]; faces << tmpbutton->text(); bgr_function.insert(tmpbutton); } connect( &bgr_function, SIGNAL(clicked(int) ) , this, SLOT(do_convert(int) ) ); connect( &bgr_function, SIGNAL(clicked(int) ) , this, SLOT(std_funcs (int) ) ); connect(ComboBoxFunction, SIGNAL(activated(int) ), this, SLOT(function_button(int) ) ); - captions.append("Standard"); + captions.append(tr("Standard")); ComboBoxFunction->insertItem(captions.last()); // now add in the conversion modes // when the menu gets done, these should be in a submenu QString tmp = QPEApplication::qpeDir(); tmp += "etc/unit_conversion.dat"; QFile myfile(tmp); if ( !myfile.open( IO_Translate | IO_ReadOnly ) ) { qDebug("Data file unit_conversion.dat not found\nNo conversion features will be available\n"+tmp); // disable the f button if no conv file available ComboBoxFunction->setEnabled(FALSE); } |