mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
parent
85065b509f
commit
cbcfa69c05
51 changed files with 29 additions and 119 deletions
26
app/DoctrineMigrations/Version20230728085538.php
Normal file
26
app/DoctrineMigrations/Version20230728085538.php
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Application\Migrations;
|
||||||
|
|
||||||
|
use Doctrine\DBAL\Schema\Schema;
|
||||||
|
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove demonstration mode settings.
|
||||||
|
*/
|
||||||
|
final class Version20230728085538 extends WallabagMigration
|
||||||
|
{
|
||||||
|
public function up(Schema $schema): void
|
||||||
|
{
|
||||||
|
$this->addSql('DELETE FROM' . $this->getTable('internal_setting') . " WHERE name = 'demo_mode_enabled';");
|
||||||
|
$this->addSql('DELETE FROM' . $this->getTable('internal_setting') . " WHERE name = 'demo_mode_username';");
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down(Schema $schema): void
|
||||||
|
{
|
||||||
|
$this->addSql('INSERT INTO ' . $this->getTable('internal_setting') . " (name, value, section) VALUES ('demo_mode_enabled', '0', 'misc');");
|
||||||
|
$this->addSql('INSERT INTO ' . $this->getTable('internal_setting') . " (name, value, section) VALUES ('demo_mode_username', 'wallabag', 'misc');");
|
||||||
|
}
|
||||||
|
}
|
|
@ -129,14 +129,6 @@ wallabag_core:
|
||||||
name: matomo_site_id
|
name: matomo_site_id
|
||||||
value: 1
|
value: 1
|
||||||
section: analytics
|
section: analytics
|
||||||
-
|
|
||||||
name: demo_mode_enabled
|
|
||||||
value: 0
|
|
||||||
section: misc
|
|
||||||
-
|
|
||||||
name: demo_mode_username
|
|
||||||
value: wallabag
|
|
||||||
section: misc
|
|
||||||
-
|
-
|
||||||
name: download_images_enabled
|
name: download_images_enabled
|
||||||
value: 0
|
value: 0
|
||||||
|
|
|
@ -90,14 +90,10 @@ class ConfigController extends AbstractController
|
||||||
$pwdForm->handleRequest($request);
|
$pwdForm->handleRequest($request);
|
||||||
|
|
||||||
if ($pwdForm->isSubmitted() && $pwdForm->isValid()) {
|
if ($pwdForm->isSubmitted() && $pwdForm->isValid()) {
|
||||||
if ($craueConfig->get('demo_mode_enabled') && $craueConfig->get('demo_mode_username') === $user->getUsername()) {
|
$message = 'flashes.config.notice.password_updated';
|
||||||
$message = 'flashes.config.notice.password_not_updated_demo';
|
|
||||||
} else {
|
|
||||||
$message = 'flashes.config.notice.password_updated';
|
|
||||||
|
|
||||||
$user->setPlainPassword($pwdForm->get('new_password')->getData());
|
$user->setPlainPassword($pwdForm->get('new_password')->getData());
|
||||||
$this->userManager->updateUser($user, true);
|
$this->userManager->updateUser($user, true);
|
||||||
}
|
|
||||||
|
|
||||||
$this->addFlash('notice', $message);
|
$this->addFlash('notice', $message);
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
namespace Tests\Wallabag\CoreBundle\Controller;
|
namespace Tests\Wallabag\CoreBundle\Controller;
|
||||||
|
|
||||||
use Craue\ConfigBundle\Util\Config;
|
|
||||||
use Doctrine\ORM\EntityManagerInterface;
|
use Doctrine\ORM\EntityManagerInterface;
|
||||||
use Symfony\Component\HttpFoundation\File\UploadedFile;
|
use Symfony\Component\HttpFoundation\File\UploadedFile;
|
||||||
use Symfony\Component\HttpFoundation\Session\SessionInterface;
|
use Symfony\Component\HttpFoundation\Session\SessionInterface;
|
||||||
|
@ -736,36 +735,6 @@ class ConfigControllerTest extends WallabagCoreTestCase
|
||||||
$this->assertStringContainsString('You can not access this rule', $body[0]);
|
$this->assertStringContainsString('You can not access this rule', $body[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testDemoMode()
|
|
||||||
{
|
|
||||||
$this->logInAs('admin');
|
|
||||||
$client = $this->getTestClient();
|
|
||||||
|
|
||||||
$config = $client->getContainer()->get(Config::class);
|
|
||||||
$config->set('demo_mode_enabled', 1);
|
|
||||||
$config->set('demo_mode_username', 'admin');
|
|
||||||
|
|
||||||
$crawler = $client->request('GET', '/config');
|
|
||||||
|
|
||||||
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
|
||||||
|
|
||||||
$form = $crawler->filter('button[id=change_passwd_save]')->form();
|
|
||||||
|
|
||||||
$data = [
|
|
||||||
'change_passwd[old_password]' => 'mypassword',
|
|
||||||
'change_passwd[new_password][first]' => 'mypassword',
|
|
||||||
'change_passwd[new_password][second]' => 'mypassword',
|
|
||||||
];
|
|
||||||
|
|
||||||
$client->submit($form, $data);
|
|
||||||
|
|
||||||
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
||||||
$this->assertStringContainsString('flashes.config.notice.password_not_updated_demo', $client->getContainer()->get(SessionInterface::class)->getFlashBag()->get('notice')[0]);
|
|
||||||
|
|
||||||
$config->set('demo_mode_enabled', 0);
|
|
||||||
$config->set('demo_mode_username', 'wallabag');
|
|
||||||
}
|
|
||||||
|
|
||||||
public function testDeleteUserButtonVisibility()
|
public function testDeleteUserButtonVisibility()
|
||||||
{
|
{
|
||||||
$this->logInAs('admin');
|
$this->logInAs('admin');
|
||||||
|
|
|
@ -22,8 +22,6 @@ api_user_registration: Zapnout registraci uživatelů prostřednictvím API
|
||||||
restricted_access: Povolit ověřování pro placené webové stránky
|
restricted_access: Povolit ověřování pro placené webové stránky
|
||||||
download_images_enabled: Stahovat obrázky místně
|
download_images_enabled: Stahovat obrázky místně
|
||||||
share_public: Povolit veřejné adresy URL pro položky
|
share_public: Povolit veřejné adresy URL pro položky
|
||||||
demo_mode_username: Ukázkový uživatel
|
|
||||||
demo_mode_enabled: Povolit ukázkový režim (Používá se pouze pro veřejnou ukázku Wallabag)
|
|
||||||
matomo_site_id: ID vaší webové stránky na Matomo
|
matomo_site_id: ID vaší webové stránky na Matomo
|
||||||
matomo_host: Hostitel vaší webové stránky na Matomo (bez http:// nebo https://)
|
matomo_host: Hostitel vaší webové stránky na Matomo (bez http:// nebo https://)
|
||||||
modify_settings: použít
|
modify_settings: použít
|
||||||
|
|
|
@ -24,5 +24,3 @@ modify_settings: "Gem ændring"
|
||||||
matomo_host: Hosting af din side hos Matomo (uden http:// eller https://)
|
matomo_host: Hosting af din side hos Matomo (uden http:// eller https://)
|
||||||
matomo_site_id: ID for din side hos Matomo
|
matomo_site_id: ID for din side hos Matomo
|
||||||
matomo_enabled: Aktiver Matomo
|
matomo_enabled: Aktiver Matomo
|
||||||
demo_mode_enabled: "Aktiver demo-indstilling? (anvendes kun til wallabags offentlige demo)"
|
|
||||||
demo_mode_username: "Demobruger"
|
|
||||||
|
|
|
@ -28,9 +28,6 @@ modify_settings: Übernehmen
|
||||||
matomo_host: Host deiner Webseite in Matomo (ohne http:// oder https://)
|
matomo_host: Host deiner Webseite in Matomo (ohne http:// oder https://)
|
||||||
matomo_site_id: ID deiner Webseite in Matomo
|
matomo_site_id: ID deiner Webseite in Matomo
|
||||||
matomo_enabled: Matomo aktivieren
|
matomo_enabled: Matomo aktivieren
|
||||||
demo_mode_enabled: Demo-Modus aktivieren? (Wird nur für die öffentliche Wallabag-Demo
|
|
||||||
verwendet)
|
|
||||||
demo_mode_username: Test-Benutzer
|
|
||||||
share_public: Öffentliche URLs für Einträge zulassen
|
share_public: Öffentliche URLs für Einträge zulassen
|
||||||
download_images_enabled: Bilder lokal herunterladen
|
download_images_enabled: Bilder lokal herunterladen
|
||||||
restricted_access: Authentifizierung für Webseiten mit Paywall aktivieren
|
restricted_access: Authentifizierung für Webseiten mit Paywall aktivieren
|
||||||
|
|
|
@ -4,8 +4,6 @@ api_user_registration: Ενεργοποίηση εγγραφής χρήστη μ
|
||||||
restricted_access: Ενεργοποίηση επαλήθευσης για ιστοσελίδες με paywall
|
restricted_access: Ενεργοποίηση επαλήθευσης για ιστοσελίδες με paywall
|
||||||
download_images_enabled: Λήψη εικόνων τοπικά
|
download_images_enabled: Λήψη εικόνων τοπικά
|
||||||
share_public: Να επιτρέπονται URL για τα άρθρα
|
share_public: Να επιτρέπονται URL για τα άρθρα
|
||||||
demo_mode_username: Χρήστης demo
|
|
||||||
demo_mode_enabled: Ενεργοποίηση λειτουργίας demo; (Χρησιμοποιείται μόνο για το δημόσιο demo του wallabag)
|
|
||||||
matomo_enabled: Ενεργοποίηση Matomo
|
matomo_enabled: Ενεργοποίηση Matomo
|
||||||
matomo_site_id: ID της ιστοσελίδας σας στο Matomo
|
matomo_site_id: ID της ιστοσελίδας σας στο Matomo
|
||||||
matomo_host: Διεύθυνση της ιστοσελίδας σας στο Matomo (χωρίς http:// ή https://)
|
matomo_host: Διεύθυνση της ιστοσελίδας σας στο Matomo (χωρίς http:// ή https://)
|
||||||
|
|
|
@ -27,8 +27,6 @@ modify_settings: apply
|
||||||
matomo_host: Host of your website in Matomo (without http:// or https://)
|
matomo_host: Host of your website in Matomo (without http:// or https://)
|
||||||
matomo_site_id: ID of your website in Matomo
|
matomo_site_id: ID of your website in Matomo
|
||||||
matomo_enabled: Enable Matomo
|
matomo_enabled: Enable Matomo
|
||||||
demo_mode_enabled: Enable demo mode? (Only used for the public wallabag demo)
|
|
||||||
demo_mode_username: Demo user
|
|
||||||
share_public: Allow public URLs for entries
|
share_public: Allow public URLs for entries
|
||||||
download_images_enabled: Download images locally
|
download_images_enabled: Download images locally
|
||||||
restricted_access: Enable authentication for paywalled websites
|
restricted_access: Enable authentication for paywalled websites
|
||||||
|
|
|
@ -27,8 +27,6 @@ modify_settings: "guardar"
|
||||||
matomo_host: Host de tu website en Matomo (sin http:// o https://)
|
matomo_host: Host de tu website en Matomo (sin http:// o https://)
|
||||||
matomo_site_id: ID de tu website en Matomo
|
matomo_site_id: ID de tu website en Matomo
|
||||||
matomo_enabled: Activar Matomo
|
matomo_enabled: Activar Matomo
|
||||||
demo_mode_enabled: "Activar modo demo (sólo usado en la demo pública de wallabag)"
|
|
||||||
demo_mode_username: "Nombre de usuario demo"
|
|
||||||
share_public: Permitir URLs públicas para los artículos
|
share_public: Permitir URLs públicas para los artículos
|
||||||
download_images_enabled: Descargar imágenes localmente
|
download_images_enabled: Descargar imágenes localmente
|
||||||
restricted_access: Activar autenticación para websites con paywall
|
restricted_access: Activar autenticación para websites con paywall
|
||||||
|
|
|
@ -27,8 +27,6 @@ modify_settings: appliquer
|
||||||
matomo_host: URL de votre site dans Matomo (sans http:// ou https://)
|
matomo_host: URL de votre site dans Matomo (sans http:// ou https://)
|
||||||
matomo_site_id: ID de votre site dans Matomo
|
matomo_site_id: ID de votre site dans Matomo
|
||||||
matomo_enabled: Activer Matomo
|
matomo_enabled: Activer Matomo
|
||||||
demo_mode_enabled: Activer le mode démo ? (Utiliser uniquement pour la démo publique de wallabag)
|
|
||||||
demo_mode_username: Utilisateur de la démo
|
|
||||||
share_public: Autoriser les URL publiques pour les articles
|
share_public: Autoriser les URL publiques pour les articles
|
||||||
download_images_enabled: Télécharger les images en local
|
download_images_enabled: Télécharger les images en local
|
||||||
restricted_access: Activer l'authentification pour les sites avec paywall
|
restricted_access: Activer l'authentification pour les sites avec paywall
|
||||||
|
|
|
@ -4,8 +4,6 @@ api_user_registration: Activar rexistro de usuarias a través da API
|
||||||
restricted_access: Activar autenticación para sitios web con acceso de pagamento
|
restricted_access: Activar autenticación para sitios web con acceso de pagamento
|
||||||
download_images_enabled: Descargar imaxes localmente
|
download_images_enabled: Descargar imaxes localmente
|
||||||
share_public: Permitir URLs públicos para entradas
|
share_public: Permitir URLs públicos para entradas
|
||||||
demo_mode_username: Usuaria Demo
|
|
||||||
demo_mode_enabled: Activar modo demostración? (Só se usa na demo pública de wallabag)
|
|
||||||
matomo_enabled: Activar Matomo
|
matomo_enabled: Activar Matomo
|
||||||
matomo_site_id: ID do teu sitio web en Matomo
|
matomo_site_id: ID do teu sitio web en Matomo
|
||||||
matomo_host: Servidor do teu sitio web en Matomo (sen http:// ou https://)
|
matomo_host: Servidor do teu sitio web en Matomo (sen http:// ou https://)
|
||||||
|
|
|
@ -19,7 +19,6 @@ matomo_enabled: Aktiviraj Matomo
|
||||||
import_with_redis: Aktiviraj Redis za asinkroni uvoz podataka
|
import_with_redis: Aktiviraj Redis za asinkroni uvoz podataka
|
||||||
restricted_access: Aktiviraj autentifikaciju za naplatne web-stranice
|
restricted_access: Aktiviraj autentifikaciju za naplatne web-stranice
|
||||||
export_mobi: Aktiviraj .mobi izvoz (zastarjelo, uskoro će se ukloniti)
|
export_mobi: Aktiviraj .mobi izvoz (zastarjelo, uskoro će se ukloniti)
|
||||||
demo_mode_enabled: Aktivirati demo modus? (Koristi se samo za javnu wallabag demonstraciju)
|
|
||||||
diaspora_url: diaspora* URL, ako je usluga aktivirana
|
diaspora_url: diaspora* URL, ako je usluga aktivirana
|
||||||
import_with_rabbitmq: Aktiviraj RabbitMQ za asinkroni uvoz podataka
|
import_with_rabbitmq: Aktiviraj RabbitMQ za asinkroni uvoz podataka
|
||||||
api_user_registration: Aktiviraj korisničku registraciju putem sučelja
|
api_user_registration: Aktiviraj korisničku registraciju putem sučelja
|
||||||
|
@ -34,6 +33,5 @@ misc: razno
|
||||||
wallabag_support_url: URL podrške za wallabag
|
wallabag_support_url: URL podrške za wallabag
|
||||||
export_xml: Aktiviraj XML izvoz
|
export_xml: Aktiviraj XML izvoz
|
||||||
show_printlink: Za ispis sadržaja, prikaži poveznicu
|
show_printlink: Za ispis sadržaja, prikaži poveznicu
|
||||||
demo_mode_username: Demo korisnik
|
|
||||||
import: uvezi
|
import: uvezi
|
||||||
share_public: Dozvoli javne URL-ove za zapise
|
share_public: Dozvoli javne URL-ove za zapise
|
||||||
|
|
|
@ -27,9 +27,6 @@ modify_settings: alkalmaz
|
||||||
piwik_host: Weboldalának hosztja a Piwik-en (http:// vagy https:// nélkül)
|
piwik_host: Weboldalának hosztja a Piwik-en (http:// vagy https:// nélkül)
|
||||||
piwik_site_id: Weboldalának azonosítója (ID-je) a Piwik-en
|
piwik_site_id: Weboldalának azonosítója (ID-je) a Piwik-en
|
||||||
piwik_enabled: Piwik engedélyezése
|
piwik_enabled: Piwik engedélyezése
|
||||||
demo_mode_enabled: Engedélyezi a bemutató (demó) módot? (Csak a nyilvános wallabag
|
|
||||||
demóhoz használva)
|
|
||||||
demo_mode_username: Demó felhasználó
|
|
||||||
share_public: Nyilvános URL-ek engedélyezése a bejegyzésekhez
|
share_public: Nyilvános URL-ek engedélyezése a bejegyzésekhez
|
||||||
download_images_enabled: Képek letöltése helyileg
|
download_images_enabled: Képek letöltése helyileg
|
||||||
restricted_access: Hitelesítés engedélyezése paywalled weboldalakhoz
|
restricted_access: Hitelesítés engedélyezése paywalled weboldalakhoz
|
||||||
|
|
|
@ -11,11 +11,9 @@ shaarli_share_origin_url: Aktifkan berbagi URL asal ke Shaarli, jika layanan dia
|
||||||
share_public: Izinkan URL publik untuk entri
|
share_public: Izinkan URL publik untuk entri
|
||||||
restricted_access: Aktifkan otentikasi untuk situs web berbayar
|
restricted_access: Aktifkan otentikasi untuk situs web berbayar
|
||||||
share_twitter: Aktifkan berbagi ke Twitter
|
share_twitter: Aktifkan berbagi ke Twitter
|
||||||
demo_mode_enabled: Aktifkan mode demo? (Hanya digunakan untuk demo wallabag publik)
|
|
||||||
download_images_enabled: Unduh gambar secara lokal
|
download_images_enabled: Unduh gambar secara lokal
|
||||||
store_article_headers: Aktifkan jika wallabag menyimpan header HTTP untuk setiap artikel
|
store_article_headers: Aktifkan jika wallabag menyimpan header HTTP untuk setiap artikel
|
||||||
api_user_registration: Aktifkan pendaftaran pengguna melalui API
|
api_user_registration: Aktifkan pendaftaran pengguna melalui API
|
||||||
demo_mode_username: Pengguna demo
|
|
||||||
download_pictures: Unduh gambar ke server Anda
|
download_pictures: Unduh gambar ke server Anda
|
||||||
export_xml: Aktifkan ekspor XML
|
export_xml: Aktifkan ekspor XML
|
||||||
import_with_rabbitmq: Aktifkan RabbitMQ untuk mengimpor data secara asinkron
|
import_with_rabbitmq: Aktifkan RabbitMQ untuk mengimpor data secara asinkron
|
||||||
|
|
|
@ -24,7 +24,5 @@ modify_settings: "applica"
|
||||||
matomo_host: Host del tuo sito in Matomo (senza http:// o https://)
|
matomo_host: Host del tuo sito in Matomo (senza http:// o https://)
|
||||||
matomo_site_id: ID del tuo sito in Matomo
|
matomo_site_id: ID del tuo sito in Matomo
|
||||||
matomo_enabled: Abilita Matomo
|
matomo_enabled: Abilita Matomo
|
||||||
demo_mode_enabled: "Abilita modalità demo ? (usato solo per la demo pubblica di wallabag)"
|
|
||||||
demo_mode_username: "Utente Demo"
|
|
||||||
api_user_registration: Abilita la registrazione dell'utente attraverso l'API
|
api_user_registration: Abilita la registrazione dell'utente attraverso l'API
|
||||||
settings_changed: Configurazione aggiornata
|
settings_changed: Configurazione aggiornata
|
||||||
|
|
|
@ -27,8 +27,6 @@ modify_settings: 適用
|
||||||
matomo_host: Matomo のウェブサイトのホスト (http:// および https:// なし)
|
matomo_host: Matomo のウェブサイトのホスト (http:// および https:// なし)
|
||||||
matomo_site_id: Matomo でのあなたのウェブサイトの ID
|
matomo_site_id: Matomo でのあなたのウェブサイトの ID
|
||||||
matomo_enabled: Matomo を有効にする
|
matomo_enabled: Matomo を有効にする
|
||||||
demo_mode_enabled: デモモードを有効にしますか? (公開 wallabag デモでのみ使用)
|
|
||||||
demo_mode_username: デモユーザー
|
|
||||||
share_public: エントリの公開 URL を許可する
|
share_public: エントリの公開 URL を許可する
|
||||||
download_images_enabled: 画像をローカルにダウンロード
|
download_images_enabled: 画像をローカルにダウンロード
|
||||||
restricted_access: ペイウォールのあるウェブサイトへの認証を有効にする
|
restricted_access: ペイウォールのあるウェブサイトへの認証を有効にする
|
||||||
|
|
|
@ -5,8 +5,6 @@ api_user_registration: API를 통해 사용자 등록 활성화
|
||||||
restricted_access: 유료 웹 사이트에 대한 인증 활성화
|
restricted_access: 유료 웹 사이트에 대한 인증 활성화
|
||||||
download_images_enabled: 이미지를 로컬로 다운로드
|
download_images_enabled: 이미지를 로컬로 다운로드
|
||||||
share_public: 항목의 공개 URL 허용
|
share_public: 항목의 공개 URL 허용
|
||||||
demo_mode_username: 데모 사용자
|
|
||||||
demo_mode_enabled: 데모 모드를 사용 하시겠습니까? (공개 Wallabag 데모에만 사용됨)
|
|
||||||
matomo_enabled: Matomo 활성화
|
matomo_enabled: Matomo 활성화
|
||||||
matomo_site_id: Matomo 웹 사이트 ID
|
matomo_site_id: Matomo 웹 사이트 ID
|
||||||
matomo_host: Matomo 웹 사이트의 호스트 (http:// 또는 https:// 없음)
|
matomo_host: Matomo 웹 사이트의 호스트 (http:// 또는 https:// 없음)
|
||||||
|
|
|
@ -26,8 +26,6 @@ modify_settings: bruk
|
||||||
piwik_host: Vertskap for din nettside hos Piwik (uten http:// eller https://)
|
piwik_host: Vertskap for din nettside hos Piwik (uten http:// eller https://)
|
||||||
piwik_site_id: ID for din nettside hos Piwik
|
piwik_site_id: ID for din nettside hos Piwik
|
||||||
piwik_enabled: Skru på Piwik
|
piwik_enabled: Skru på Piwik
|
||||||
demo_mode_enabled: Skru på demo-modus? (Kun brukt for offentlig wallabag-demo)
|
|
||||||
demo_mode_username: Demo-bruker
|
|
||||||
share_public: Tillat offentlige nettadresser for oppføringer
|
share_public: Tillat offentlige nettadresser for oppføringer
|
||||||
download_images_enabled: Last ned bilder lokalt
|
download_images_enabled: Last ned bilder lokalt
|
||||||
restricted_access: Skru på identitetsbekreftelse for nettsider med betalingsmur
|
restricted_access: Skru på identitetsbekreftelse for nettsider med betalingsmur
|
||||||
|
|
|
@ -3,8 +3,6 @@ store_article_headers: Schakel het opslaan van HTTP headers voor ieder artikel i
|
||||||
api_user_registration: Schakel gebruikersregistratie via API in
|
api_user_registration: Schakel gebruikersregistratie via API in
|
||||||
restricted_access: Schakel authenticatie voor betaalde websites in
|
restricted_access: Schakel authenticatie voor betaalde websites in
|
||||||
download_images_enabled: Download afbeelding lokaal
|
download_images_enabled: Download afbeelding lokaal
|
||||||
demo_mode_username: Demo gebruiker
|
|
||||||
demo_mode_enabled: Schakel demo modus in? (Gebruik dit alleen voor de publieke wallabag demo)
|
|
||||||
matomo_enabled: Schakel Matomo in
|
matomo_enabled: Schakel Matomo in
|
||||||
matomo_site_id: ID van uw Matomo website
|
matomo_site_id: ID van uw Matomo website
|
||||||
matomo_host: Adres van uw Matomo website (zonder http:// of https://)
|
matomo_host: Adres van uw Matomo website (zonder http:// of https://)
|
||||||
|
|
|
@ -28,8 +28,6 @@ modify_settings: "aplicar"
|
||||||
matomo_host: URL de vòstre site dins Matomo (sense http:// o https://)
|
matomo_host: URL de vòstre site dins Matomo (sense http:// o https://)
|
||||||
matomo_site_id: ID de vòstre site dins Matomo
|
matomo_site_id: ID de vòstre site dins Matomo
|
||||||
matomo_enabled: Activar Matomo
|
matomo_enabled: Activar Matomo
|
||||||
demo_mode_enabled: "Activar lo mode demostracion ? (utilizar solament per la demostracion publica de wallabag)"
|
|
||||||
demo_mode_username: "Utilizaire de la demostracion"
|
|
||||||
share_public: Autorizar una URL publica pels articles
|
share_public: Autorizar una URL publica pels articles
|
||||||
download_images_enabled: Telecargar los imatges en local
|
download_images_enabled: Telecargar los imatges en local
|
||||||
restricted_access: Activar l'autenticacion pels sites amb peatge
|
restricted_access: Activar l'autenticacion pels sites amb peatge
|
||||||
|
|
|
@ -26,8 +26,6 @@ modify_settings: zatwierdź
|
||||||
matomo_host: Host twojej strony Matomo (bez http:// lub https://)
|
matomo_host: Host twojej strony Matomo (bez http:// lub https://)
|
||||||
matomo_site_id: ID twojej strony Matomo
|
matomo_site_id: ID twojej strony Matomo
|
||||||
matomo_enabled: Włacz Matomo
|
matomo_enabled: Włacz Matomo
|
||||||
demo_mode_enabled: Włączyć tryb demonstracyjny? (Używany wyłącznie do publicznej demonstracji wallabag)
|
|
||||||
demo_mode_username: Użytkownik demonstracyjny
|
|
||||||
share_public: Zezwalaj na publiczne adresy URL dla wpisów
|
share_public: Zezwalaj na publiczne adresy URL dla wpisów
|
||||||
download_images_enabled: Pobierz obrazy lokalnie
|
download_images_enabled: Pobierz obrazy lokalnie
|
||||||
restricted_access: Włącz autoryzację dla stron za paywallem
|
restricted_access: Włącz autoryzację dla stron za paywallem
|
||||||
|
|
|
@ -25,8 +25,6 @@ modify_settings: "aplicar"
|
||||||
matomo_host: Host de seu website Matomo
|
matomo_host: Host de seu website Matomo
|
||||||
matomo_site_id: ID de seu website Matomo
|
matomo_site_id: ID de seu website Matomo
|
||||||
matomo_enabled: Habilitar Matomo
|
matomo_enabled: Habilitar Matomo
|
||||||
demo_mode_enabled: "Habilitar modo demo? (somente usado para o demo público do wallabag)"
|
|
||||||
demo_mode_username: "Utilizador demo"
|
|
||||||
restricted_access: Habilitar autenticação para sites com paywall
|
restricted_access: Habilitar autenticação para sites com paywall
|
||||||
download_images_enabled: Baixar imagens localmente
|
download_images_enabled: Baixar imagens localmente
|
||||||
import_with_redis: Habilitar Redis para importar dados assincronamente
|
import_with_redis: Habilitar Redis para importar dados assincronamente
|
||||||
|
|
|
@ -28,8 +28,6 @@ modify_settings: "применить"
|
||||||
matomo_host: "Ссылка на Ваш сайт на Matomo (с http:// или https://)"
|
matomo_host: "Ссылка на Ваш сайт на Matomo (с http:// или https://)"
|
||||||
matomo_site_id: "ID Вашего сайта на Matomo"
|
matomo_site_id: "ID Вашего сайта на Matomo"
|
||||||
matomo_enabled: "Включить Matomo"
|
matomo_enabled: "Включить Matomo"
|
||||||
demo_mode_enabled: "Включить демо режим ? (только для публичной демонстрации wallabag)"
|
|
||||||
demo_mode_username: "Демо пользователь"
|
|
||||||
share_public: "Разрешить публичные ссылки на записи"
|
share_public: "Разрешить публичные ссылки на записи"
|
||||||
download_images_enabled: "Скачивать изображения локально"
|
download_images_enabled: "Скачивать изображения локально"
|
||||||
restricted_access: "Включить авторизацию на сайте с помощью paywall"
|
restricted_access: "Включить авторизацию на сайте с помощью paywall"
|
||||||
|
|
|
@ -26,8 +26,6 @@ modify_settings: "ปรับใช้"
|
||||||
matomo_host: โฮสบนเว็บไซต์ของคุณใน Matomo (ยกเว้น http:// หรือ https://)
|
matomo_host: โฮสบนเว็บไซต์ของคุณใน Matomo (ยกเว้น http:// หรือ https://)
|
||||||
matomo_site_id: ไอดีบนเว็บไซต์ของคุณใน Matomo
|
matomo_site_id: ไอดีบนเว็บไซต์ของคุณใน Matomo
|
||||||
matomo_enabled: เปิดการใช้ Matomo
|
matomo_enabled: เปิดการใช้ Matomo
|
||||||
demo_mode_enabled: "เปิดการใช้งานโหมดเดโม ? (เฉพาะการใช้สำหรับเดโมสาธารณะของ wallabag)"
|
|
||||||
demo_mode_username: "ผู้ใช้ส่วนเดโม"
|
|
||||||
share_public: ยอมรับ URL สาธารณะจากการเข้าถึงข้อมูล
|
share_public: ยอมรับ URL สาธารณะจากการเข้าถึงข้อมูล
|
||||||
download_images_enabled: ดาวน์โหลดรูปภาพเฉพาะ
|
download_images_enabled: ดาวน์โหลดรูปภาพเฉพาะ
|
||||||
restricted_access: เปิดใช้งานการรองรับบนเว็บไซต์กับ paywall
|
restricted_access: เปิดใช้งานการรองรับบนเว็บไซต์กับ paywall
|
||||||
|
|
|
@ -27,8 +27,6 @@ modify_settings: uygula
|
||||||
matomo_host: Matomo'teki web sitenizin host adresi (başında http:// veya https:// olmadan)
|
matomo_host: Matomo'teki web sitenizin host adresi (başında http:// veya https:// olmadan)
|
||||||
matomo_site_id: Matomo'teki web sitenizin ID'si
|
matomo_site_id: Matomo'teki web sitenizin ID'si
|
||||||
matomo_enabled: Matomo'yu etkinleştir
|
matomo_enabled: Matomo'yu etkinleştir
|
||||||
demo_mode_enabled: Demo mod etkinleştirilsin mi (Yalnızca herkese açık wallabag demoları için kullanılır)
|
|
||||||
demo_mode_username: Demo kullanıcısı
|
|
||||||
share_public: Makaleler için herkese açık URL'lere izin ver
|
share_public: Makaleler için herkese açık URL'lere izin ver
|
||||||
download_images_enabled: Resimleri lokale indir
|
download_images_enabled: Resimleri lokale indir
|
||||||
restricted_access: Ödeme ile erişim sağlanabilen siteler için kimlik doğrulamayı etkinleştir
|
restricted_access: Ödeme ile erişim sağlanabilen siteler için kimlik doğrulamayı etkinleştir
|
||||||
|
|
|
@ -27,8 +27,6 @@ modify_settings: застосувати
|
||||||
matomo_host: Host вашого сайту в Matomo (без http:// чи https://)
|
matomo_host: Host вашого сайту в Matomo (без http:// чи https://)
|
||||||
matomo_site_id: ID вашого сайту в Matomo
|
matomo_site_id: ID вашого сайту в Matomo
|
||||||
matomo_enabled: Увімкнути Matomo
|
matomo_enabled: Увімкнути Matomo
|
||||||
demo_mode_enabled: Увімкнути демо-режим? (Використовується тільки для публічних демонстрацій wallabag)
|
|
||||||
demo_mode_username: Демо-користувач
|
|
||||||
share_public: Дозволити публічні посилання на статті
|
share_public: Дозволити публічні посилання на статті
|
||||||
download_images_enabled: Завантажувати картинки локально
|
download_images_enabled: Завантажувати картинки локально
|
||||||
restricted_access: Увімкнути аутентифікацію для сайтів з платним контентом
|
restricted_access: Увімкнути аутентифікацію для сайтів з платним контентом
|
||||||
|
|
|
@ -27,8 +27,6 @@ modify_settings: "应用"
|
||||||
matomo_host: 你的网站在 Matomo 的主机名(不包括 http:// or https://)
|
matomo_host: 你的网站在 Matomo 的主机名(不包括 http:// or https://)
|
||||||
matomo_site_id: 你的网站在 Matomo 的 ID
|
matomo_site_id: 你的网站在 Matomo 的 ID
|
||||||
matomo_enabled: 启用 Matomo
|
matomo_enabled: 启用 Matomo
|
||||||
demo_mode_enabled: "启用演示模式?(仅用于 wallabag 公开演示)"
|
|
||||||
demo_mode_username: "Demo 用户名"
|
|
||||||
share_public: 允许为项目启用公开链接
|
share_public: 允许为项目启用公开链接
|
||||||
download_images_enabled: 在本地缓存图片
|
download_images_enabled: 在本地缓存图片
|
||||||
restricted_access: 启用针对带有付费墙网站的认证
|
restricted_access: 启用针对带有付费墙网站的认证
|
||||||
|
|
|
@ -566,7 +566,6 @@ flashes:
|
||||||
tagging_rules_deleted: Pravidlo štítkování bylo odstraněno
|
tagging_rules_deleted: Pravidlo štítkování bylo odstraněno
|
||||||
tagging_rules_updated: Pravidla štítkování byla aktualizována
|
tagging_rules_updated: Pravidla štítkování byla aktualizována
|
||||||
user_updated: Informace byla aktualizována
|
user_updated: Informace byla aktualizována
|
||||||
password_not_updated_demo: V ukázkovém režimu nelze pro tohoto uživatele změnit heslo.
|
|
||||||
config_saved: Konfigurace byla uložena.
|
config_saved: Konfigurace byla uložena.
|
||||||
ignore_origin_instance_rule:
|
ignore_origin_instance_rule:
|
||||||
notice:
|
notice:
|
||||||
|
|
|
@ -642,7 +642,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: Konfiguration gespeichert.
|
config_saved: Konfiguration gespeichert.
|
||||||
password_updated: Kennwort aktualisiert
|
password_updated: Kennwort aktualisiert
|
||||||
password_not_updated_demo: Im Testmodus kannst du das Kennwort nicht ändern.
|
|
||||||
user_updated: Information aktualisiert
|
user_updated: Information aktualisiert
|
||||||
rss_updated: RSS-Informationen aktualisiert
|
rss_updated: RSS-Informationen aktualisiert
|
||||||
tagging_rules_updated: Tagging-Regeln aktualisiert
|
tagging_rules_updated: Tagging-Regeln aktualisiert
|
||||||
|
|
|
@ -141,7 +141,6 @@ flashes:
|
||||||
tagging_rules_deleted: Ο κανόνας σήμανσης ετικετών διαγράφηκε
|
tagging_rules_deleted: Ο κανόνας σήμανσης ετικετών διαγράφηκε
|
||||||
tagging_rules_updated: Οι κανόνες σήμανσης ετικετών ενημερώθηκαν
|
tagging_rules_updated: Οι κανόνες σήμανσης ετικετών ενημερώθηκαν
|
||||||
user_updated: Οι πληροφορίες ενημερώθηκαν
|
user_updated: Οι πληροφορίες ενημερώθηκαν
|
||||||
password_not_updated_demo: Στη λειτουργία demo, δεν μπορείτε να αλλάξετε τον κωδικό για αυτόν τον χρήστη.
|
|
||||||
password_updated: Ο κωδικός ενημερώθηκε
|
password_updated: Ο κωδικός ενημερώθηκε
|
||||||
config_saved: Οι ρυθμίσεις αποθηκεύτηκαν.
|
config_saved: Οι ρυθμίσεις αποθηκεύτηκαν.
|
||||||
error:
|
error:
|
||||||
|
|
|
@ -650,7 +650,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: Config saved.
|
config_saved: Config saved.
|
||||||
password_updated: Password updated
|
password_updated: Password updated
|
||||||
password_not_updated_demo: In demonstration mode, you can't change password for this user.
|
|
||||||
user_updated: Information updated
|
user_updated: Information updated
|
||||||
tagging_rules_updated: Tagging rules updated
|
tagging_rules_updated: Tagging rules updated
|
||||||
tagging_rules_deleted: Tagging rule deleted
|
tagging_rules_deleted: Tagging rule deleted
|
||||||
|
|
|
@ -644,7 +644,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: 'Configuración guardada.'
|
config_saved: 'Configuración guardada.'
|
||||||
password_updated: 'Contraseña actualizada'
|
password_updated: 'Contraseña actualizada'
|
||||||
password_not_updated_demo: "En el modo demo, no puedes cambiar la contraseña del usuario."
|
|
||||||
user_updated: 'Información actualizada'
|
user_updated: 'Información actualizada'
|
||||||
feed_updated: 'Configuración RSS actualizada'
|
feed_updated: 'Configuración RSS actualizada'
|
||||||
tagging_rules_updated: 'Regla de etiquetado actualizada'
|
tagging_rules_updated: 'Regla de etiquetado actualizada'
|
||||||
|
|
|
@ -321,7 +321,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: پیکربندی ذخیره شد.
|
config_saved: پیکربندی ذخیره شد.
|
||||||
password_updated: رمز بهروز شد
|
password_updated: رمز بهروز شد
|
||||||
password_not_updated_demo: در حالت نمایشی نمیتوانید رمز کاربر را عوض کنید.
|
|
||||||
user_updated: اطلاعات بهروز شد
|
user_updated: اطلاعات بهروز شد
|
||||||
rss_updated: اطلاعات آر-اس-اس بهروز شد
|
rss_updated: اطلاعات آر-اس-اس بهروز شد
|
||||||
tagging_rules_updated: برچسبگذاری خودکار بهروز شد
|
tagging_rules_updated: برچسبگذاری خودکار بهروز شد
|
||||||
|
|
|
@ -633,7 +633,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: "Les paramètres ont bien été mis à jour."
|
config_saved: "Les paramètres ont bien été mis à jour."
|
||||||
password_updated: "Votre mot de passe a bien été mis à jour"
|
password_updated: "Votre mot de passe a bien été mis à jour"
|
||||||
password_not_updated_demo: "En démo, vous ne pouvez pas changer le mot de passe de cet utilisateur."
|
|
||||||
user_updated: "Vos informations personnelles ont bien été mises à jour"
|
user_updated: "Vos informations personnelles ont bien été mises à jour"
|
||||||
feed_updated: "La configuration des flux a bien été mise à jour"
|
feed_updated: "La configuration des flux a bien été mise à jour"
|
||||||
tagging_rules_updated: "Règles mises à jour"
|
tagging_rules_updated: "Règles mises à jour"
|
||||||
|
|
|
@ -644,7 +644,6 @@ flashes:
|
||||||
tagging_rules_deleted: Regra de etiquetado eliminada
|
tagging_rules_deleted: Regra de etiquetado eliminada
|
||||||
tagging_rules_updated: Regras de etiquetado actualizadas
|
tagging_rules_updated: Regras de etiquetado actualizadas
|
||||||
user_updated: Información actualizada
|
user_updated: Información actualizada
|
||||||
password_not_updated_demo: No modo demostración non podes cambiar o contrasinal da usuaria.
|
|
||||||
password_updated: Contrasinal actualizado
|
password_updated: Contrasinal actualizado
|
||||||
config_saved: Gardouse o axuste.
|
config_saved: Gardouse o axuste.
|
||||||
error:
|
error:
|
||||||
|
|
|
@ -400,7 +400,6 @@ flashes:
|
||||||
summary_with_queue: 'Sažetak uvoza: %queued% u redu čekanja.'
|
summary_with_queue: 'Sažetak uvoza: %queued% u redu čekanja.'
|
||||||
config:
|
config:
|
||||||
notice:
|
notice:
|
||||||
password_not_updated_demo: U demonstracijskom modusu ne možeš promijeniti lozinku za ovog korisnika.
|
|
||||||
tags_reset: Oznake resetirane
|
tags_reset: Oznake resetirane
|
||||||
password_updated: Lozinka aktualizirana
|
password_updated: Lozinka aktualizirana
|
||||||
config_saved: Konfiguracija spremljena.
|
config_saved: Konfiguracija spremljena.
|
||||||
|
|
|
@ -542,7 +542,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: Configurazione salvata.
|
config_saved: Configurazione salvata.
|
||||||
password_updated: Password aggiornata
|
password_updated: Password aggiornata
|
||||||
password_not_updated_demo: In modalità demo, non puoi cambiare la password dell'utente.
|
|
||||||
user_updated: Informazioni aggiornate
|
user_updated: Informazioni aggiornate
|
||||||
rss_updated: Informazioni RSS aggiornate
|
rss_updated: Informazioni RSS aggiornate
|
||||||
tagging_rules_updated: Regole di etichettatura aggiornate
|
tagging_rules_updated: Regole di etichettatura aggiornate
|
||||||
|
|
|
@ -611,7 +611,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: 設定を保存しました。
|
config_saved: 設定を保存しました。
|
||||||
password_updated: パスワードを更新しました
|
password_updated: パスワードを更新しました
|
||||||
password_not_updated_demo: デモ モードでは、このユーザーのパスワードを変更できません。
|
|
||||||
user_updated: 情報を更新しました
|
user_updated: 情報を更新しました
|
||||||
rss_updated: RSS 情報を更新しました
|
rss_updated: RSS 情報を更新しました
|
||||||
tagging_rules_updated: タグ付けルールを更新しました
|
tagging_rules_updated: タグ付けルールを更新しました
|
||||||
|
|
|
@ -330,7 +330,6 @@ flashes:
|
||||||
feed_updated: 피드 정보가 업데이트되었습니다
|
feed_updated: 피드 정보가 업데이트되었습니다
|
||||||
tagging_rules_deleted: 태그 지정 규칙이 삭제되었습니다
|
tagging_rules_deleted: 태그 지정 규칙이 삭제되었습니다
|
||||||
tagging_rules_updated: 태그 지정 규칙이 업데이트되었습니다
|
tagging_rules_updated: 태그 지정 규칙이 업데이트되었습니다
|
||||||
password_not_updated_demo: 데모 모드에서는이 사용자의 암호를 변경할 수 없습니다.
|
|
||||||
password_updated: 비밀번호가 업데이트 되었습니다
|
password_updated: 비밀번호가 업데이트 되었습니다
|
||||||
ignore_origin_instance_rule:
|
ignore_origin_instance_rule:
|
||||||
notice:
|
notice:
|
||||||
|
|
|
@ -226,7 +226,6 @@ flashes:
|
||||||
tagging_rules_deleted: Etikettmerkingsregel slettet
|
tagging_rules_deleted: Etikettmerkingsregel slettet
|
||||||
tagging_rules_updated: Etikettmerkingsregler oppdatert
|
tagging_rules_updated: Etikettmerkingsregler oppdatert
|
||||||
user_updated: Informasjon oppdatert
|
user_updated: Informasjon oppdatert
|
||||||
password_not_updated_demo: I demonstrasjonsmodus kan du ikke endre passordet for denne brukeren.
|
|
||||||
password_updated: Passord oppdatert
|
password_updated: Passord oppdatert
|
||||||
config_saved: Oppsett lagret.
|
config_saved: Oppsett lagret.
|
||||||
annotations_reset: Anføringer tilbakestilt
|
annotations_reset: Anføringer tilbakestilt
|
||||||
|
|
|
@ -270,7 +270,6 @@ flashes:
|
||||||
tagging_rules_deleted: Labeling regel verwijderd
|
tagging_rules_deleted: Labeling regel verwijderd
|
||||||
tagging_rules_updated: Labeling regels geüpdatet
|
tagging_rules_updated: Labeling regels geüpdatet
|
||||||
rss_updated: RSS informatie geüpdatet
|
rss_updated: RSS informatie geüpdatet
|
||||||
password_not_updated_demo: In demonstratiemodus kan u geen wachtwoord wijzigen voor deze gebruiker.
|
|
||||||
entries_reset: Items gereset
|
entries_reset: Items gereset
|
||||||
tags_reset: Labels gereset
|
tags_reset: Labels gereset
|
||||||
annotations_reset: Annotaties gereset
|
annotations_reset: Annotaties gereset
|
||||||
|
|
|
@ -650,7 +650,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: Los paramètres son ben estats meses a jorn.
|
config_saved: Los paramètres son ben estats meses a jorn.
|
||||||
password_updated: Vòstre senhal es ben estat mes a jorn
|
password_updated: Vòstre senhal es ben estat mes a jorn
|
||||||
password_not_updated_demo: En demostracion, podètz pas cambiar lo senhal d'aqueste utilizaire.
|
|
||||||
user_updated: Vòstres informacions personnelas son ben estadas mesas a jorn
|
user_updated: Vòstres informacions personnelas son ben estadas mesas a jorn
|
||||||
rss_updated: La configuracion dels fluxes RSS es ben estada mesa a jorn
|
rss_updated: La configuracion dels fluxes RSS es ben estada mesa a jorn
|
||||||
tagging_rules_updated: Règlas misa a jorn
|
tagging_rules_updated: Règlas misa a jorn
|
||||||
|
|
|
@ -651,7 +651,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: Konfiguracja zapisana.
|
config_saved: Konfiguracja zapisana.
|
||||||
password_updated: Hasło zaktualizowane
|
password_updated: Hasło zaktualizowane
|
||||||
password_not_updated_demo: W trybie demonstracyjnym nie możesz zmienić hasła dla tego użytkownika.
|
|
||||||
user_updated: Informacje zaktualizowane
|
user_updated: Informacje zaktualizowane
|
||||||
rss_updated: Informacje RSS zaktualizowane
|
rss_updated: Informacje RSS zaktualizowane
|
||||||
tagging_rules_updated: Reguły tagowania zaktualizowane
|
tagging_rules_updated: Reguły tagowania zaktualizowane
|
||||||
|
|
|
@ -459,7 +459,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: 'Configiração salva.'
|
config_saved: 'Configiração salva.'
|
||||||
password_updated: 'Palavra-passe atualizada'
|
password_updated: 'Palavra-passe atualizada'
|
||||||
password_not_updated_demo: 'Em modo de demonstração, não pode alterar a palavra-passe deste utilizador.'
|
|
||||||
rss_updated: 'Informação de RSS atualizada'
|
rss_updated: 'Informação de RSS atualizada'
|
||||||
tagging_rules_updated: 'Regras de tags atualizadas'
|
tagging_rules_updated: 'Regras de tags atualizadas'
|
||||||
tagging_rules_deleted: 'Regra de tag apagada'
|
tagging_rules_deleted: 'Regra de tag apagada'
|
||||||
|
|
|
@ -177,7 +177,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: 'Configurație salvată.'
|
config_saved: 'Configurație salvată.'
|
||||||
password_updated: 'Parolă actualizată'
|
password_updated: 'Parolă actualizată'
|
||||||
password_not_updated_demo: ""
|
|
||||||
user_updated: 'Informație actualizată'
|
user_updated: 'Informație actualizată'
|
||||||
feed_updated: 'Informație RSS actualizată'
|
feed_updated: 'Informație RSS actualizată'
|
||||||
entry:
|
entry:
|
||||||
|
|
|
@ -622,7 +622,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: 'Настройки сохранены.'
|
config_saved: 'Настройки сохранены.'
|
||||||
password_updated: 'Пароль обновлен'
|
password_updated: 'Пароль обновлен'
|
||||||
password_not_updated_demo: "В режиме демонстрации нельзя изменять пароль для этого пользователя."
|
|
||||||
user_updated: 'Информация обновлена'
|
user_updated: 'Информация обновлена'
|
||||||
rss_updated: 'RSS информация обновлена'
|
rss_updated: 'RSS информация обновлена'
|
||||||
tagging_rules_updated: 'Правила тегировния обновлены'
|
tagging_rules_updated: 'Правила тегировния обновлены'
|
||||||
|
|
|
@ -532,7 +532,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: 'กำหนดการบันทึก'
|
config_saved: 'กำหนดการบันทึก'
|
||||||
password_updated: 'อัปเดตรหัสผ่าน'
|
password_updated: 'อัปเดตรหัสผ่าน'
|
||||||
password_not_updated_demo: ""
|
|
||||||
user_updated: 'อัปเดตข้อมูล'
|
user_updated: 'อัปเดตข้อมูล'
|
||||||
feed_updated: 'อัปเดตข้อมูล RSS'
|
feed_updated: 'อัปเดตข้อมูล RSS'
|
||||||
tagging_rules_updated: 'อัปเดตการแท็กข้อบังคับ'
|
tagging_rules_updated: 'อัปเดตการแท็กข้อบังคับ'
|
||||||
|
|
|
@ -571,7 +571,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: Yapılandırma ayarları kaydedildi.
|
config_saved: Yapılandırma ayarları kaydedildi.
|
||||||
password_updated: Şifre güncellendi
|
password_updated: Şifre güncellendi
|
||||||
password_not_updated_demo: Tanıtım demo modunda bu kullanıcı için parolanızı değiştiremezsiniz.
|
|
||||||
user_updated: Bilgiler güncellendi
|
user_updated: Bilgiler güncellendi
|
||||||
rss_updated: RSS bilgiler güncellendi
|
rss_updated: RSS bilgiler güncellendi
|
||||||
tagging_rules_updated: Etiketleme kuralları güncellendi
|
tagging_rules_updated: Etiketleme kuralları güncellendi
|
||||||
|
|
|
@ -586,7 +586,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: Конфігурацію збережено.
|
config_saved: Конфігурацію збережено.
|
||||||
password_updated: Пароль оновлено
|
password_updated: Пароль оновлено
|
||||||
password_not_updated_demo: У режимі демонстрації ви не можете змінити пароль цього користувача.
|
|
||||||
user_updated: Інформацію оновлено
|
user_updated: Інформацію оновлено
|
||||||
feed_updated: Інформацію про RSS оновлено
|
feed_updated: Інформацію про RSS оновлено
|
||||||
tagging_rules_updated: Правила тегування оновлено
|
tagging_rules_updated: Правила тегування оновлено
|
||||||
|
|
|
@ -647,7 +647,6 @@ flashes:
|
||||||
notice:
|
notice:
|
||||||
config_saved: '配置已保存。'
|
config_saved: '配置已保存。'
|
||||||
password_updated: '密码已更新'
|
password_updated: '密码已更新'
|
||||||
password_not_updated_demo: "在演示模式下,你不能更改此用户的密码。"
|
|
||||||
user_updated: '信息已更新'
|
user_updated: '信息已更新'
|
||||||
feed_updated: '订阅源信息已更新'
|
feed_updated: '订阅源信息已更新'
|
||||||
tagging_rules_updated: '标签规则已更新'
|
tagging_rules_updated: '标签规则已更新'
|
||||||
|
|
Loading…
Reference in a new issue