aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Controllers/importExportController.php61
-rw-r--r--app/i18n/cz/feedback.php2
-rw-r--r--app/i18n/de/feedback.php2
-rw-r--r--app/i18n/el/feedback.php2
-rw-r--r--app/i18n/en-us/feedback.php2
-rw-r--r--app/i18n/en/feedback.php2
-rw-r--r--app/i18n/es/feedback.php2
-rw-r--r--app/i18n/fr/feedback.php2
-rw-r--r--app/i18n/he/feedback.php2
-rw-r--r--app/i18n/id/feedback.php2
-rw-r--r--app/i18n/it/feedback.php2
-rw-r--r--app/i18n/ja/feedback.php2
-rw-r--r--app/i18n/ko/feedback.php2
-rw-r--r--app/i18n/lv/feedback.php2
-rw-r--r--app/i18n/nl/feedback.php2
-rw-r--r--app/i18n/oc/feedback.php2
-rw-r--r--app/i18n/pl/feedback.php2
-rw-r--r--app/i18n/pt-br/feedback.php2
-rw-r--r--app/i18n/ru/feedback.php2
-rw-r--r--app/i18n/sk/feedback.php2
-rw-r--r--app/i18n/tr/feedback.php2
-rw-r--r--app/i18n/zh-cn/feedback.php2
-rw-r--r--app/i18n/zh-tw/feedback.php2
23 files changed, 61 insertions, 44 deletions
diff --git a/app/Controllers/importExportController.php b/app/Controllers/importExportController.php
index 4939a0748..fc6cee89e 100644
--- a/app/Controllers/importExportController.php
+++ b/app/Controllers/importExportController.php
@@ -50,12 +50,18 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
*/
private static function minimumMemory($mb): void {
$mb = (int)$mb;
- $ini = self::megabytes(ini_get('memory_limit'));
+ $ini = self::megabytes(ini_get('memory_limit') ?: '0');
if ($ini < $mb) {
ini_set('memory_limit', $mb . 'M');
}
}
+ /**
+ * @throws FreshRSS_Zip_Exception
+ * @throws FreshRSS_ZipMissing_Exception
+ * @throws Minz_ConfigurationNamespaceException
+ * @throws Minz_PDOConnectionException
+ */
public function importFile(string $name, string $path, ?string $username = null): bool {
self::minimumMemory(256);
@@ -81,6 +87,9 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
throw new FreshRSS_Zip_Exception($result);
}
for ($i = 0; $i < $zip->numFiles; $i++) {
+ if ($zip->getNameIndex($i) === false) {
+ continue;
+ }
$type_zipfile = self::guessFileType($zip->getNameIndex($i));
if ('unknown' !== $type_zipfile) {
$list_files[$type_zipfile][] = $zip->getFromIndex($i);
@@ -103,6 +112,9 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
$importService = new FreshRSS_Import_Service($username);
foreach ($list_files['opml'] as $opml_file) {
+ if ($opml_file === false) {
+ continue;
+ }
$importService->importOpml($opml_file);
if (!$importService->lastStatus()) {
$ok = false;
@@ -114,7 +126,7 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
}
}
foreach ($list_files['json_starred'] as $article_file) {
- if (!$this->importJson($article_file, true)) {
+ if (!is_string($article_file) || !$this->importJson($article_file, true)) {
$ok = false;
if (FreshRSS_Context::$isCli) {
fwrite(STDERR, 'FreshRSS error during JSON stars import' . "\n");
@@ -124,7 +136,7 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
}
}
foreach ($list_files['json_feed'] as $article_file) {
- if (!$this->importJson($article_file)) {
+ if (!is_string($article_file) || !$this->importJson($article_file)) {
$ok = false;
if (FreshRSS_Context::$isCli) {
fwrite(STDERR, 'FreshRSS error during JSON feeds import' . "\n");
@@ -134,8 +146,8 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
}
}
foreach ($list_files['ttrss_starred'] as $article_file) {
- $json = $this->ttrssXmlToJson($article_file);
- if (!$this->importJson($json, true)) {
+ $json = is_string($article_file) ? $this->ttrssXmlToJson($article_file) : false;
+ if ($json === false || !$this->importJson($json, true)) {
$ok = false;
if (FreshRSS_Context::$isCli) {
fwrite(STDERR, 'FreshRSS error during TT-RSS articles import' . "\n");
@@ -222,7 +234,7 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
*/
private function ttrssXmlToJson(string $xml) {
$table = (array)simplexml_load_string($xml, null, LIBXML_NOBLANKS | LIBXML_NOCDATA);
- $table['items'] = isset($table['article']) ? $table['article'] : array();
+ $table['items'] = $table['article'] ?? [];
unset($table['article']);
for ($i = count($table['items']) - 1; $i >= 0; $i--) {
$item = (array)($table['items'][$i]);
@@ -232,7 +244,7 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
});
$item['updated'] = isset($item['updated']) ? strtotime($item['updated']) : '';
$item['published'] = $item['updated'];
- $item['content'] = array('content' => isset($item['content']) ? $item['content'] : '');
+ $item['content'] = ['content' => $item['content'] ?? ''];
$item['categories'] = isset($item['tag_cache']) ? array($item['tag_cache']) : array();
if (!empty($item['marked'])) {
$item['categories'][] = 'user/-/state/com.google/starred';
@@ -250,12 +262,12 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
}
}
}
- $item['alternate'][0]['href'] = isset($item['link']) ? $item['link'] : '';
- $item['origin'] = array(
- 'title' => isset($item['feed_title']) ? $item['feed_title'] : '',
- 'feedUrl' => isset($item['feed_url']) ? $item['feed_url'] : '',
- );
- $item['id'] = isset($item['guid']) ? $item['guid'] : (isset($item['feed_url']) ? $item['feed_url'] : $item['published']);
+ $item['alternate'][0]['href'] = $item['link'] ?? '';
+ $item['origin'] = [
+ 'title' => $item['feed_title'] ?? '',
+ 'feedUrl' => $item['feed_url'] ?? '',
+ ];
+ $item['id'] = $item['guid'] ?? ($item['feed_url'] ?? $item['published']);
$item['guid'] = $item['id'];
$table['items'][$i] = $item;
}
@@ -268,6 +280,8 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
* $article_file the JSON file content.
* true if articles from the file must be starred.
* @return bool false if an error occurred, true otherwise.
+ * @throws Minz_ConfigurationNamespaceException
+ * @throws Minz_PDOConnectionException
*/
private function importJson(string $article_file, bool $starred = false): bool {
$article_object = json_decode($article_file, true);
@@ -279,7 +293,7 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
}
return false;
}
- $items = isset($article_object['items']) ? $article_object['items'] : $article_object;
+ $items = $article_object['items'] ?? $article_object;
$mark_as_read = FreshRSS_Context::$user_conf->mark_when['reception'] ? 1 : 0;
@@ -319,7 +333,7 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
$feed = new FreshRSS_Feed($feedUrl);
$feed = $this->feedDAO->searchByUrl($feed->url());
- if ($feed == null) {
+ if ($feed === null) {
// Feed does not exist in DB,we should to try to add it.
if ((!FreshRSS_Context::$isCli) && ($nb_feeds >= $limits['max_feeds'])) {
// Oops, no more place!
@@ -328,7 +342,7 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
$feed = $this->addFeedJson($item['origin']);
}
- if ($feed == null) {
+ if ($feed === null) {
// Still null? It means something went wrong.
$error = true;
} else {
@@ -346,7 +360,7 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
}
$tagDAO = FreshRSS_Factory::createTagDao();
- $labels = $tagDAO->listTags();
+ $labels = $tagDAO->listTags() ?: [];
$knownLabels = array();
foreach ($labels as $label) {
$knownLabels[$label->name()]['id'] = $label->id();
@@ -371,7 +385,7 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
}
$feed_id = $article_to_feed[$item['guid']];
- $author = isset($item['author']) ? $item['author'] : '';
+ $author = $item['author'] ?? '';
$is_starred = null; // null is used to preserve the current state if that item exists and is already starred
$is_read = null;
$tags = empty($item['categories']) ? array() : $item['categories'];
@@ -451,15 +465,13 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
}
$newGuids[$entry->guid()] = true;
- /** @var FreshRSS_Entry|null */
$entry = Minz_ExtensionManager::callHook('entry_before_insert', $entry);
- if ($entry == null) {
+ if (!($entry instanceof FreshRSS_Entry)) {
// An extension has returned a null value, there is nothing to insert.
continue;
}
$values = $entry->toArray();
- $ok = false;
if (isset($existingHashForGuids['f_' . $feed_id][$entry->guid()])) {
$ok = $this->entryDAO->updateEntry($values);
} else {
@@ -625,7 +637,7 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
$nb_files = count($exported_files);
if ($nb_files <= 0) {
- // There’s nothing to do, there’re no files to export
+ // There’s nothing to do, there are no files to export
Minz_Request::forward(['c' => 'importExport', 'a' => 'index'], true);
return;
}
@@ -648,6 +660,11 @@ class FreshRSS_importExport_Controller extends FreshRSS_ActionController {
[$filename, $content] = $export_service->zip($exported_files);
}
+ if (!is_string($content)) {
+ Minz_Request::bad(_t('feedback.import_export.zip_error'), ['c' => 'importExport', 'a' => 'index']);
+ return;
+ }
+
$content_type = self::filenameToContentType($filename);
header('Content-Type: ' . $content_type);
header('Content-disposition: attachment; filename="' . $filename . '"');
diff --git a/app/i18n/cz/feedback.php b/app/i18n/cz/feedback.php
index 1f56ebe36..a627d5fa9 100644
--- a/app/i18n/cz/feedback.php
+++ b/app/i18n/cz/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Vaše kanály byly naimportovány, došlo ale k nějakým chybám',
'file_cannot_be_uploaded' => 'Soubor nelze nahrát!',
'no_zip_extension' => 'Na serveru není přítomno rozšíření ZIP.',
- 'zip_error' => 'Během importu ZIP došlo k chybě.',
+ 'zip_error' => 'Během importu ZIP došlo k chybě.', // DIRTY
),
'profile' => array(
'error' => 'Váš profil nelze změnit',
diff --git a/app/i18n/de/feedback.php b/app/i18n/de/feedback.php
index dfed27f1c..994543801 100644
--- a/app/i18n/de/feedback.php
+++ b/app/i18n/de/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Ihre Feeds sind importiert worden, aber es traten einige Fehler auf',
'file_cannot_be_uploaded' => 'Die Datei kann nicht hochgeladen werden!',
'no_zip_extension' => 'Die ZIP-Erweiterung ist auf Ihrem Server nicht vorhanden.',
- 'zip_error' => 'Ein Fehler trat während des ZIP-Imports auf.',
+ 'zip_error' => 'Ein Fehler trat während des ZIP-Imports auf.', // DIRTY
),
'profile' => array(
'error' => 'Ihr Profil kann nicht geändert werden',
diff --git a/app/i18n/el/feedback.php b/app/i18n/el/feedback.php
index fe5ae82d9..8a012f82d 100644
--- a/app/i18n/el/feedback.php
+++ b/app/i18n/el/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Your feeds have been imported, but some errors occurred', // TODO
'file_cannot_be_uploaded' => 'File cannot be uploaded!', // TODO
'no_zip_extension' => 'The ZIP extension is not present on your server.', // TODO
- 'zip_error' => 'An error occurred during ZIP import.', // TODO
+ 'zip_error' => 'An error occurred during ZIP processing.', // TODO
),
'profile' => array(
'error' => 'Your profile cannot be modified', // TODO
diff --git a/app/i18n/en-us/feedback.php b/app/i18n/en-us/feedback.php
index 5d1331311..3ec0ae6f8 100644
--- a/app/i18n/en-us/feedback.php
+++ b/app/i18n/en-us/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Your feeds have been imported, but some errors occurred', // IGNORE
'file_cannot_be_uploaded' => 'File cannot be uploaded!', // IGNORE
'no_zip_extension' => 'The ZIP extension is not present on your server.', // IGNORE
- 'zip_error' => 'An error occurred during ZIP import.', // IGNORE
+ 'zip_error' => 'An error occurred during ZIP processing.', // IGNORE
),
'profile' => array(
'error' => 'Your profile cannot be modified', // IGNORE
diff --git a/app/i18n/en/feedback.php b/app/i18n/en/feedback.php
index 48d6c2afe..af752d916 100644
--- a/app/i18n/en/feedback.php
+++ b/app/i18n/en/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Your feeds have been imported, but some errors occurred',
'file_cannot_be_uploaded' => 'File cannot be uploaded!',
'no_zip_extension' => 'The ZIP extension is not present on your server.',
- 'zip_error' => 'An error occurred during ZIP import.',
+ 'zip_error' => 'An error occurred during ZIP processing.',
),
'profile' => array(
'error' => 'Your profile cannot be modified',
diff --git a/app/i18n/es/feedback.php b/app/i18n/es/feedback.php
index b7305e6d9..75da7dcde 100644
--- a/app/i18n/es/feedback.php
+++ b/app/i18n/es/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Se importaron tus fuentes; pero hubo algunos errores',
'file_cannot_be_uploaded' => 'No es posible enviar el archivo',
'no_zip_extension' => 'La extensión ZIP no está disponible en tu servidor.',
- 'zip_error' => 'Hubo un error durante la importación ZIP.',
+ 'zip_error' => 'Hubo un error durante la importación ZIP.', // DIRTY
),
'profile' => array(
'error' => 'Tu perfil no puede ser modificado',
diff --git a/app/i18n/fr/feedback.php b/app/i18n/fr/feedback.php
index b56e652bc..660ad837d 100644
--- a/app/i18n/fr/feedback.php
+++ b/app/i18n/fr/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Vos flux ont été importés mais des erreurs sont survenues.',
'file_cannot_be_uploaded' => 'Le fichier ne peut pas être téléchargé !',
'no_zip_extension' => 'L’extension ZIP n’est pas présente sur votre serveur.',
- 'zip_error' => 'Une erreur est survenue durant l’import du fichier ZIP.',
+ 'zip_error' => 'Une erreur est survenue durant le traintement du fichier ZIP.',
),
'profile' => array(
'error' => 'Votre profil n’a pas pu être mis à jour',
diff --git a/app/i18n/he/feedback.php b/app/i18n/he/feedback.php
index 8530f6c72..cbcf35ad9 100644
--- a/app/i18n/he/feedback.php
+++ b/app/i18n/he/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'ההזנות שלך יובאו אך אירעו מספר שגיאות',
'file_cannot_be_uploaded' => 'אין אפשרות להעלות את הקובץ!',
'no_zip_extension' => 'הרחבת ZIP אינה מותקנת על השרת.',
- 'zip_error' => 'אירעה שגיאה במהלך ייבוא קובץ הZIP.',
+ 'zip_error' => 'אירעה שגיאה במהלך ייבוא קובץ הZIP.', // DIRTY
),
'profile' => array(
'error' => 'Your profile cannot be modified', // TODO
diff --git a/app/i18n/id/feedback.php b/app/i18n/id/feedback.php
index ab9411ba9..1eefb9cbf 100644
--- a/app/i18n/id/feedback.php
+++ b/app/i18n/id/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Your feeds have been imported, but some errors occurred', // TODO
'file_cannot_be_uploaded' => 'File cannot be uploaded!', // TODO
'no_zip_extension' => 'The ZIP extension is not present on your server.', // TODO
- 'zip_error' => 'An error occurred during ZIP import.', // TODO
+ 'zip_error' => 'An error occurred during ZIP processing.', // TODO
),
'profile' => array(
'error' => 'Your profile cannot be modified', // TODO
diff --git a/app/i18n/it/feedback.php b/app/i18n/it/feedback.php
index 104d4a095..b2ef56cf7 100644
--- a/app/i18n/it/feedback.php
+++ b/app/i18n/it/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'I tuoi feeds sono stati importati ma si sono verificati alcuni errori',
'file_cannot_be_uploaded' => 'Il file non può essere caricato!',
'no_zip_extension' => 'Estensione ZIP non presente sul server.',
- 'zip_error' => 'Si è verificato un errore importando il file ZIP',
+ 'zip_error' => 'Si è verificato un errore importando il file ZIP', // DIRTY
),
'profile' => array(
'error' => 'Il tuo profilo non può essere modificato',
diff --git a/app/i18n/ja/feedback.php b/app/i18n/ja/feedback.php
index fb4f12d75..f5273e3e7 100644
--- a/app/i18n/ja/feedback.php
+++ b/app/i18n/ja/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'あなたのフィードはインポートされましたが、エラーが起きました。',
'file_cannot_be_uploaded' => 'ファイルをアップロードすることはできません!',
'no_zip_extension' => 'ZIP拡張は現在あなたのサーバーに存在しません。',
- 'zip_error' => 'ZIPをインポートするときエラーが発生しました。',
+ 'zip_error' => 'ZIPをインポートするときエラーが発生しました。', // DIRTY
),
'profile' => array(
'error' => 'あなたのプロフィールを変更することはできません',
diff --git a/app/i18n/ko/feedback.php b/app/i18n/ko/feedback.php
index 3692f7872..909c75519 100644
--- a/app/i18n/ko/feedback.php
+++ b/app/i18n/ko/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => '피드를 불러왔지만, 문제가 발생했습니다',
'file_cannot_be_uploaded' => '파일을 업로드할 수 없습니다!',
'no_zip_extension' => 'ZIP 확장 기능을 서버에서 찾을 수 없습니다.',
- 'zip_error' => 'ZIP 파일을 불러오는 동안 문제가 발생했습니다.',
+ 'zip_error' => 'ZIP 파일을 불러오는 동안 문제가 발생했습니다.', // DIRTY
),
'profile' => array(
'error' => '프로필을 변경할 수 없습니다',
diff --git a/app/i18n/lv/feedback.php b/app/i18n/lv/feedback.php
index e2b6645e3..31f3ce6e0 100644
--- a/app/i18n/lv/feedback.php
+++ b/app/i18n/lv/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Jūsu barotnes tika importētas, bet ir radušās dažas kļūdas',
'file_cannot_be_uploaded' => 'Failu nevar augšupielādēt!',
'no_zip_extension' => 'Jūsu serverī nav ZIP paplašinājuma.',
- 'zip_error' => 'ZIP importa laikā notika kļūda.',
+ 'zip_error' => 'ZIP importa laikā notika kļūda.', // DIRTY
),
'profile' => array(
'error' => 'Jūsu profilu nevar mainīt',
diff --git a/app/i18n/nl/feedback.php b/app/i18n/nl/feedback.php
index 0819e9a2a..6a9ff77ab 100644
--- a/app/i18n/nl/feedback.php
+++ b/app/i18n/nl/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Uw feeds zijn geimporteerd maar er zijn enige fouten opgetreden',
'file_cannot_be_uploaded' => 'Bestand kan niet worden verzonden!',
'no_zip_extension' => 'ZIP uitbreiding is niet aanwezig op uw server.',
- 'zip_error' => 'Er is een fout opgetreden tijdens het imporeren van het ZIP bestand.',
+ 'zip_error' => 'Er is een fout opgetreden tijdens het imporeren van het ZIP bestand.', // DIRTY
),
'profile' => array(
'error' => 'Uw profiel kan niet worden aangepast',
diff --git a/app/i18n/oc/feedback.php b/app/i18n/oc/feedback.php
index 4b752cfce..9ab3b5bf3 100644
--- a/app/i18n/oc/feedback.php
+++ b/app/i18n/oc/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Vòstres fluxes son estats importats mas i a agut d’errors',
'file_cannot_be_uploaded' => 'Telecargament del fichièr impossible',
'no_zip_extension' => 'L’extension es pas presenta sul servidor.',
- 'zip_error' => 'Una error s’es producha pendent l’importacion del fichièr ZIP.',
+ 'zip_error' => 'Una error s’es producha pendent l’importacion del fichièr ZIP.', // DIRTY
),
'profile' => array(
'error' => 'Impossible d’actualizar vòstre perfil',
diff --git a/app/i18n/pl/feedback.php b/app/i18n/pl/feedback.php
index e47246230..44ad493f5 100644
--- a/app/i18n/pl/feedback.php
+++ b/app/i18n/pl/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Kanały zostały zaimportowane, jednakże wystąpiło kilka błędów',
'file_cannot_be_uploaded' => 'Plik nie może zostać wgrany!',
'no_zip_extension' => 'Rozszerzenie ZIP nie jest dostępne na serwerze.',
- 'zip_error' => 'Wystąpił błąd podczas importu pliku ZIP.',
+ 'zip_error' => 'Wystąpił błąd podczas importu pliku ZIP.', // DIRTY
),
'profile' => array(
'error' => 'Nie można modyfikować profilu',
diff --git a/app/i18n/pt-br/feedback.php b/app/i18n/pt-br/feedback.php
index d0bfecb43..348fbf321 100644
--- a/app/i18n/pt-br/feedback.php
+++ b/app/i18n/pt-br/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Seus feeds foram importados, mas alguns erros ocorreram',
'file_cannot_be_uploaded' => 'Arquivo não pôde ser enviado',
'no_zip_extension' => 'extensão ZIP não está presente em seu servidor.',
- 'zip_error' => 'Um erro ocorreu durante a importação do arquivo ZIP.',
+ 'zip_error' => 'Um erro ocorreu durante a importação do arquivo ZIP.', // DIRTY
),
'profile' => array(
'error' => 'Seu perfil não pode ser editado',
diff --git a/app/i18n/ru/feedback.php b/app/i18n/ru/feedback.php
index 2cbdbad74..828f663fc 100644
--- a/app/i18n/ru/feedback.php
+++ b/app/i18n/ru/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Ваши ленты импортированы, но возникли ошибки',
'file_cannot_be_uploaded' => 'Файл не может быть загружен!',
'no_zip_extension' => 'На вашем сервере нет расширения ZIP.',
- 'zip_error' => 'Ошибка возникла при импорте ZIP.',
+ 'zip_error' => 'Ошибка возникла при импорте ZIP.', // DIRTY
),
'profile' => array(
'error' => 'Ваш профиль не может быть изменён',
diff --git a/app/i18n/sk/feedback.php b/app/i18n/sk/feedback.php
index b4e02f45f..e51670c27 100644
--- a/app/i18n/sk/feedback.php
+++ b/app/i18n/sk/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Vaše kanály boli importované, ale vyskytli sa chyby',
'file_cannot_be_uploaded' => 'Súbor sa nepodarilo nahrať!',
'no_zip_extension' => 'ZIP rozšírenie sa na vašom serveri nenachádza.',
- 'zip_error' => 'Počas importovania ZIP sa vyskytla chyba.',
+ 'zip_error' => 'Počas importovania ZIP sa vyskytla chyba.', // DIRTY
),
'profile' => array(
'error' => 'Váš profil nie je možné upraviť',
diff --git a/app/i18n/tr/feedback.php b/app/i18n/tr/feedback.php
index 18dc8dc6e..e63fe8b11 100644
--- a/app/i18n/tr/feedback.php
+++ b/app/i18n/tr/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => 'Akışlarınız içeri aktarıldı ama bazı hatalar meydana geldi',
'file_cannot_be_uploaded' => 'Dosya yüklenemedi!',
'no_zip_extension' => 'ZIP eklentisi mevcut sunucunuzda yer almıyor.',
- 'zip_error' => 'ZIP içe aktarımı sırasında hata meydana geldi.',
+ 'zip_error' => 'ZIP içe aktarımı sırasında hata meydana geldi.', // DIRTY
),
'profile' => array(
'error' => 'Profiliniz düzenlenemedi',
diff --git a/app/i18n/zh-cn/feedback.php b/app/i18n/zh-cn/feedback.php
index 701471f4e..7019815ec 100644
--- a/app/i18n/zh-cn/feedback.php
+++ b/app/i18n/zh-cn/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => '你的订阅源已导入,但发生错误',
'file_cannot_be_uploaded' => '文件未能上传!',
'no_zip_extension' => '服务器未启用 ZIP 扩展。',
- 'zip_error' => '导入 ZIP 文件时出错',
+ 'zip_error' => '导入 ZIP 文件时出错', // DIRTY
),
'profile' => array(
'error' => '你的帐户无法修改',
diff --git a/app/i18n/zh-tw/feedback.php b/app/i18n/zh-tw/feedback.php
index a23ca1a68..59a22ca1f 100644
--- a/app/i18n/zh-tw/feedback.php
+++ b/app/i18n/zh-tw/feedback.php
@@ -61,7 +61,7 @@ return array(
'feeds_imported_with_errors' => '你的訂閱源已導入,但發生錯誤',
'file_cannot_be_uploaded' => '文件未能上傳!',
'no_zip_extension' => '伺服器未啟用 ZIP 擴展。',
- 'zip_error' => '導入 ZIP 文件時出錯',
+ 'zip_error' => '導入 ZIP 文件時出錯', // DIRTY
),
'profile' => array(
'error' => '你的帳戶修改失敗',