From 0e313351248e01096078dbd7cebce0ab824630ee Mon Sep 17 00:00:00 2001 From: briri Date: Tue, 10 Aug 2021 08:27:39 -0700 Subject: [PATCH 1/6] fix for issue with api v0 after dropping the old grant_number field from plans --- app/views/api/v0/plans/index.json.jbuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/api/v0/plans/index.json.jbuilder b/app/views/api/v0/plans/index.json.jbuilder index a2f2aec735..516c9ef98d 100644 --- a/app/views/api/v0/plans/index.json.jbuilder +++ b/app/views/api/v0/plans/index.json.jbuilder @@ -8,7 +8,7 @@ json.prettify! json.array! @plans.each do |plan| json.id plan.id json.title plan.title - json.grant_number plan.grant_number + json.grant_number plan.grant&.value json.last_updated plan.updated_at json.creation_date plan.created_at json.test_plan plan.is_test? From 7123fba3ebe56876d600ed6a500316749990138e Mon Sep 17 00:00:00 2001 From: Ray Carrick Date: Thu, 26 Aug 2021 13:08:56 +0100 Subject: [PATCH 2/6] change recaptcha config test in create account --- app/controllers/registrations_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/registrations_controller.rb b/app/controllers/registrations_controller.rb index 298525d6b1..352fa8481b 100644 --- a/app/controllers/registrations_controller.rb +++ b/app/controllers/registrations_controller.rb @@ -100,7 +100,7 @@ def create end # Determine if reCAPTCHA is enabled and if so verify it - use_recaptcha = Rails.configuration.x.application.use_recaptcha || false + use_recaptcha = Rails.configuration.x.recaptcha.enabled || false if (!use_recaptcha || verify_recaptcha(model: resource)) && resource.save if resource.active_for_authentication? set_flash_message :notice, :signed_up if is_navigational_format? From 37f2cba1e999fedcff14c22e413df102abb326d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Sep 2021 23:48:01 +0000 Subject: [PATCH 3/6] Bump better_errors from 2.7.1 to 2.8.0 Bumps [better_errors](https://github.com/BetterErrors/better_errors) from 2.7.1 to 2.8.0. - [Release notes](https://github.com/BetterErrors/better_errors/releases) - [Commits](https://github.com/BetterErrors/better_errors/compare/v2.7.1...v2.8.0) --- updated-dependencies: - dependency-name: better_errors dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index f8f570c546..432da7e450 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -55,7 +55,7 @@ GEM autoprefixer-rails (9.7.6) execjs bcrypt (3.1.13) - better_errors (2.7.1) + better_errors (2.8.0) coderay (>= 1.0.0) erubi (>= 1.0.0) rack (>= 0.9.0) @@ -123,7 +123,7 @@ GEM dragonfly-s3_data_store (1.3.0) dragonfly (~> 1.0) fog-aws - erubi (1.9.0) + erubi (1.10.0) excon (0.75.0) execjs (2.7.0) factory_bot (6.0.1) From c9edc2d1e344f85a8bf08ad0b3fe11d08a1e0535 Mon Sep 17 00:00:00 2001 From: Ray Carrick Date: Tue, 21 Sep 2021 12:56:21 +0100 Subject: [PATCH 4/6] Update new.html.erb fixes: https://github.com/DigitalCurationCentre/DMPonline-Service/issues/622 Org select not working when creating a contributor. --- app/views/contributors/new.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/contributors/new.html.erb b/app/views/contributors/new.html.erb index 9286269391..85c0454d2f 100644 --- a/app/views/contributors/new.html.erb +++ b/app/views/contributors/new.html.erb @@ -17,7 +17,7 @@
<%= form_for @contributor, url: plan_contributors_path do |f| %> <%= render partial: "contributors/form", - locals: { form: f, plan: @plan, contributor: @contributor, orgs: @orgs, org_partial: @org_partial } %> + locals: { form: f, plan: @plan, contributor: @contributor, orgs: @all_orgs, org_partial: @org_partial } %> <% end %>
From f685ff39cfff9f7bc91da426700f2de9f77a4985 Mon Sep 17 00:00:00 2001 From: Ray Carrick Date: Tue, 21 Sep 2021 12:58:13 +0100 Subject: [PATCH 5/6] Update edit.html.erb Change mirriors that to new.html.erb --- app/views/contributors/edit.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/contributors/edit.html.erb b/app/views/contributors/edit.html.erb index e47ee1213b..59c4b37706 100644 --- a/app/views/contributors/edit.html.erb +++ b/app/views/contributors/edit.html.erb @@ -18,7 +18,7 @@ <%= form_for @contributor, url: plan_contributor_path(@plan, @contributor), html: { method: :put } do |f| %> <%= render partial: "contributors/form", - locals: { form: f, plan: @plan, contributor: @contributor, orgs: @orgs, org_partial: @org_partial } %> + locals: { form: f, plan: @plan, contributor: @contributor, orgs: @all_orgs, org_partial: @org_partial } %> <% end %> From 76edce45f78643219b3c664cf932540fb18fda78 Mon Sep 17 00:00:00 2001 From: Ray Carrick Date: Fri, 1 Oct 2021 12:26:13 +0100 Subject: [PATCH 6/6] translation sync 1st Oct 2021 --- config/locale/app.pot | 5 +++-- config/locale/de/LC_MESSAGES/app.mo | Bin 144745 -> 144745 bytes config/locale/de/app.po | 5 +++-- config/locale/en_CA/LC_MESSAGES/app.mo | Bin 630 -> 630 bytes config/locale/en_CA/app.po | 5 +++-- config/locale/en_GB/LC_MESSAGES/app.mo | Bin 1916 -> 1916 bytes config/locale/en_GB/app.po | 5 +++-- config/locale/en_US/LC_MESSAGES/app.mo | Bin 21173 -> 21173 bytes config/locale/en_US/app.po | 5 +++-- config/locale/es/LC_MESSAGES/app.mo | Bin 141384 -> 141384 bytes config/locale/es/app.po | 5 +++-- config/locale/fi/LC_MESSAGES/app.mo | Bin 137216 -> 137216 bytes config/locale/fi/app.po | 5 +++-- config/locale/fr_CA/LC_MESSAGES/app.mo | Bin 139298 -> 139298 bytes config/locale/fr_CA/app.po | 5 +++-- config/locale/fr_FR/LC_MESSAGES/app.mo | Bin 144558 -> 144558 bytes config/locale/fr_FR/app.po | 5 +++-- config/locale/pt_BR/LC_MESSAGES/app.mo | Bin 139922 -> 139922 bytes config/locale/pt_BR/app.po | 5 +++-- config/locale/sv_FI/LC_MESSAGES/app.mo | Bin 136464 -> 136464 bytes config/locale/sv_FI/app.po | 5 +++-- config/locale/tr_TR/LC_MESSAGES/app.mo | Bin 137145 -> 137161 bytes config/locale/tr_TR/app.po | 7 ++++--- config/locales/.translation_io | 2 +- config/locales/translation.de.yml | 9 --------- config/locales/translation.en-CA.yml | 3 --- config/locales/translation.en-GB.yml | 3 --- config/locales/translation.en-US.yml | 3 --- config/locales/translation.es.yml | 10 ---------- config/locales/translation.fi.yml | 7 ------- config/locales/translation.fr-CA.yml | 11 ----------- config/locales/translation.fr-FR.yml | 11 ----------- config/locales/translation.pt-BR.yml | 12 ------------ config/locales/translation.sv-FI.yml | 10 ---------- config/locales/translation.tr-TR.yml | 8 -------- 35 files changed, 38 insertions(+), 113 deletions(-) diff --git a/config/locale/app.pot b/config/locale/app.pot index 8d52d2d8cb..ae410efe3e 100644 --- a/config/locale/app.pot +++ b/config/locale/app.pot @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: app 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2021-08-18 08:39+0000\n" -"PO-Revision-Date: 2021-08-18 08:39+0000\n" +"POT-Creation-Date: 2021-10-01 11:19+0000\n" +"PO-Revision-Date: 2021-10-01 11:19+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" @@ -2309,6 +2309,7 @@ msgid "Do you have a %{application_name} account?" msgstr "" #: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 diff --git a/config/locale/de/LC_MESSAGES/app.mo b/config/locale/de/LC_MESSAGES/app.mo index 53aeeaf67400b264fa924b9462a43ca8553b573c..c63521277b70516679738d3b554754ac7b4103d1 100644 GIT binary patch delta 48 xcmaF)isR)gj)pCaaz\n" "Language-Team: German\n" "Language: de\n" @@ -2457,6 +2457,7 @@ msgid "Do you have a %{application_name} account?" msgstr "Hast du einen %{application_name}-Account?" #: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 diff --git a/config/locale/en_CA/LC_MESSAGES/app.mo b/config/locale/en_CA/LC_MESSAGES/app.mo index a9eb7abcbace6f88e9e1da23022aa0e0ea3837aa..b3f8a5b1c799aa55d169bbfbc55be62fa4810755 100644 GIT binary patch delta 38 ncmeyy@{MJKA|scffv$m}f}x?6;bd(_IT+X2%5ZZqqcS4^zJCav delta 38 ocmeyy@{MJKA|sc9g|4B6f`NsV@nmgAIVjiAz{+@YFrzXf0Kt0*!T\n" "Language-Team: English\n" "Language: en_CA\n" @@ -2309,6 +2309,7 @@ msgid "Do you have a %{application_name} account?" msgstr "" #: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 diff --git a/config/locale/en_GB/LC_MESSAGES/app.mo b/config/locale/en_GB/LC_MESSAGES/app.mo index fec355fd77dee3a9a1c29157cb8a76a49f8e0915..901223596af3f1935be627c64cfc1e8f0d61b282 100644 GIT binary patch delta 38 ncmeyv_lIvo3JaH^fv$m}f}x?6;p99PIT+X2%5d{EmS;==)7c7B delta 38 ocmeyv_lIvo3JaHkg|4B6f`NsV@#H)fIVjiAz{+^@G?r&f0M^wCcmMzZ diff --git a/config/locale/en_GB/app.po b/config/locale/en_GB/app.po index b298ecb696..ad5ed8e4f3 100644 --- a/config/locale/en_GB/app.po +++ b/config/locale/en_GB/app.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: app 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2021-08-18 08:39+0000\n" -"PO-Revision-Date: 2021-08-18 10:39+0200\n" +"POT-Creation-Date: 2021-10-01 11:19+0000\n" +"PO-Revision-Date: 2021-10-01 13:19+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: English\n" "Language: en_GB\n" @@ -2309,6 +2309,7 @@ msgid "Do you have a %{application_name} account?" msgstr "" #: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 diff --git a/config/locale/en_US/LC_MESSAGES/app.mo b/config/locale/en_US/LC_MESSAGES/app.mo index c4d2f69df0bddac22ede8c05bcfc690a2f5afc7b..36978e85ed0bfd18671d8fda3486cc3e59d65d27 100644 GIT binary patch delta 40 pcmdnGlyU1)#tjO3T!sd^28IfThE|4?we;j*Tw^Q4%|Uv}Dgfsa3Pu0` delta 40 qcmdnGlyU1)#tjO3Tm}}ph87A27FNcSwe;kmTtfpZO$tnQq4hm}k diff --git a/config/locale/en_US/app.po b/config/locale/en_US/app.po index bf5726b26b..ab3642bbba 100644 --- a/config/locale/en_US/app.po +++ b/config/locale/en_US/app.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: app 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2021-08-18 08:39+0000\n" -"PO-Revision-Date: 2021-08-18 10:39+0200\n" +"POT-Creation-Date: 2021-10-01 11:19+0000\n" +"PO-Revision-Date: 2021-10-01 13:19+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: English\n" "Language: en_US\n" @@ -2317,6 +2317,7 @@ msgid "Do you have a %{application_name} account?" msgstr "" #: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 diff --git a/config/locale/es/LC_MESSAGES/app.mo b/config/locale/es/LC_MESSAGES/app.mo index cfd7734a5989d43a2619b632b144941fd58efc80..1c12ec9d9035bf6ed01e218825ca8a5a8a8ae915 100644 GIT binary patch delta 44 ucmX?cf#bvlj)pCaaz\n" "Language-Team: Spanish\n" "Language: es\n" @@ -2438,6 +2438,7 @@ msgid "Do you have a %{application_name} account?" msgstr "¿Tienes una cuenta %{application_name}?" #: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 diff --git a/config/locale/fi/LC_MESSAGES/app.mo b/config/locale/fi/LC_MESSAGES/app.mo index 15d621beb28ba332f82e3e76d94e6a194ede6141..7bda03479ce6c06a82e1ba825962c724a4637c2e 100644 GIT binary patch delta 68 zcmZqJz|jCiTNqCo8W|es8W<`V8d@1zY8wCnSAf56P-\n" "Language-Team: Finnish\n" "Language: fi\n" @@ -2421,6 +2421,7 @@ msgid "Do you have a %{application_name} account?" msgstr "Onko sinulla jo %{application_name} -tili?" #: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 diff --git a/config/locale/fr_CA/LC_MESSAGES/app.mo b/config/locale/fr_CA/LC_MESSAGES/app.mo index 20709bb0530698f0a381589cfe965c96afbca6ad..6d66c6e855c44480b395016616b2052447f3d39a 100644 GIT binary patch delta 47 wcmZ2V}$dKtqj}M{pW&i*H delta 47 xcmZ2\n" "Language-Team: French\n" "Language: fr_CA\n" @@ -2449,6 +2449,7 @@ msgid "Do you have a %{application_name} account?" msgstr "Avez-vous un compte %{application_name}?" #: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 diff --git a/config/locale/fr_FR/LC_MESSAGES/app.mo b/config/locale/fr_FR/LC_MESSAGES/app.mo index 434c2d6261b7922f327aff9775d38f82ee9a7fb1..3dab52347f1dc3d7056a0834b05338a010c596dd 100644 GIT binary patch delta 48 xcmZ4Yl4IRVj)pCaaz\n" "Language-Team: French\n" "Language: fr_FR\n" @@ -2447,6 +2447,7 @@ msgid "Do you have a %{application_name} account?" msgstr "Avez vous un compte sur %{application_name} ?" #: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 diff --git a/config/locale/pt_BR/LC_MESSAGES/app.mo b/config/locale/pt_BR/LC_MESSAGES/app.mo index 25bce9d0646468f639b8a24f9c43b27032cc308c..7d2e6cb2d67266d9b7497ff57a7fc1443c70e120 100644 GIT binary patch delta 44 tcmbPqlw;CSj)pCaaz}w3yuH) delta 44 ucmbPqlw;CSj)pCaazI<^~ diff --git a/config/locale/pt_BR/app.po b/config/locale/pt_BR/app.po index f3aa960ff1..ff7bd33ce9 100644 --- a/config/locale/pt_BR/app.po +++ b/config/locale/pt_BR/app.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: app 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2021-08-18 08:39+0000\n" -"PO-Revision-Date: 2021-08-18 10:39+0200\n" +"POT-Creation-Date: 2021-10-01 11:19+0000\n" +"PO-Revision-Date: 2021-10-01 13:19+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese\n" "Language: pt_BR\n" @@ -2429,6 +2429,7 @@ msgid "Do you have a %{application_name} account?" msgstr "Você tem uma conta %{application_name}?" #: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 diff --git a/config/locale/sv_FI/LC_MESSAGES/app.mo b/config/locale/sv_FI/LC_MESSAGES/app.mo index 1e673fb2a0c3a2ccfc98845931564230e8371d79..3da5a80fca8038738959f449d08a4ae83d5cf4e6 100644 GIT binary patch delta 44 ucmbQRiethmj)pCaaz\n" "Language-Team: Swedish\n" "Language: sv_FI\n" @@ -2414,6 +2414,7 @@ msgid "Do you have a %{application_name} account?" msgstr "Har du ett %{application_name} konto?" #: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 diff --git a/config/locale/tr_TR/LC_MESSAGES/app.mo b/config/locale/tr_TR/LC_MESSAGES/app.mo index 9f96b9ac6d4a1a786e5735e1b5da199db160dc50..c8fca2f36009f2d2a3c4d4c435908202ca8b5460 100644 GIT binary patch delta 8584 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 HD{lNhVE#PM delta 8577 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 diff --git a/config/locale/tr_TR/app.po b/config/locale/tr_TR/app.po index 58d178909c..873bc19faf 100644 --- a/config/locale/tr_TR/app.po +++ b/config/locale/tr_TR/app.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: app 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2021-08-18 08:39+0000\n" -"PO-Revision-Date: 2021-08-18 10:39+0200\n" +"POT-Creation-Date: 2021-10-01 11:19+0000\n" +"PO-Revision-Date: 2021-10-01 13:19+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -1305,7 +1305,7 @@ msgstr "%{authors}" #: ../../app/models/concerns/exportable_plan.rb:135 msgid "%{affiliation}" -msgstr "%{affiliation}" +msgstr "Bağlı olunan kurum/kuruluş:" #: ../../app/models/concerns/exportable_plan.rb:137 #: ../../app/models/concerns/exportable_plan.rb:139 @@ -2413,6 +2413,7 @@ msgid "Do you have a %{application_name} account?" msgstr "%{application_name} hesabınız var mı?" #: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 diff --git a/config/locales/.translation_io b/config/locales/.translation_io index c237e46017..bed0f0ab69 100644 --- a/config/locales/.translation_io +++ b/config/locales/.translation_io @@ -1,2 +1,2 @@ --- -timestamp: 1629275957 +timestamp: 1633087160 diff --git a/config/locales/translation.de.yml b/config/locales/translation.de.yml index 7281133b2a..2c79e49ded 100644 --- a/config/locales/translation.de.yml +++ b/config/locales/translation.de.yml @@ -117,15 +117,6 @@ de: konnte:" model_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}' required: muss ausgefüllt werden - unavailable_session: "Session %{id} ist nicht mehr im Arbeitsspeicher verfügbar. - \n\nSollte Ihr System auf einem Multi-Process-Server (wie Unicorn oder Puma) - laufen, dann speichert der Prozess, den diese Anfrage ansteuert, keine %{id} - im Arbeitspeicher. Sie sollten die Anzahl der Prozesse/Arbeiter auf eins (1) - setzen oder einen anderen Server für die Entwicklung verwenden." - unacceptable_request: " Im Accept-Header wird eine unterstützte Version erwartet." - connection_refused: |- - Ups! Konnte keine Verbindung zur Web-Console-Middleware herstellen. - Bitte stellen Sie sicher, dass ein Rails-Development-Server läuft. template: body: 'Bei den folgenden Feldern gibt es Unstimmigkeiten:' header: diff --git a/config/locales/translation.en-CA.yml b/config/locales/translation.en-CA.yml index 28b000e488..d10f8ad442 100644 --- a/config/locales/translation.en-CA.yml +++ b/config/locales/translation.en-CA.yml @@ -121,9 +121,6 @@ en-CA: header: one: 1 error prohibited this %{model} from being saved other: "%{count} errors prohibited this %{model} from being saved" - unavailable_session: - unacceptable_request: - connection_refused: activerecord: errors: messages: diff --git a/config/locales/translation.en-GB.yml b/config/locales/translation.en-GB.yml index b304bb3441..adfd57062c 100644 --- a/config/locales/translation.en-GB.yml +++ b/config/locales/translation.en-GB.yml @@ -116,9 +116,6 @@ en-GB: other: "%{count} errors prohibited this %{resource} from being saved:" model_invalid: 'Validation failed: %{errors}' required: must exist - unavailable_session: - unacceptable_request: - connection_refused: template: body: 'There were problems with the following fields:' header: diff --git a/config/locales/translation.en-US.yml b/config/locales/translation.en-US.yml index 61dfb56c09..2a054b2d80 100644 --- a/config/locales/translation.en-US.yml +++ b/config/locales/translation.en-US.yml @@ -116,9 +116,6 @@ en-US: other: "%{count} errors prohibited this %{resource} from being saved:" model_invalid: 'Validation failed: %{errors}' required: must exist - unavailable_session: - unacceptable_request: - connection_refused: template: body: 'There were problems with the following fields:' header: diff --git a/config/locales/translation.es.yml b/config/locales/translation.es.yml index 1adb863ec2..a3521d3a2b 100644 --- a/config/locales/translation.es.yml +++ b/config/locales/translation.es.yml @@ -116,16 +116,6 @@ es: other: "%{count} errores impidieron que este %{resource} fuese guardado:" model_invalid: 'La validación falló: %{errors}' required: debe existir - unavailable_session: |- - Sesión %{id} ya no se encuentra disponible en la memoria. - - Si le sucede a ejecutar en un servidor multi-proceso (como el unicornio o Puma) el proceso de - esta solicitud golpe no almacena %{id} en la memoria. Considere girando el número de - procesos / trabajadores a uno (1) o el uso de un servidor diferente en el desarrollo. - unacceptable_request: Una versión compatible Se espera que en la cabecera Aceptar. - connection_refused: |- - Ups! No se pudo conectar a la consola Web de middleware. - Por favor asegúrese de que un servidor de desarrollo carriles se está ejecutando. template: body: 'Se encontraron problemas con los siguientes campos:' header: diff --git a/config/locales/translation.fi.yml b/config/locales/translation.fi.yml index 2ba54b4959..90349ee736 100644 --- a/config/locales/translation.fi.yml +++ b/config/locales/translation.fi.yml @@ -115,13 +115,6 @@ fi: other: "%{count} virhettä estivät kohteen %{resource} tallennuksen:" model_invalid: 'Validointi epäonnistui: %{errors}' required: täytyy olla - unavailable_session: Istunnon %{id} ei ole enää saatavilla muistissa. Jos satut - ajaa usean prosessin palvelimen (kuten Unicorn tai Puma) prosessi. Tämä pyyntö - osuma ei tallenna %{id} muistiin. Tarkastellaan kääntämällä määrä prosessit - / työntekijät yhteen (1) tai käyttämällä eri palvelinta kehittämiseen. - unacceptable_request: Pitää olla tuettu versio Hyväksytty otsikossa. - connection_refused: Oho! Yhteys nettikonsolin väliohjelmistoon epäonnistui. Varmista, - että palvelin on käynnissä. template: body: 'Seuraavat kentät aiheuttivat ongelmia:' header: diff --git a/config/locales/translation.fr-CA.yml b/config/locales/translation.fr-CA.yml index 4d0f914b04..f36b76baec 100644 --- a/config/locales/translation.fr-CA.yml +++ b/config/locales/translation.fr-CA.yml @@ -121,17 +121,6 @@ fr-CA: header: one: " 1 erreur a empêché l’enregistrement de %{model}" other: "%{count} erreurs ont empêché l’enregistrement de %{model} " - unavailable_session: | - La session %{id} n’est plus disponible en mémoire. - - S'il vous arrive d’exécuter le processus sur un serveur multi-processus (comme Unicorn ou Puma), le processus cette requête ne stocke pas %{id} en mémoire. Pensez à remettre le nombre de processus ou de travailleurs à un (1) ou à utiliser un autre serveur en développement. - unacceptable_request: 'Une version prise en charge est attendue dans l’en-tête - Accept. - -' - connection_refused: | - Oups! Échec de la connexion à l’intergiciel de la console Web. - Veuillez vous assurer qu’un serveur de développement Rails est en cours d'exécution. activerecord: errors: messages: diff --git a/config/locales/translation.fr-FR.yml b/config/locales/translation.fr-FR.yml index 4968abe2d1..3e4893653d 100644 --- a/config/locales/translation.fr-FR.yml +++ b/config/locales/translation.fr-FR.yml @@ -116,17 +116,6 @@ fr-FR: other: "%{count} erreurs ont empêché d’enregistrer ce(tte) %{resource} :" model_invalid: 'Validation échouée : %{errors}' required: doit exister - unavailable_session: |- - La session %{id} n'est plus disponible en mémoire. - - Si vous utilisez un serveur multi-processus (comme Unicorn ou Puma), le processus - cet appel de requête ne stocke pas %{id} en mémoire. Pensez à tourner le nombre de - processus / travailleurs à un (1) ou en utilisant un serveur différent en développement. - unacceptable_request: Une version prise en charge est attendue dans l'en-tête - Accept. - connection_refused: |- - Oops! Impossible de se connecter à la console Web middleware. - faire S'il vous plaît assurer un serveur de développement de rails est en cours d'exécution. template: body: 'Veuillez vérifier les champs suivants : ' header: diff --git a/config/locales/translation.pt-BR.yml b/config/locales/translation.pt-BR.yml index 92737b48a3..f7d15265ec 100644 --- a/config/locales/translation.pt-BR.yml +++ b/config/locales/translation.pt-BR.yml @@ -116,18 +116,6 @@ pt-BR: other: "%{count} erros proibiram que esse %{resource} fosse salvo:" model_invalid: 'A validação falhou: %{errors}' required: é obrigatório(a) - unavailable_session: | - A sessão %{id} não está mais disponível na memória. - - Se acontecer de você executar em um servidor com vários processos (como Unicorn ou Puma), o processo - esta solicitação não armazena %{id} na memória. Considere transformar o número de - processos / trabalhadores para um (1) ou usando um servidor diferente em desenvolvimento. - unacceptable_request: 'Uma versão suportada é esperada no cabeçalho Accept. - -' - connection_refused: | - Opa! Falha ao conectar-se ao middleware do console da Web. - Por favor, certifique-se de que um servidor de desenvolvimento de trilhos está sendo executado. template: body: 'Por favor, verifique o(s) seguinte(s) campo(s):' header: diff --git a/config/locales/translation.sv-FI.yml b/config/locales/translation.sv-FI.yml index f4d69fecbe..c1586645ad 100644 --- a/config/locales/translation.sv-FI.yml +++ b/config/locales/translation.sv-FI.yml @@ -116,16 +116,6 @@ sv-FI: other: "%{count} fel hindrade detta %{resource} från att sparas:" model_invalid: 'Validering misslyckades: %{errors}' required: måste finnas - unavailable_session: |- - Session %{id} är inte längre tillgänglig i minnet. - - Om du råkar köra på en multi-process-server (som Unicorn eller Puma) processen - den här förfrågan träffar inte %{id} i minnet. Överväg att vrida antalet - processer / arbetare till en (1) eller använder en annan server i utveckling. - unacceptable_request: En stödd version förväntas i Accept header. - connection_refused: |- - hoppsan! Misslyckades att ansluta till middleware-konsolen. - Se till att en railsutvecklingsserver körs. template: body: 'Det var problem med följande fält:' header: diff --git a/config/locales/translation.tr-TR.yml b/config/locales/translation.tr-TR.yml index 2d79430fb2..1a312ff16c 100644 --- a/config/locales/translation.tr-TR.yml +++ b/config/locales/translation.tr-TR.yml @@ -128,14 +128,6 @@ tr-TR: header: one: 1 hata oluştuğu için %{model} kaydedilemedi other: "%{count} hata oluştuğu için %{model} kaydedilemedi" - unavailable_session: | - Oturum %{id} artık bellekte mevcut değil. - - Unicorn veya Puma gibi bir çoklu-işlem sunucusunda çalışıyorsanız, bu isteğe karşılık gelen işlem, %{id}'i bellekte saklamaz. İşlem/çalışan sayısını bir (1) olarak ayarlamayı ya da geliştirme ortamında farklı bir sunucu kullanmayı değerlendirin. - unacceptable_request: Accept header'da desteklenen bir sürüm bekleniyor. - connection_refused: |- - Hata! Web Konsolu ara katman yazılımına bağlanılamadı. - Lütfen bir Rails geliştirme sunucusunun çalıştığından emin olun. activerecord: errors: messages: