mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
Fix spelling errors reported by stevepusser
This commit is contained in:
parent
6ccc78558f
commit
caf53f0442
@ -5,5 +5,5 @@ EmptyReadingListWidget::EmptyReadingListWidget(QWidget *parent)
|
|||||||
{
|
{
|
||||||
setUpDefaultLayout(true);
|
setUpDefaultLayout(true);
|
||||||
setPixmap(QPixmap(":/images/empty_reading_list"));
|
setPixmap(QPixmap(":/images/empty_reading_list"));
|
||||||
setText(tr("This reading list doesn't cotain comics yet"));
|
setText(tr("This reading list does not contain any comics yet"));
|
||||||
}
|
}
|
||||||
|
@ -566,7 +566,7 @@ void LibraryWindow::createActions()
|
|||||||
expandAllNodesAction->setIcon(QIcon(":/images/sidebar/expand.png"));
|
expandAllNodesAction->setIcon(QIcon(":/images/sidebar/expand.png"));
|
||||||
|
|
||||||
colapseAllNodesAction = new QAction(this);
|
colapseAllNodesAction = new QAction(this);
|
||||||
colapseAllNodesAction->setToolTip(tr("Colapse all nodes"));
|
colapseAllNodesAction->setToolTip(tr("Collapse all nodes"));
|
||||||
colapseAllNodesAction->setData(COLAPSE_ALL_NODES_ACTION_YL);
|
colapseAllNodesAction->setData(COLAPSE_ALL_NODES_ACTION_YL);
|
||||||
colapseAllNodesAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(COLAPSE_ALL_NODES_ACTION_YL));
|
colapseAllNodesAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(COLAPSE_ALL_NODES_ACTION_YL));
|
||||||
colapseAllNodesAction->setIcon(QIcon(":/images/sidebar/colapse.png"));
|
colapseAllNodesAction->setIcon(QIcon(":/images/sidebar/colapse.png"));
|
||||||
@ -654,7 +654,7 @@ void LibraryWindow::createActions()
|
|||||||
editSelectedComicsAction->setIcon(QIcon(":/images/comics_view_toolbar/editComic.png"));
|
editSelectedComicsAction->setIcon(QIcon(":/images/comics_view_toolbar/editComic.png"));
|
||||||
|
|
||||||
asignOrderAction = new QAction(this);
|
asignOrderAction = new QAction(this);
|
||||||
asignOrderAction->setText(tr("Asign current order to comics"));
|
asignOrderAction->setText(tr("Assign current order to comics"));
|
||||||
asignOrderAction->setData(ASIGN_ORDER_ACTION_YL);
|
asignOrderAction->setData(ASIGN_ORDER_ACTION_YL);
|
||||||
asignOrderAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(ASIGN_ORDER_ACTION_YL));
|
asignOrderAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(ASIGN_ORDER_ACTION_YL));
|
||||||
asignOrderAction->setIcon(QIcon(":/images/comics_view_toolbar/asignNumber.png"));
|
asignOrderAction->setIcon(QIcon(":/images/comics_view_toolbar/asignNumber.png"));
|
||||||
@ -2240,8 +2240,8 @@ void LibraryWindow::asignNumbers()
|
|||||||
if(indexList.count()>1)
|
if(indexList.count()>1)
|
||||||
{
|
{
|
||||||
bool ok;
|
bool ok;
|
||||||
int n = QInputDialog::getInt(this, tr("Asign comics numbers"),
|
int n = QInputDialog::getInt(this, tr("Assign comics numbers"),
|
||||||
tr("Asign numbers starting in:"), startingNumber,0,2147483647,1,&ok);
|
tr("Assign numbers starting in:"), startingNumber,0,2147483647,1,&ok);
|
||||||
if (ok)
|
if (ok)
|
||||||
startingNumber = n;
|
startingNumber = n;
|
||||||
else
|
else
|
||||||
|
@ -63,7 +63,7 @@ OptionsDialog::OptionsDialog(QWidget * parent)
|
|||||||
backgroundImageBlurRadiusSlider = new QSlider(Qt::Horizontal);
|
backgroundImageBlurRadiusSlider = new QSlider(Qt::Horizontal);
|
||||||
backgroundImageBlurRadiusSlider->setRange(0,100);
|
backgroundImageBlurRadiusSlider->setRange(0,100);
|
||||||
|
|
||||||
useCurrentComicCoverCheck = new QCheckBox(tr("Use selectec comic cover as background"));
|
useCurrentComicCoverCheck = new QCheckBox(tr("Use selected comic cover as background"));
|
||||||
|
|
||||||
resetButton = new QPushButton(tr("Restore defautls"));
|
resetButton = new QPushButton(tr("Restore defautls"));
|
||||||
|
|
||||||
|
@ -177,7 +177,7 @@ void PropertiesDialog::createGeneralInfoBox()
|
|||||||
arc->addStretch(1);
|
arc->addStretch(1);
|
||||||
generalInfoLayout->addRow(tr("Story arc:"), arc);
|
generalInfoLayout->addRow(tr("Story arc:"), arc);
|
||||||
|
|
||||||
generalInfoLayout->addRow(tr("Genere:"), genereEdit = new YACReaderFieldEdit());
|
generalInfoLayout->addRow(tr("Genre:"), genereEdit = new YACReaderFieldEdit());
|
||||||
|
|
||||||
generalInfoLayout->addRow(tr("Size:"), size = new QLabel("size"));
|
generalInfoLayout->addRow(tr("Size:"), size = new QLabel("size"));
|
||||||
|
|
||||||
|
@ -374,7 +374,7 @@
|
|||||||
<name>EmptyReadingListWidget</name>
|
<name>EmptyReadingListWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
||||||
<source>This reading list doesn't cotain comics yet</source>
|
<source>This reading list doesn't contain comics yet</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
@ -1219,7 +1219,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
<name>NoLibrariesWidget</name>
|
<name>NoLibrariesWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="no_libraries_widget.cpp" line="26"/>
|
<location filename="no_libraries_widget.cpp" line="26"/>
|
||||||
<source>You don't have any librarires yet</source>
|
<source>You don't have any libraries yet</source>
|
||||||
<translation>Sie haben im Augenblick keine Bibliothek</translation>
|
<translation>Sie haben im Augenblick keine Bibliothek</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1267,7 +1267,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="options_dialog.cpp" line="66"/>
|
<location filename="options_dialog.cpp" line="66"/>
|
||||||
<source>Use selectec comic cover as background</source>
|
<source>Use selected comic cover as background</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -374,7 +374,7 @@
|
|||||||
<name>EmptyReadingListWidget</name>
|
<name>EmptyReadingListWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
||||||
<source>This reading list doesn't cotain comics yet</source>
|
<source>This reading list doesn't contain comics yet</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
@ -1220,7 +1220,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
<name>NoLibrariesWidget</name>
|
<name>NoLibrariesWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="no_libraries_widget.cpp" line="26"/>
|
<location filename="no_libraries_widget.cpp" line="26"/>
|
||||||
<source>You don't have any librarires yet</source>
|
<source>You don't have any libraries yet</source>
|
||||||
<translation>Aún no tienes ninguna biblioteca</translation>
|
<translation>Aún no tienes ninguna biblioteca</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1268,7 +1268,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="options_dialog.cpp" line="66"/>
|
<location filename="options_dialog.cpp" line="66"/>
|
||||||
<source>Use selectec comic cover as background</source>
|
<source>Use selected comic cover as background</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -370,7 +370,7 @@
|
|||||||
<name>EmptyReadingListWidget</name>
|
<name>EmptyReadingListWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
||||||
<source>This reading list doesn't cotain comics yet</source>
|
<source>This reading list doesn't contain comics yet</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
@ -1214,7 +1214,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
<name>NoLibrariesWidget</name>
|
<name>NoLibrariesWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="no_libraries_widget.cpp" line="26"/>
|
<location filename="no_libraries_widget.cpp" line="26"/>
|
||||||
<source>You don't have any librarires yet</source>
|
<source>You don't have any libraries yet</source>
|
||||||
<translation>Vous n'avez pas encore de librairie</translation>
|
<translation>Vous n'avez pas encore de librairie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1262,7 +1262,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="options_dialog.cpp" line="66"/>
|
<location filename="options_dialog.cpp" line="66"/>
|
||||||
<source>Use selectec comic cover as background</source>
|
<source>Use selected comic cover as background</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -370,7 +370,7 @@
|
|||||||
<name>EmptyReadingListWidget</name>
|
<name>EmptyReadingListWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
||||||
<source>This reading list doesn't cotain comics yet</source>
|
<source>This reading list doesn't contain comics yet</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
@ -1214,8 +1214,8 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
<name>NoLibrariesWidget</name>
|
<name>NoLibrariesWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="no_libraries_widget.cpp" line="26"/>
|
<location filename="no_libraries_widget.cpp" line="26"/>
|
||||||
<source>You don't have any librarires yet</source>
|
<source>You don't have any libraries yet</source>
|
||||||
<translation type="unfinished">Je hebt geen nog librarires</translation>
|
<translation type="unfinished">Je hebt geen nog libraries</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="no_libraries_widget.cpp" line="28"/>
|
<location filename="no_libraries_widget.cpp" line="28"/>
|
||||||
@ -1262,7 +1262,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="options_dialog.cpp" line="66"/>
|
<location filename="options_dialog.cpp" line="66"/>
|
||||||
<source>Use selectec comic cover as background</source>
|
<source>Use selected comic cover as background</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -370,7 +370,7 @@
|
|||||||
<name>EmptyReadingListWidget</name>
|
<name>EmptyReadingListWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
||||||
<source>This reading list doesn't cotain comics yet</source>
|
<source>This reading list doesn't contain comics yet</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
@ -1200,7 +1200,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
<name>NoLibrariesWidget</name>
|
<name>NoLibrariesWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="no_libraries_widget.cpp" line="26"/>
|
<location filename="no_libraries_widget.cpp" line="26"/>
|
||||||
<source>You don't have any librarires yet</source>
|
<source>You don't have any libraries yet</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1248,7 +1248,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="options_dialog.cpp" line="66"/>
|
<location filename="options_dialog.cpp" line="66"/>
|
||||||
<source>Use selectec comic cover as background</source>
|
<source>Use selected comic cover as background</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -370,7 +370,7 @@
|
|||||||
<name>EmptyReadingListWidget</name>
|
<name>EmptyReadingListWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
||||||
<source>This reading list doesn't cotain comics yet</source>
|
<source>This reading list doesn't contain comics yet</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
@ -1204,7 +1204,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
<name>NoLibrariesWidget</name>
|
<name>NoLibrariesWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="no_libraries_widget.cpp" line="26"/>
|
<location filename="no_libraries_widget.cpp" line="26"/>
|
||||||
<source>You don't have any librarires yet</source>
|
<source>You don't have any libraries yet</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1252,7 +1252,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="options_dialog.cpp" line="66"/>
|
<location filename="options_dialog.cpp" line="66"/>
|
||||||
<source>Use selectec comic cover as background</source>
|
<source>Use selected comic cover as background</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -370,7 +370,7 @@
|
|||||||
<name>EmptyReadingListWidget</name>
|
<name>EmptyReadingListWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
<location filename="empty_reading_list_widget.cpp" line="8"/>
|
||||||
<source>This reading list doesn't cotain comics yet</source>
|
<source>This reading list doesn't contain any comics yet</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
@ -1190,7 +1190,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
<name>NoLibrariesWidget</name>
|
<name>NoLibrariesWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="no_libraries_widget.cpp" line="26"/>
|
<location filename="no_libraries_widget.cpp" line="26"/>
|
||||||
<source>You don't have any librarires yet</source>
|
<source>You don't have any libraries yet</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1238,7 +1238,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="options_dialog.cpp" line="66"/>
|
<location filename="options_dialog.cpp" line="66"/>
|
||||||
<source>Use selectec comic cover as background</source>
|
<source>Use selected comic cover as background</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -297,7 +297,7 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>EmptyReadingListWidget</name>
|
<name>EmptyReadingListWidget</name>
|
||||||
<message>
|
<message>
|
||||||
<source>This reading list doesn't cotain comics yet</source>
|
<source>This reading list doesn't contain comics yet</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
@ -1048,7 +1048,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
<translation>İlk kütüphaneni oluştur</translation>
|
<translation>İlk kütüphaneni oluştur</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>You don't have any librarires yet</source>
|
<source>You don't have any libraries yet</source>
|
||||||
<translation>Henüz bir kütüphaneye sahip değilsin</translation>
|
<translation>Henüz bir kütüphaneye sahip değilsin</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1087,7 +1087,7 @@ YACReaderLibrary will not stop you from creating more libraries but you should k
|
|||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Use selectec comic cover as background</source>
|
<source>Use selected comic cover as background</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
Loading…
Reference in New Issue
Block a user