mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge pull request #3703
Diadlo (4): fix(i18n): Removed extra tag from translation refactor(about): Removed HTML tags from translation refactor(profileform): Removed HTML tags from translation refactor: Removed HTML tags from translation
This commit is contained in:
commit
1ed2e5c95a
|
@ -174,9 +174,15 @@ void ProfileForm::show(ContentLayout* contentLayout)
|
||||||
head->show();
|
head->show();
|
||||||
QWidget::show();
|
QWidget::show();
|
||||||
prFileLabelUpdate();
|
prFileLabelUpdate();
|
||||||
QString DirPath = Settings::getInstance().getMakeToxPortable() ? QApplication::applicationDirPath() :
|
bool portable = Settings::getInstance().getMakeToxPortable();
|
||||||
QDir(Settings::getInstance().getSettingsDirPath()).path().trimmed();
|
QString defaultPath = QDir(Settings::getInstance().getSettingsDirPath()).path().trimmed();
|
||||||
bodyUI->dirPrLink->setText(bodyUI->dirPrLink->text().replace("Dir_Path",DirPath));
|
QString appPath = QApplication::applicationDirPath();
|
||||||
|
QString dirPath = portable ? appPath : defaultPath;
|
||||||
|
|
||||||
|
QString dirPrLink = tr("Current profile location: %1")
|
||||||
|
.arg(QString("<a href=\"file://%1\">%1</a>").arg(dirPath));
|
||||||
|
|
||||||
|
bodyUI->dirPrLink->setText(dirPrLink);
|
||||||
bodyUI->dirPrLink->setOpenExternalLinks(true);
|
bodyUI->dirPrLink->setOpenExternalLinks(true);
|
||||||
bodyUI->dirPrLink->setTextInteractionFlags(Qt::LinksAccessibleByMouse | Qt::TextSelectableByMouse);
|
bodyUI->dirPrLink->setTextInteractionFlags(Qt::LinksAccessibleByMouse | Qt::TextSelectableByMouse);
|
||||||
bodyUI->dirPrLink->setMaximumSize(bodyUI->dirPrLink->sizeHint());
|
bodyUI->dirPrLink->setMaximumSize(bodyUI->dirPrLink->sizeHint());
|
||||||
|
|
|
@ -39,8 +39,8 @@
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>536</width>
|
<width>577</width>
|
||||||
<height>844</height>
|
<height>796</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_4" stretch="0,0,0,1">
|
<layout class="QVBoxLayout" name="verticalLayout_4" stretch="0,0,0,1">
|
||||||
|
@ -292,7 +292,7 @@ Share it with your friends to communicate.</string>
|
||||||
<enum>Qt::ClickFocus</enum>
|
<enum>Qt::ClickFocus</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><p><a href="file:///Dir_Path"><span style=" text-decoration: NONE; color:#000000;">Current profile location: Dir_Path</span></a></p></string>
|
<string notr="true">{Current profile location}</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="textFormat">
|
<property name="textFormat">
|
||||||
<enum>Qt::RichText</enum>
|
<enum>Qt::RichText</enum>
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QLabel" name="label">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><html><head/><body><p>Are you sure you want to remove <span style=" font-weight:600;">&lt;name&gt;</span> from your contacts list?</p></body></html></string>
|
<string notr="true">{Text message}</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="alignment">
|
<property name="alignment">
|
||||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
||||||
|
|
|
@ -77,10 +77,15 @@ void AboutForm::replaceVersions()
|
||||||
QString::number(TOX_VERSION_MINOR) + "." +
|
QString::number(TOX_VERSION_MINOR) + "." +
|
||||||
QString::number(TOX_VERSION_PATCH);
|
QString::number(TOX_VERSION_PATCH);
|
||||||
|
|
||||||
bodyUI->youareusing->setText(bodyUI->youareusing->text().replace("$GIT_DESCRIBE", QString(GIT_DESCRIBE)));
|
bodyUI->youAreUsing->setText(tr("You are using qTox version %1.")
|
||||||
bodyUI->gitVersion->setText(bodyUI->gitVersion->text().replace("$GIT_VERSION", QString(GIT_VERSION)));
|
.arg(QString(GIT_DESCRIBE)));
|
||||||
bodyUI->toxCoreVersion->setText(bodyUI->toxCoreVersion->text().replace("$TOXCOREVERSION", TOXCORE_VERSION));
|
|
||||||
bodyUI->qtVersion->setText(bodyUI->qtVersion->text().replace("$QTVERSION", QT_VERSION_STR));
|
QString commitLink = "https://github.com/qTox/qTox/commit/" + QString(GIT_VERSION);
|
||||||
|
bodyUI->gitVersion->setText(tr("Commit hash: %1")
|
||||||
|
.arg(createLink(commitLink, QString(GIT_VERSION))));
|
||||||
|
|
||||||
|
bodyUI->toxCoreVersion->setText(tr("toxcore version: %1").arg(TOXCORE_VERSION));
|
||||||
|
bodyUI->qtVersion->setText(tr("Qt version: %1").arg(QT_VERSION_STR));
|
||||||
|
|
||||||
QString issueBody = QString(
|
QString issueBody = QString(
|
||||||
"##### Brief Description\n\n"
|
"##### Brief Description\n\n"
|
||||||
|
|
|
@ -30,8 +30,8 @@
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>514</width>
|
<width>496</width>
|
||||||
<height>537</height>
|
<height>554</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_2" stretch="0,1,0,0">
|
<layout class="QVBoxLayout" name="verticalLayout_2" stretch="0,1,0,0">
|
||||||
|
@ -70,7 +70,7 @@
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>toxcore version: $TOXCOREVERSION</string>
|
<string notr="true">{TOXCOREVERSION}</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="textInteractionFlags">
|
<property name="textInteractionFlags">
|
||||||
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set>
|
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set>
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
</font>
|
</font>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Qt version: $QTVERSION</string>
|
<string notr="true">{QTVERSION}</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="textInteractionFlags">
|
<property name="textInteractionFlags">
|
||||||
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set>
|
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set>
|
||||||
|
@ -109,7 +109,7 @@
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Commit hash: <a href="https://github.com/qTox/qTox/commit/$GIT_VERSION">$GIT_VERSION</a></string>
|
<string notr="true">{GIT_VERSION}</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="openExternalLinks">
|
<property name="openExternalLinks">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
|
@ -120,7 +120,7 @@
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="0" colspan="2">
|
<item row="0" column="0" colspan="2">
|
||||||
<widget class="QLabel" name="youareusing">
|
<widget class="QLabel" name="youAreUsing">
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||||
<horstretch>0</horstretch>
|
<horstretch>0</horstretch>
|
||||||
|
@ -136,7 +136,7 @@
|
||||||
<enum>QFrame::NoFrame</enum>
|
<enum>QFrame::NoFrame</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>You are using qTox version $GIT_DESCRIBE.</string>
|
<string notr="true">{GIT_DESCRIBE}</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="indent">
|
<property name="indent">
|
||||||
<number>-1</number>
|
<number>-1</number>
|
||||||
|
|
|
@ -67,7 +67,7 @@ AdvancedForm::AdvancedForm()
|
||||||
QString warningBody = tr("Unless you %1 know what you are doing, "
|
QString warningBody = tr("Unless you %1 know what you are doing, "
|
||||||
"please do %2 change anything here. Changes "
|
"please do %2 change anything here. Changes "
|
||||||
"made here may lead to problems with qTox, and even "
|
"made here may lead to problems with qTox, and even "
|
||||||
"to loss of your data, e.g. history.</p>")
|
"to loss of your data, e.g. history.")
|
||||||
.arg(QString("<b>%1</b>").arg(tr("really")))
|
.arg(QString("<b>%1</b>").arg(tr("really")))
|
||||||
.arg(QString("<b>%1</b>").arg(tr("not")));
|
.arg(QString("<b>%1</b>").arg(tr("not")));
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,11 @@ RemoveFriendDialog::RemoveFriendDialog(QWidget *parent, const Friend *f)
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
||||||
setAttribute(Qt::WA_QuitOnClose, false);
|
setAttribute(Qt::WA_QuitOnClose, false);
|
||||||
ui.setupUi(this);
|
ui.setupUi(this);
|
||||||
ui.label->setText(ui.label->text().replace("<name>", f->getDisplayedName().toHtmlEscaped()));
|
QString name = f->getDisplayedName().toHtmlEscaped();
|
||||||
|
QString text = tr("Are you sure you want to remove %1 from your contacts list?")
|
||||||
|
.arg(QString("<b>%1</b>").arg(name));
|
||||||
|
|
||||||
|
ui.label->setText(text);
|
||||||
auto removeButton = ui.buttonBox->button(QDialogButtonBox::Ok);
|
auto removeButton = ui.buttonBox->button(QDialogButtonBox::Ok);
|
||||||
auto cancelButton = ui.buttonBox->button(QDialogButtonBox::Cancel);
|
auto cancelButton = ui.buttonBox->button(QDialogButtonBox::Cancel);
|
||||||
removeButton->setText(tr("Remove"));
|
removeButton->setText(tr("Remove"));
|
||||||
|
|
2
translations/ar.ts
vendored
2
translations/ar.ts
vendored
|
@ -303,7 +303,7 @@ which may lead to problems with video calls.</source>
|
||||||
<translation>خصائص</translation>
|
<translation>خصائص</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
6
translations/be.ts
vendored
6
translations/be.ts
vendored
|
@ -21,7 +21,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Use slider to set the gain of your input device ranging from %1dB to %2dB.</source>
|
<source>Use slider to set the gain of your input device ranging from %1dB to %2dB.</source>
|
||||||
<translation>Карыстайцеся паўзунком для змянення ўзмацнення вашай прылады запісу ў дыяпазоне ад %1 дБ да %2 дБ.</translation>
|
<translation>Карыстайцеся паўзунком для змянення ўзмацнення вашай прылады запісу ў дыяпазоне ад %1 дБ да %2 дБ.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Select region</source>
|
<source>Select region</source>
|
||||||
|
@ -305,8 +305,8 @@ which may lead to problems with video calls.</source>
|
||||||
<translation>Пашыраныя</translation>
|
<translation>Пашыраныя</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation>Пакуль вы %1 не ведаце, што вы робіце, калі ласка, %2 змяняйце тут нічога. Змены, зробленыя тут, могуць прывесці да праблем з qTox і нават да страты вашых дадзеных, напрыклад, гісторыі.</p></translation>
|
<translation>Пакуль вы %1 не ведаце, што вы робіце, калі ласка, %2 змяняйце тут нічога. Змены, зробленыя тут, могуць прывесці да праблем з qTox і нават да страты вашых дадзеных, напрыклад, гісторыі.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>really</source>
|
<source>really</source>
|
||||||
|
|
2
translations/bg.ts
vendored
2
translations/bg.ts
vendored
|
@ -304,7 +304,7 @@ which may lead to problems with video calls.</source>
|
||||||
<translation>За напреднали</translation>
|
<translation>За напреднали</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/cs.ts
vendored
2
translations/cs.ts
vendored
|
@ -303,7 +303,7 @@ může způsobovat problémy během videohovorů.</translation>
|
||||||
<translation>Pokročilé</translation>
|
<translation>Pokročilé</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/da.ts
vendored
2
translations/da.ts
vendored
|
@ -299,7 +299,7 @@ which may lead to problems with video calls.</source>
|
||||||
<translation>Avanceret</translation>
|
<translation>Avanceret</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/de.ts
vendored
2
translations/de.ts
vendored
|
@ -303,7 +303,7 @@ Zu hohe Auflösungen können daher zu Problemen in Videoanrufen führen.</transl
|
||||||
<translation>Erweitert</translation>
|
<translation>Erweitert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/el.ts
vendored
2
translations/el.ts
vendored
|
@ -305,7 +305,7 @@ which may lead to problems with video calls.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/eo.ts
vendored
2
translations/eo.ts
vendored
|
@ -299,7 +299,7 @@ which may lead to problems with video calls.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/es.ts
vendored
2
translations/es.ts
vendored
|
@ -303,7 +303,7 @@ se pueden producir problemas con las videollamadas.</translation>
|
||||||
<translation>Avanzado</translation>
|
<translation>Avanzado</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
4
translations/et.ts
vendored
4
translations/et.ts
vendored
|
@ -303,8 +303,8 @@ mis omakorda võib tekitada videokõnede pidamisel probleeme.</translation>
|
||||||
<translation>Edasijõudnud</translation>
|
<translation>Edasijõudnud</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation>Kui sa %1 tea, mida teed, siis palun %2 muuda siin midagi. Siin tehtud muudatused võivad põhjustada probleeme qToxi töös ja isegi sinu andmete, nt ajaloo, kadumise.</p></translation>
|
<translation>Kui sa %1 tea, mida teed, siis palun %2 muuda siin midagi. Siin tehtud muudatused võivad põhjustada probleeme qToxi töös ja isegi sinu andmete, nt ajaloo, kadumise.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>really</source>
|
<source>really</source>
|
||||||
|
|
2
translations/fi.ts
vendored
2
translations/fi.ts
vendored
|
@ -302,7 +302,7 @@ Joskus yhteytesi ei välttämättä ole tarpeeksi hyvä korkeaa kuvanlaatua vart
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/fr.ts
vendored
2
translations/fr.ts
vendored
|
@ -303,7 +303,7 @@ ce qui peut conduire à des problèmes avec les appels vidéo.</translation>
|
||||||
<translation>Avancé</translation>
|
<translation>Avancé</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/he.ts
vendored
2
translations/he.ts
vendored
|
@ -299,7 +299,7 @@ which may lead to problems with video calls.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/hr.ts
vendored
2
translations/hr.ts
vendored
|
@ -306,7 +306,7 @@ Ponekad vaša internetska veza nije dovoljno dobra da podnese visoku video kvali
|
||||||
<translation>Napredno</translation>
|
<translation>Napredno</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/hu.ts
vendored
2
translations/hu.ts
vendored
|
@ -303,7 +303,7 @@ ami a videóhívások problémáihoz vezethet.</translation>
|
||||||
<translation>Haladó</translation>
|
<translation>Haladó</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/it.ts
vendored
2
translations/it.ts
vendored
|
@ -303,7 +303,7 @@ qualità video elevate, questo può causare problemi con le chiamate video.</tra
|
||||||
<translation>Avanzate</translation>
|
<translation>Avanzate</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/ja.ts
vendored
2
translations/ja.ts
vendored
|
@ -303,7 +303,7 @@ which may lead to problems with video calls.</source>
|
||||||
<translation type="unfinished">上級者向け</translation>
|
<translation type="unfinished">上級者向け</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/jbo.ts
vendored
2
translations/jbo.ts
vendored
|
@ -301,7 +301,7 @@ which may lead to problems with video calls.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/lt.ts
vendored
2
translations/lt.ts
vendored
|
@ -303,7 +303,7 @@ vaizdo skambučiais.</translation>
|
||||||
<translation>Kita</translation>
|
<translation>Kita</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/nl.ts
vendored
2
translations/nl.ts
vendored
|
@ -303,7 +303,7 @@ wat tot problemen kan leiden met videogesprekken.</translation>
|
||||||
<translation>Geavanceerd</translation>
|
<translation>Geavanceerd</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/no_nb.ts
vendored
2
translations/no_nb.ts
vendored
|
@ -306,7 +306,7 @@ Det kan oppstå problemer med videosamtalene hvis du har valgt høyere videokval
|
||||||
<translation>Avansert</translation>
|
<translation>Avansert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/pl.ts
vendored
2
translations/pl.ts
vendored
|
@ -307,7 +307,7 @@ co może spowodować problemy z połączeniami wideo.</translation>
|
||||||
<translation>Zaawansowane</translation>
|
<translation>Zaawansowane</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/pt.ts
vendored
2
translations/pt.ts
vendored
|
@ -302,7 +302,7 @@ Eventualmente sua conexão pode não ser suficiente para uma qualiade de vídeo
|
||||||
<translation>Avançado</translation>
|
<translation>Avançado</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/ru.ts
vendored
2
translations/ru.ts
vendored
|
@ -306,7 +306,7 @@ which may lead to problems with video calls.</source>
|
||||||
<translation>Расширенные</translation>
|
<translation>Расширенные</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/sl.ts
vendored
2
translations/sl.ts
vendored
|
@ -303,7 +303,7 @@ in zato lahko pride do problemov pri video pogovorih.</translation>
|
||||||
<translation>Napredno</translation>
|
<translation>Napredno</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/sv.ts
vendored
2
translations/sv.ts
vendored
|
@ -299,7 +299,7 @@ which may lead to problems with video calls.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/tr.ts
vendored
2
translations/tr.ts
vendored
|
@ -306,7 +306,7 @@ Fakat daha iyi bir internet bağlantısına ihtiyacınız olacaktır.
|
||||||
<translation>İleri-düzey Ayarlar</translation>
|
<translation>İleri-düzey Ayarlar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/ug.ts
vendored
2
translations/ug.ts
vendored
|
@ -305,7 +305,7 @@ which may lead to problems with video calls.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/uk.ts
vendored
2
translations/uk.ts
vendored
|
@ -310,7 +310,7 @@ It's difficult to translate "Tox me maybe" because in Ukrainian n
|
||||||
<translation>Додатково</translation>
|
<translation>Додатково</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
2
translations/zh.ts
vendored
2
translations/zh.ts
vendored
|
@ -303,7 +303,7 @@ which may lead to problems with video calls.</source>
|
||||||
<translation>高级</translation>
|
<translation>高级</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</p></source>
|
<source>Unless you %1 know what you are doing, please do %2 change anything here. Changes made here may lead to problems with qTox, and even to loss of your data, e.g. history.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user