lang sync

This commit is contained in:
Martin Rotter 2023-01-30 10:55:22 +01:00
parent feb4de0833
commit 2d193f350a
2 changed files with 5 additions and 3 deletions

View File

@ -2755,7 +2755,7 @@ La aplicación tiene que reiniciarla manualmente.</translation>
<location filename="../src/librssguard/services/standard/gui/formstandardimportexport.cpp" line="137"/> <location filename="../src/librssguard/services/standard/gui/formstandardimportexport.cpp" line="137"/>
<location filename="../src/librssguard/services/standard/gui/formstandardimportexport.cpp" line="138"/> <location filename="../src/librssguard/services/standard/gui/formstandardimportexport.cpp" line="138"/>
<source>Some feeds were not loaded properly or import file is corrupted.</source> <source>Some feeds were not loaded properly or import file is corrupted.</source>
<translation type="unfinished"/> <translation>Algunas fuentes fue imposible cargarlas correctamente o el archivo de importación está dañado.</translation>
</message> </message>
<message> <message>
<location filename="../src/librssguard/services/standard/gui/formstandardimportexport.cpp" line="159"/> <location filename="../src/librssguard/services/standard/gui/formstandardimportexport.cpp" line="159"/>
@ -2830,7 +2830,7 @@ La aplicación tiene que reiniciarla manualmente.</translation>
<location filename="../src/librssguard/services/standard/gui/formstandardimportexport.cpp" line="171"/> <location filename="../src/librssguard/services/standard/gui/formstandardimportexport.cpp" line="171"/>
<location filename="../src/librssguard/services/standard/gui/formstandardimportexport.cpp" line="216"/> <location filename="../src/librssguard/services/standard/gui/formstandardimportexport.cpp" line="216"/>
<source>OPML 2.0 files (*.opml *.xml)</source> <source>OPML 2.0 files (*.opml *.xml)</source>
<translation type="unfinished"/> <translation>Archivos OPML 2.0 (*.opml *.xml)</translation>
</message> </message>
<message> <message>
<location filename="../src/librssguard/services/standard/gui/formstandardimportexport.cpp" line="321"/> <location filename="../src/librssguard/services/standard/gui/formstandardimportexport.cpp" line="321"/>

View File

@ -353,7 +353,9 @@ TtRssGetCompactHeadlinesResponse TtRssNetworkFactory::getCompactHeadlines(int fe
if (result.isUnknownMethod()) { if (result.isUnknownMethod()) {
qCriticalNN << LOGSEC_TTRSS << "'getCompactHeadlines' method is not installed."; qCriticalNN << LOGSEC_TTRSS << "'getCompactHeadlines' method is not installed.";
throw FeedFetchException(Feed::Status::OtherError, QSL("'getCompactHeadlines' method is not installed.")); throw FeedFetchException(Feed::Status::OtherError,
QSL("'getCompactHeadlines' method is not installed on your TT-RSS instance. Install "
"'api_newsplus' plugin."));
} }
else if (result.isNotLoggedIn()) { else if (result.isNotLoggedIn()) {
// We are not logged in. // We are not logged in.