]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Merge remote-tracking branch 'origin/master' into 2.2
authorJeremy Benoist <jeremy.benoist@gmail.com>
Tue, 11 Oct 2016 19:01:30 +0000 (21:01 +0200)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Tue, 11 Oct 2016 19:01:30 +0000 (21:01 +0200)
1  2 
src/Wallabag/CoreBundle/Command/InstallCommand.php
src/Wallabag/CoreBundle/Resources/translations/messages.da.yml
src/Wallabag/CoreBundle/Resources/translations/messages.de.yml
src/Wallabag/CoreBundle/Resources/translations/messages.en.yml
src/Wallabag/CoreBundle/Resources/translations/messages.es.yml
src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml
src/Wallabag/CoreBundle/Resources/translations/messages.it.yml
src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml
src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml
src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml
src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml

index 42982e4a42240af3f9ed3647cc0866922131197c,8e438229f9584d788b299ce51d634939e791eac2..591107821c854345f8e133fbb6d219f19b27fffa
@@@ -9,7 -9,7 +9,7 @@@ use Symfony\Component\Console\Helper\Ta
  use Symfony\Component\Console\Input\ArrayInput;
  use Symfony\Component\Console\Input\InputInterface;
  use Symfony\Component\Console\Input\InputOption;
- use Symfony\Component\Console\Output\NullOutput;
+ use Symfony\Component\Console\Output\BufferedOutput;
  use Symfony\Component\Console\Output\OutputInterface;
  use Symfony\Component\Console\Question\ConfirmationQuestion;
  use Symfony\Component\Console\Question\Question;
@@@ -77,7 -77,7 +77,7 @@@ class InstallCommand extends ContainerA
  
          // testing if database driver exists
          $fulfilled = true;
 -        $label = '<comment>PDO Driver</comment>';
 +        $label = '<comment>PDO Driver (%s)</comment>';
          $status = '<info>OK!</info>';
          $help = '';
  
@@@ -87,7 -87,7 +87,7 @@@
              $help = 'Database driver "'.$this->getContainer()->getParameter('database_driver').'" is not installed.';
          }
  
 -        $rows[] = [$label, $status, $help];
 +        $rows[] = [sprintf($label, $this->getContainer()->getParameter('database_driver')), $status, $help];
  
          // testing if connection to the database can be etablished
          $label = '<comment>Database connection</comment>';
