twin: replace three dot ellipsis with equally spaced ellipsis

Signed-off-by: Wantao Liu <vantao@aosc.io>
pull/394/head
Wantao Liu 7 months ago
parent 5fde428606
commit ecddb0fb6c
No known key found for this signature in database
GPG Key ID: D2B5C9C2D981AF61

@ -189,7 +189,7 @@ KWinDecorationModule::KWinDecorationModule(TQWidget* parent, const char* name, c
inactiveShadowSettings = new TQGroupBox(1, TQt::Horizontal,
i18n("Inactive Window Shadows"), shadowPage);
whichShadowSettings = new TQGroupBox(3, TQt::Horizontal,
i18n("Draw Shadow Under Normal Windows And..."), shadowPage);
i18n("Draw Shadow Under Normal Windows And"), shadowPage);
cbShadowDocks = new TQCheckBox(i18n("Docks and &panels"),
whichShadowSettings);
@ -951,7 +951,7 @@ TQString KWinDecorationModule::quickHelp() const
"as well as titlebar button positions and custom decoration options.</p>"
"To choose a theme for your window decoration click on its name and apply your choice by clicking the \"Apply\" button below."
" If you do not want to apply your choice you can click the \"Reset\" button to discard your changes."
"<p>You can configure each theme in the \"Configure [...]\" tab. There are different options specific for each theme.</p>"
"<p>You can configure each theme in the \"Configure []\" tab. There are different options specific for each theme.</p>"
"<p>In \"General Options (if available)\" you can activate the \"Buttons\" tab by checking the \"Use custom titlebar button positions\" box."
" In the \"Buttons\" tab you can change the positions of the buttons to your liking.</p>" );
}

@ -884,7 +884,7 @@ KAdvancedConfig::KAdvancedConfig (bool _standAlone, TDEConfig *_config, TQWidget
hideUtilityWindowsForInactive = new TQCheckBox( i18n( "Hide utility windows for inactive applications" ), this );
TQWhatsThis::add( hideUtilityWindowsForInactive,
i18n( "When turned on, utility windows (tool windows, torn-off menus,...) of inactive applications will be"
i18n( "When turned on, utility windows (tool windows, torn-off menus,) of inactive applications will be"
" hidden and will be shown only when the application becomes active. Note that applications"
" have to mark the windows with the proper window type for this feature to work." ));
connect(hideUtilityWindowsForInactive, TQT_SIGNAL(toggled(bool)), TQT_SLOT(changed()));

@ -29,7 +29,7 @@
<cstring>new_button</cstring>
</property>
<property name="text">
<string>&amp;New...</string>
<string>&amp;New</string>
</property>
</widget>
<widget class="KPushButton" row="1" column="1">
@ -37,7 +37,7 @@
<cstring>modify_button</cstring>
</property>
<property name="text">
<string>&amp;Modify...</string>
<string>&amp;Modify</string>
</property>
</widget>
<widget class="KPushButton" row="2" column="1">

@ -1901,7 +1901,7 @@
<cstring>shortcut_edit</cstring>
</property>
<property name="text">
<string>Edit...</string>
<string>Edit</string>
</property>
</widget>
<widget class="KRestrictedLine" row="9" column="2" rowspan="1" colspan="3">

@ -30,7 +30,7 @@ PluginMgr::PluginMgr()
void PluginMgr::error( const TQString &error_msg )
{
tqWarning( "%s", (i18n("TWin: ") + error_msg +
i18n("\nTWin will now exit...")).local8Bit().data() );
i18n("\nTWin will now exit")).local8Bit().data() );
exit(1);
}

@ -67,13 +67,13 @@ TQPopupMenu* Workspace::clientPopup()
advanced_popup->insertItem( i18n("&No Border")+'\t'+keys->shortcut("Window No Border").seq(0).toString(), Options::NoBorderOp );
advanced_popup->insertItem( i18n("Shad&ow"), Options::ShadowOp );
advanced_popup->insertItem( SmallIconSet("key_bindings"),
i18n("Window &Shortcut...")+'\t'+keys->shortcut("Setup Window Shortcut").seq(0).toString(), Options::SetupWindowShortcutOp );
i18n("Window &Shortcut")+'\t'+keys->shortcut("Setup Window Shortcut").seq(0).toString(), Options::SetupWindowShortcutOp );
advanced_popup->insertSeparator();
advanced_popup->insertItem( SmallIconSet( "suspend" ), i18n("&Suspend Application"), Options::SuspendWindowOp );
advanced_popup->insertItem( SmallIconSet( "application-x-executable" ), i18n("&Resume Application"), Options::ResumeWindowOp );
advanced_popup->insertSeparator();
advanced_popup->insertItem( SmallIconSet( "wizard" ), i18n("&Special Window Settings..."), Options::WindowRulesOp );
advanced_popup->insertItem( SmallIconSet( "wizard" ), i18n("&Special Application Settings..."), Options::ApplicationRulesOp );
advanced_popup->insertItem( SmallIconSet( "wizard" ), i18n("&Special Window Settings"), Options::WindowRulesOp );
advanced_popup->insertItem( SmallIconSet( "wizard" ), i18n("&Special Application Settings"), Options::ApplicationRulesOp );
popup->insertItem(i18n("Ad&vanced"), advanced_popup );
desk_popup_index = popup->count();
@ -105,7 +105,7 @@ TQPopupMenu* Workspace::clientPopup()
if (!TDEGlobal::config()->isImmutable() &&
!kapp->authorizeControlModules(Workspace::configModules(true)).isEmpty())
{
popup->insertItem(SmallIconSet( "configure" ), i18n("Configur&e Window Behavior..."), this, TQT_SLOT( configureWM() ));
popup->insertItem(SmallIconSet( "configure" ), i18n("Configur&e Window Behavior"), this, TQT_SLOT( configureWM() ));
popup->insertSeparator();
}

Loading…
Cancel
Save