SVN_SILENT wordings

svn path=/trunk/playground/graphics/okular/; revision=552294
This commit is contained in:
Pino Toscano 2006-06-17 11:11:48 +00:00
parent b1dd2e8d04
commit ebe64cc2b7
3 changed files with 6 additions and 5 deletions

View file

@ -9,12 +9,12 @@
<x>0</x>
<y>0</y>
<width>352</width>
<height>240</height>
<height>221</height>
</rect>
</property>
<layout class="QVBoxLayout" >
<property name="margin" >
<number>9</number>
<number>0</number>
</property>
<property name="spacing" >
<number>6</number>
@ -80,7 +80,7 @@ In case of problems you might want to see its error messages</string>
<item>
<widget class="QLabel" name="addParams" >
<property name="text" >
<string>Additional parameters to ghostscript</string>
<string>Additional parameters to Ghostscript</string>
</property>
<property name="wordWrap" >
<bool>true</bool>

View file

@ -67,7 +67,7 @@ void GSGenerator::addPages( KConfigDialog *dlg )
Ui_GSSettingsWidget gsw;
QWidget* w = new QWidget(0);
gsw.setupUi(w);
dlg->addPage(w, GSSettings::self() , i18n ("Ghostscript Backend"), "kghostview" );
dlg->addPage(w, GSSettings::self(), i18n("Ghostscript"), "kghostview", i18n("Ghostscript backend configuration") );
}
CDSC_ORIENTATION_ENUM GSGenerator::orientation( int rot )

View file

@ -243,7 +243,7 @@ Part::Part(QWidget *parentWidget,
prefs->setText( i18n( "Configure okular..." ) ); // TODO: use "Configure PDF Viewer..." when used as part (like in konq
KAction * genPrefs = KStdAction::preferences( this, SLOT( slotGeneratorPreferences() ), ac, "generator_prefs" );
genPrefs->setText( i18n( "Configure backends..." ) );
genPrefs->setText( i18n( "Configure Backends..." ) );
QString constraint("([X-KDE-Priority] > 0) and (exist Library) and ([X-KDE-okularHasInternalSettings])") ;
KService::List gens = KServiceTypeTrader::self()->query("okular/Generator",constraint);
if (gens.count() <= 0)
@ -410,6 +410,7 @@ void Part::slotGeneratorPreferences( )
// we didn't find an instance of this dialog, so lets create it
KConfigDialog * dialog = new KConfigDialog( m_pageView, "generator_prefs", KpdfSettings::self() );
dialog->setCaption( i18n( "Configure Backends" ) );
QHashIterator<QString, Generator*> it(m_loadedGenerators);
while(it.hasNext())