void CommentWidget::Private::update()
{
if ( comment.isEmpty() ) {
- label->setText( "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18nc( "@label", "Add comment..." ) + "</a>" );
+ label->setText( "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18nc( "@label", "Add Comment..." ) + "</a>" );
}
else {
- label->setText( "<p>" + comment + "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18nc( "@label", "Change comment..." ) + "</a>" );
+ label->setText( "<p>" + comment + "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18nc( "@label", "Change Comment..." ) + "</a>" );
}
}
textLayout->addWidget(m_fontRequester);
// create "Expandable Folders" checkbox
- m_expandableFolders = new QCheckBox(i18nc("@option:check", "Expandable Folders"), this);
+ m_expandableFolders = new QCheckBox(i18nc("@option:check", "Expandable folders"), this);
connect(m_expandableFolders, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
// Add a dummy widget with no restriction regarding
NewTagDialog::NewTagDialog( QWidget* parent )
: KDialog( parent )
{
- setCaption( i18nc( "@title:window", "Create new Tag" ) );
+ setCaption( i18nc( "@title:window", "Create New Tag" ) );
setButtons( Ok|Cancel );
enableButtonOk( false );
<item>
<widget class="QLabel" name="label" >
<property name="text" >
- <string comment="@label">Detailed Description (optional):</string>
+ <string comment="@label">Detailed description (optional):</string>
</property>
</widget>
</item>
layout->setMargin( 0 );
d->resourceTagCloud = new TagCloud( this );
layout->addWidget( d->resourceTagCloud );
- QLabel* changeTagsLabel = new QLabel( "<p align=center><a style=\"font-size:small;\" href=\"dummy\">" + i18nc( "@label", "Change tags..." ) + "</a>", this );
+ QLabel* changeTagsLabel = new QLabel( "<p align=center><a style=\"font-size:small;\" href=\"dummy\">" + i18nc( "@label", "Change Tags..." ) + "</a>", this );
connect( changeTagsLabel, SIGNAL( linkActivated( const QString ) ),
this, SLOT( _k_slotShowTaggingPopup() ) );
layout->addWidget( changeTagsLabel );