@@@ -97,7 -97,8 +97,8 @@@
          try {
              $this->getContainer()->get('doctrine')->getManager()->getConnection()->connect();
          } catch (\Exception $e) {
-             if (false === strpos($e->getMessage(), 'Unknown database')) {
+             if (false === strpos($e->getMessage(), 'Unknown database')
+                 && false === strpos($e->getMessage(), 'database "'.$this->getContainer()->getParameter('database_name').'" does not exist')) {
                  $fulfilled = false;
                  $status = '<error>ERROR!</error>';
                  $help = 'Can\'t connect to the database: '.$e->getMessage();
          }
  
          $this->getApplication()->setAutoExit(false);
-         $exitCode = $this->getApplication()->run(new ArrayInput($parameters), new NullOutput());
+         $output = new BufferedOutput();
+         $exitCode = $this->getApplication()->run(new ArrayInput($parameters), $output);
  
          if (0 !== $exitCode) {
              $this->getApplication()->setAutoExit(true);
  
-             $errorMessage = sprintf('The command "%s" terminated with an error code: %u.', $command, $exitCode);
-             $this->defaultOutput->writeln("<error>$errorMessage</error>");
-             $exception = new \Exception($errorMessage, $exitCode);
+             $this->defaultOutput->writeln('');
+             $this->defaultOutput->writeln('<error>The command "'.$command.'" generates some errors: </error>');
+             $this->defaultOutput->writeln($output->fetch());
  
-             throw $exception;
+             die();
          }
  
          // PDO does not always close the connection after Doctrine commands.
index 2de5d7bd4ecc323609c25c699fa7a24d604efe74,bb23b5fedfbce9b8090e95aadbd993496faf51c4..f5548a217a42b0e553c7a0cc85a6fe804a9d858d
@@@ -88,11 -88,6 +88,11 @@@ config
          name_label: 'Navn'
          email_label: 'Emailadresse'
          # twoFactorAuthentication_label: 'Two factor authentication'
 +        delete:
 +            # title: Delete my account (danger zone !)
 +            # description: If you remove your account, ALL your articles, ALL your tags, ALL your annotations and your account will be PERMANENTLY removed (it can't be UNDONE). You'll then be logged out.
 +            # confirm: Are you really sure? (it can't be UNDONE)
 +            # button: Delete my account
      form_password:
          old_password_label: 'Gammel adgangskode'
          new_password_label: 'Ny adgangskode'
@@@ -200,7 -195,7 +200,7 @@@ entry
                  description: 'Vises artiklen forkert?'
          edit_title: 'Rediger titel'
          original_article: 'original'
-         # annotations_on_the_entry: '{0} No annotations|{1} One annotation|]1,Inf[ %nbAnnotations% annotations'
+         # annotations_on_the_entry: '{0} No annotations|{1} One annotation|]1,Inf[ %count% annotations'
          created_at: 'Oprettelsesdato'
      new:
          page_title: 'Gem ny artikel'
index 515d43a01e97b8ccb6ce1ac4f530f63cba13b250,079cfece9bbe35f9ea62f62378c97cb7933e15d1..9edd7fb702a5693c8dc19c689ea56a1c2aa8d039
@@@ -88,11 -88,6 +88,11 @@@ config
          name_label: 'Name'
          email_label: 'E-Mail-Adresse'
          twoFactorAuthentication_label: 'Zwei-Faktor-Authentifizierung'
 +        delete:
 +            # title: Delete my account (danger zone !)
 +            # description: If you remove your account, ALL your articles, ALL your tags, ALL your annotations and your account will be PERMANENTLY removed (it can't be UNDONE). You'll then be logged out.
 +            # confirm: Are you really sure? (it can't be UNDONE)
 +            # button: Delete my account
      form_password:
          old_password_label: 'Altes Kennwort'
          new_password_label: 'Neues Kennwort'
@@@ -200,7 -195,7 +200,7 @@@ entry
                  description: 'Erscheint dieser Artikel falsch?'
          edit_title: 'Titel ändern'
          original_article: 'original'
-         annotations_on_the_entry: '{0} Keine Anmerkungen|{1} Eine Anmerkung|]1,Inf[ %nbAnnotations% Anmerkungen'
+         annotations_on_the_entry: '{0} Keine Anmerkungen|{1} Eine Anmerkung|]1,Inf[ %count% Anmerkungen'
          created_at: 'Erstellungsdatum'
      new:
          page_title: 'Neuen Artikel speichern'
index 43f5a95088e0fd5a4d14e87c337f2e79f96539ea,34a6f74e093b124c6500265d878f712bd48fdb4f..b86145a0f05c0a45a9b424a03fc1a43d5c7d884a
@@@ -88,11 -88,6 +88,11 @@@ config
          name_label: 'Name'
          email_label: 'Email'
          twoFactorAuthentication_label: 'Two factor authentication'
 +        delete:
 +            title: Delete my account (danger zone !)
 +            description: If you remove your account, ALL your articles, ALL your tags, ALL your annotations and your account will be PERMANENTLY removed (it can't be UNDONE). You'll then be logged out.
 +            confirm: Are you really sure? (it can't be UNDONE)
 +            button: Delete my account
      form_password:
          old_password_label: 'Current password'
          new_password_label: 'New password'
@@@ -200,7 -195,7 +200,7 @@@ entry
                  description: 'Does this article appear wrong?'
          edit_title: 'Edit title'
          original_article: 'original'
-         annotations_on_the_entry: '{0} No annotations|{1} One annotation|]1,Inf[ %nbAnnotations% annotations'
+         annotations_on_the_entry: '{0} No annotations|{1} One annotation|]1,Inf[ %count% annotations'
          created_at: 'Creation date'
      new:
          page_title: 'Save new entry'
index adeab2b081552dc8b911734cadb9cd5608808df1,29f0676ee07a91aaaf4f68fc28e9f81776329cee..b7187f50a20eb6f6bbb2c3ecd278af9cf7c5dd2a
@@@ -88,11 -88,6 +88,11 @@@ config
          name_label: 'Nombre'
          email_label: 'Direccion e-mail'
          twoFactorAuthentication_label: 'Autentificación de dos factores'
 +        delete:
 +            # title: Delete my account (danger zone !)
 +            # description: If you remove your account, ALL your articles, ALL your tags, ALL your annotations and your account will be PERMANENTLY removed (it can't be UNDONE). You'll then be logged out.
 +            # confirm: Are you really sure? (it can't be UNDONE)
 +            # button: Delete my account
      form_password:
          old_password_label: 'Contraseña actual'
          new_password_label: 'Nueva contraseña'
@@@ -200,7 -195,7 +200,7 @@@ entry
                  description: '¿Este artículo no se muestra bien?'
          edit_title: 'Modificar el título'
          original_article: 'original'
-         annotations_on_the_entry: '{0} Sin anotaciones|{1} Una anotación|]1,Inf[ %nbAnnotations% anotaciones'
+         annotations_on_the_entry: '{0} Sin anotaciones|{1} Una anotación|]1,Inf[ %count% anotaciones'
          created_at: 'Fecha de creación'
      new:
          page_title: 'Guardar un nuevo artículo'
index 1c32a77c8561aba53e572f8ad443d6a272ab4bc1,55453b6cee7b148faecae1ed2ef6175d161d0d1c..8d19ccb1f39df12660e6621433190416d74bd728
@@@ -88,11 -88,6 +88,11 @@@ config
          name_label: 'Nom'
          email_label: 'Adresse e-mail'
          twoFactorAuthentication_label: 'Double authentification'
 +        delete:
 +            title: Supprimer mon compte (attention danger !)
 +            description: Si vous confirmez la suppression de votre compte, TOUS les articles, TOUS les tags, TOUTES les annotations et votre compte seront DÉFINITIVEMENT supprimé (c'est IRRÉVERSIBLE). Vous serez ensuite déconnecté.
 +            confirm: Vous êtes vraiment sûr ? (c'est IRRÉVERSIBLE !)
 +            button: 'Supprimer mon compte'
      form_password:
          old_password_label: 'Mot de passe actuel'
          new_password_label: 'Nouveau mot de passe'
@@@ -200,7 -195,7 +200,7 @@@ entry
                  description: "Est-ce que cet article s'affiche mal ?"
          edit_title: 'Modifier le titre'
          original_article: 'original'
-         annotations_on_the_entry: '{0} Aucune annotation|{1} Une annotation|]1,Inf[ %nbAnnotations% annotations'
+         annotations_on_the_entry: '{0} Aucune annotation|{1} Une annotation|]1,Inf[ %count% annotations'
          created_at: 'Date de création'
      new:
          page_title: 'Sauvegarder un nouvel article'
index f662bd55eb8b4812c730eb5ad504267c9eeed357,67205c6d1694ddec19041f67f85796831e8937b9..4d3452ea7762131b0c3e8b0c2210453219e8a02f
@@@ -88,11 -88,6 +88,11 @@@ config
          name_label: 'Nome'
          email_label: 'E-mail'
          twoFactorAuthentication_label: 'Two factor authentication'
 +        delete:
 +            # title: Delete my account (danger zone !)
 +            # description: If you remove your account, ALL your articles, ALL your tags, ALL your annotations and your account will be PERMANENTLY removed (it can't be UNDONE). You'll then be logged out.
 +            # confirm: Are you really sure? (it can't be UNDONE)
 +            # button: Delete my account
      form_password:
          old_password_label: 'Password corrente'
          new_password_label: 'Nuova password'
@@@ -200,7 -195,7 +200,7 @@@ entry
                  description: 'Questo contenuto viene visualizzato male?'
          edit_title: 'Modifica titolo'
          original_article: 'originale'
-         annotations_on_the_entry: '{0} Nessuna annotazione|{1} Una annotazione|]1,Inf[ %nbAnnotations% annotazioni'
+         annotations_on_the_entry: '{0} Nessuna annotazione|{1} Una annotazione|]1,Inf[ %count% annotazioni'
          created_at: 'Data di creazione'
      new:
          page_title: 'Salva un nuovo contenuto'
index d81fb05ecd5c41fba25a6d0222095865f53352f9,25e5f05a1b0f1eff2421298d59341fa589dd5ed9..f14213c606a8c85882452ee6f88e5b3e81e191a6
@@@ -25,13 -25,13 +25,13 @@@ menu
          internal_settings: 'Configuracion interna'
          import: 'Importar'
          howto: 'Ajuda'
 -        developer: 'Desvolopador'
 +        developer: 'Desvolopaire'
          logout: 'Desconnexion'
          about: 'A prepaus'
          search: 'Cercar'
          save_link: 'Enregistrar un novèl article'
          back_to_unread: 'Tornar als articles pas legits'
 -        # users_management: 'Users management'
 +        users_management: 'Gestion dels utilizaires'
      top:
          add_new_entry: 'Enregistrar un novèl article'
          search: 'Cercar'
@@@ -46,7 -46,7 +46,7 @@@ footer
          social: 'Social'
          powered_by: 'propulsat per'
          about: 'A prepaus'
 -    # stats: Since %user_creation% you read %nb_archives% articles. That is about %per_day% a day!
 +    stats: "Dempuèi %user_creation% avètz legit %nb_archives% articles. Es a l'entorn de %per_day% per jorn !"
  
  config:
      page_title: 'Configuracion'
          name_label: 'Nom'
          email_label: 'Adreça de corrièl'
          twoFactorAuthentication_label: 'Dobla autentificacion'
 +        delete:
 +            # title: Delete my account (danger zone !)
 +            # description: If you remove your account, ALL your articles, ALL your tags, ALL your annotations and your account will be PERMANENTLY removed (it can't be UNDONE). You'll then be logged out.
 +            # confirm: Are you really sure? (it can't be UNDONE)
 +            # button: Delete my account
      form_password:
          old_password_label: 'Senhal actual'
          new_password_label: 'Senhal novèl'
          if_label: 'se'
          then_tag_as_label: 'alara atribuir las etiquetas'
          delete_rule_label: 'suprimir'
 -        # edit_rule_label: 'edit'
 +        edit_rule_label: 'modificar'
          rule_label: 'Règla'
          tags_label: 'Etiquetas'
          faq:
@@@ -200,7 -195,7 +200,7 @@@ entry
                  description: "Marca mal la presentacion d'aqueste article ?"
          edit_title: 'Modificar lo títol'
          original_article: 'original'
-         annotations_on_the_entry: "{0} Pas cap d'anotacion|{1} Una anotacion|]1,Inf[ %nbAnnotations% anotacions"
+         annotations_on_the_entry: "{0} Pas cap d'anotacion|{1} Una anotacion|]1,Inf[ %count% anotacions"
          created_at: 'Data de creacion'
      new:
          page_title: 'Enregistrar un novèl article'
          is_public_label: 'Public'
          save_label: 'Enregistrar'
      public:
 -        # shared_by_wallabag: "This article has been shared by <a href='%wallabag_instance%'>wallabag</a>"
 +        shared_by_wallabag: "Aqueste article es estat partejat per <a href='%wallabag_instance%'>wallabag</a>"
  
  about:
      page_title: 'A prepaus'
@@@ -270,14 -265,14 +270,14 @@@ howto
  
  quickstart:
      page_title: 'Per ben començar'
 -    # more: 'More…'
 +    more: 'Mai…'
      intro:
          title: 'Benvenguda sus wallabag !'
          paragraph_1: "Anem vos guidar per far lo torn de la proprietat e vos presentar unas fonccionalitats que vos poirián interessar per vos apropriar aquesta aisina."
          paragraph_2: 'Seguètz-nos '
      configure:
 -        title: "Configuratz l'aplicacio"
 -        # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.'
 +        title: "Configuratz l'aplicacion"
 +        description: "Per fin d'aver una aplicacion que vos va ben, anatz veire la configuracion de wallabag."
          language: "Cambiatz la lenga e l'estil de l'aplicacion"
          rss: 'Activatz los fluxes RSS'
          tagging_rules: 'Escrivètz de règlas per classar automaticament vòstres articles'
          import: 'Configurar los impòrt'
      first_steps:
          title: 'Primièrs passes'
 -        # description: "Now wallabag is well configured, it's time to archive the web. You can click on the top right sign + to add a link."
 +        description: "Ara wallabag es ben configurat, es lo moment d'archivar lo web. Podètz clicar sul signe + a man drecha amont per ajustar un ligam."
          new_article: 'Ajustatz vòstre primièr article'
          unread_articles: 'E racaptatz-lo !'
      migrate:
          readability: 'Migrar dempuèi Readability'
          instapaper: 'Migrar dempuèi Instapaper'
      developer:
 -        title: 'Pels desvolopadors'
 -        # description: 'We also thought to the developers: Docker, API, translations, etc.'
 +        title: 'Pels desvolopaires'
 +        description: 'Avèm tanben pensat als desvolopaires : Docker, API, traduccions, etc.'
          create_application: 'Crear vòstra aplicacion tèrça'
 -        # use_docker: 'Use Docker to install wallabag'
 +        use_docker: 'Utilizar Docker per installar wallabag'
      docs:
          title: 'Documentacion complèta'
 -        # description: "There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
 -        annotate: 'Anotatar vòstre article'
 +        description: "I a un fum de fonccionalitats dins wallabag. Esitetz pas a legir lo manual per las conéisser e aprendre a las utilizar."
 +        annotate: 'Anotar vòstre article'
          export: 'Convertissètz vòstres articles en ePub o en PDF'
          search_filters: "Aprenètz a utilizar lo motor de recèrca e los filtres per retrobar l'article que vos interèssa"
          fetching_errors: "Qué far se mon article es pas recuperat coma cal ?"
@@@ -395,7 -390,7 +395,7 @@@ developer
          warn_message_2: "Se suprimissètz un client, totas las aplicacions que l'emplegan foncionaràn pas mai amb vòstre compte wallabag."
          action: 'Suprimir aqueste client'
      client:
 -        page_title: 'Desvlopador > Novèl client'
 +        page_title: 'Desvolopaire > Novèl client'
          page_description: "Anatz crear un novèl client. Mercés de cumplir l'url de redireccion cap a vòstra aplicacion."
          form:
              name_label: "Nom del client"
              save_label: 'Crear un novèl client'
          action_back: 'Retorn'
      client_parameter:
 -        page_title: 'Desvolopador > Los paramètres de vòstre client'
 +        page_title: 'Desvolopaire > Los paramètres de vòstre client'
          page_description: 'Vaquí los paramètres de vòstre client'
          field_name: 'Nom del client'
          field_id: 'ID Client'
          back: 'Retour'
          read_howto: 'Legir "cossí crear ma primièra aplicacion"'
      howto:
 -        page_title: 'Desvolopador > Cossí crear ma primièra aplicacion'
 +        page_title: 'Desvolopaire > Cossí crear ma primièra aplicacion'
          description:
              paragraph_1: "Las comandas seguentas utilizan la <a href=\"https://github.com/jkbrzt/httpie\">bibliotèca HTTPie</a>. Asseguratz-vos que siasqueòu installadas abans de l'utilizar."
              paragraph_2: "Vos cal un geton per escambiar entre vòstra aplicacion e l'API de wallabar."
          back: 'Retorn'
  
  user:
 -    # page_title: Users management
 -    # new_user: Create a new user
 -    # edit_user: Edit an existing user
 -    # description: "Here you can manage all users (create, edit and delete)"
 -    list:
 -    #     actions: Actions
 -    #     edit_action: Edit
 -    #     yes: Yes
 -    #     no: No
 -    #     create_new_one: Create a new user
 +    page_title: 'Gestion dels utilizaires'
 +    new_user: 'Crear un novèl utilizaire'
 +    edit_user: 'Modificar un utilizaire existent'
 +    description: "Aquí podètz gerir totes los utilizaires (crear, modificar e suprimir)"
 +    list:
 +         actions: 'Accions'
 +         edit_action: 'Modificar'
 +         yes: 'Òc'
 +         no: 'Non'
 +         create_new_one: 'Crear un novèl utilizaire'
      form:
          username_label: "Nom d'utilizaire"
 -        # name_label: 'Name'
 +        name_label: 'Nom'
          password_label: 'Senhal'
          repeat_new_password_label: 'Confirmatz vòstre novèl senhal'
          plain_password_label: 'Senhal en clar'
          email_label: 'Adreça de corrièl'
 -        # enabled_label: 'Enabled'
 -        # locked_label: 'Locked'
 -        # last_login_label: 'Last login'
 -        # twofactor_label: Two factor authentication
 -        # save: Save
 -        # delete: Delete
 -        # delete_confirm: Are you sure?
 -        # back_to_list: Back to list
 +        enabled_label: 'Actiu'
 +        locked_label: 'Varrolhat'
 +        last_login_label: 'Darrièra connexion'
 +        twofactor_label: 'Autentificacion doble-factor'
 +        save: 'Enregistrar'
 +        delete: 'Suprimir'
 +        delete_confirm: 'Sètz segur ?'
 +        back_to_list: 'Tornar a la lista'
  
  flashes:
      config:
              rss_updated: 'La configuracion dels fluxes RSS es ben estada mesa a jorn'
              tagging_rules_updated: 'Règlas misa a jorn'
              tagging_rules_deleted: 'Règla suprimida'
 -            user_added: 'Utilizaire "%username%" apondut'
 +            user_added: 'Utilizaire "%username%" ajustat'
              rss_token_updated: 'Geton RSS mes a jorn'
      entry:
          notice:
              entry_reloaded_failed: "L'article es estat cargat de nòu mai la recuperacion del contengut a fracassat"
              entry_archived: 'Article marcat coma legit'
              entry_unarchived: 'Article marcat coma pas legit'
 -            entry_starred: 'Article apondut dins los favorits'
 +            entry_starred: 'Article ajustat dins los favorits'
              entry_unstarred: 'Article quitat dels favorits'
              entry_deleted: 'Article suprimit'
      tag:
          notice:
 -            tag_added: 'Etiqueta aponduda'
 +            tag_added: 'Etiqueta ajustada'
      import:
          notice:
              failed: "L'importacion a fracassat, mercés de tornar ensajar"
index 9877d59a083b4a7a4232cbb453c08633a4975343,392f9c19456cbaf8a5ec746e82321663b522f789..a2fe13db283ed6ab20c8e3660267bd96db75def1
@@@ -88,11 -88,6 +88,11 @@@ config
          name_label: 'Nazwa'
          email_label: 'Adres email'
          twoFactorAuthentication_label: 'Autoryzacja dwuetapowa'
 +        delete:
 +            # title: Delete my account (danger zone !)
 +            # description: If you remove your account, ALL your articles, ALL your tags, ALL your annotations and your account will be PERMANENTLY removed (it can't be UNDONE). You'll then be logged out.
 +            # confirm: Are you really sure? (it can't be UNDONE)
 +            # button: Delete my account
      form_password:
          old_password_label: 'Stare hasło'
          new_password_label: 'Nowe hasło'
@@@ -200,7 -195,7 +200,7 @@@ entry
                  description: 'Czy ten artykuł wygląda źle?'
          edit_title: 'Edytuj tytuł'
          original_article: 'oryginalny'
-         annotations_on_the_entry: '{0} Nie ma adnotacji |{1} Jedna adnotacja |]1,Inf[ %nbAnnotations% adnotacji'
+         annotations_on_the_entry: '{0} Nie ma adnotacji |{1} Jedna adnotacja |]1,Inf[ %count% adnotacji'
          created_at: 'Czas stworzenia'
      new:
          page_title: 'Zapisz nowy wpis'
index 83246ed3f5bb4553e01a46d2e98d1864f535734a,152d5020dd517b310d4e5d76f46b7ef7377e1ef6..29db9c3e473d088f778b21f328afc7f001d9df7d
@@@ -88,11 -88,6 +88,11 @@@ config
          name_label: 'Nume'
          email_label: 'E-mail'
          # twoFactorAuthentication_label: 'Two factor authentication'
 +        delete:
 +            # title: Delete my account (danger zone !)
 +            # description: If you remove your account, ALL your articles, ALL your tags, ALL your annotations and your account will be PERMANENTLY removed (it can't be UNDONE). You'll then be logged out.
 +            # confirm: Are you really sure? (it can't be UNDONE)
 +            # button: Delete my account
      form_password:
          old_password_label: 'Parola veche'
          new_password_label: 'Parola nouă'
@@@ -200,7 -195,7 +200,7 @@@ entry
                  description: 'Îți pare ciudat articolul?'
          edit_title: 'Editează titlul'
          original_article: 'original'
-         # annotations_on_the_entry: '{0} No annotations|{1} One annotation|]1,Inf[ %nbAnnotations% annotations'
+         # annotations_on_the_entry: '{0} No annotations|{1} One annotation|]1,Inf[ %count% annotations'
          created_at: 'Data creării'
      new:
          page_title: 'Salvează un nou articol'
index 24dd6ff8c09ee7ba7576a92f33834e3b89d4e9dc,a2eca59ba1c8b43f2a7b7e3c5f575ba70e86df8b..41e8e576e8060210c2f5b53ee7024c4c7a32fd13
@@@ -88,11 -88,6 +88,11 @@@ config
          name_label: 'İsim'
          email_label: 'E-posta'
          twoFactorAuthentication_label: 'İki adımlı doğrulama'
 +        delete:
 +            # title: Delete my account (danger zone !)
 +            # description: If you remove your account, ALL your articles, ALL your tags, ALL your annotations and your account will be PERMANENTLY removed (it can't be UNDONE). You'll then be logged out.
 +            # confirm: Are you really sure? (it can't be UNDONE)
 +            # button: Delete my account
      form_password:
          old_password_label: 'Eski şifre'
          new_password_label: 'Yeni şifre'
@@@ -199,7 -194,7 +199,7 @@@ entry
                  description: 'Bu makalede herhangi bir yanlışlık mı var?'
          edit_title: 'Başlığı düzenle'
          original_article: 'orijinal'
-         # annotations_on_the_entry: '{0} No annotations|{1} One annotation|]1,Inf[ %nbAnnotations% annotations'
+         # annotations_on_the_entry: '{0} No annotations|{1} One annotation|]1,Inf[ %count% annotations'
          created_at: 'Oluşturulma tarihi'
      new:
          page_title: 'Yeni makaleyi kaydet'