From 22aad3962c6af2a834c3dfc24df658d692130d0b Mon Sep 17 00:00:00 2001 From: Ana Raro Date: Mon, 3 May 2021 08:02:13 +0100 Subject: [PATCH 1/3] Added translations for pt security file. --- .../Security/Core/Resources/translations/security.pt.xlf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Symfony/Component/Security/Core/Resources/translations/security.pt.xlf b/src/Symfony/Component/Security/Core/Resources/translations/security.pt.xlf index 286dab2665..e4034ae4a0 100644 --- a/src/Symfony/Component/Security/Core/Resources/translations/security.pt.xlf +++ b/src/Symfony/Component/Security/Core/Resources/translations/security.pt.xlf @@ -70,6 +70,14 @@ Invalid or expired login link. Ligação de login inválida ou expirada. + + Too many failed login attempts, please try again in %minutes% minute. + Demasiadas tentativas de login, tente novamente num minuto. + + + Too many failed login attempts, please try again in %minutes% minutes. + Demasiadas tentativas de login, tente novamente em %minutes% minutos. + From af53ecd1fd0c593b8bc0c3224b85d04072ec9c24 Mon Sep 17 00:00:00 2001 From: Koray Zorluoglu Date: Mon, 3 May 2021 09:22:23 +0200 Subject: [PATCH 2/3] ref #41087: missing turkish translations from security component --- .../Security/Core/Resources/translations/security.tr.xlf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Symfony/Component/Security/Core/Resources/translations/security.tr.xlf b/src/Symfony/Component/Security/Core/Resources/translations/security.tr.xlf index 4bc4d2cda8..3466f8fe4a 100644 --- a/src/Symfony/Component/Security/Core/Resources/translations/security.tr.xlf +++ b/src/Symfony/Component/Security/Core/Resources/translations/security.tr.xlf @@ -70,6 +70,14 @@ Invalid or expired login link. Geçersiz veya süresi dolmuş oturum açma bağlantısı. + + Too many failed login attempts, please try again in %minutes% minute. + Çok fazla başarısız giriş denemesi, lütfen %minutes% dakika sonra tekrar deneyin. + + + Too many failed login attempts, please try again in %minutes% minutes. + Çok fazla başarısız giriş denemesi, lütfen %minutes% dakika sonra tekrar deneyin. + From ebfb0c99443b0d55f2fda07ffdd09d3a960557f1 Mon Sep 17 00:00:00 2001 From: Ruud Kamphuis Date: Tue, 4 May 2021 11:45:47 +0200 Subject: [PATCH 3/3] [Inflector][String] Fixed singularize `edges` > `edge` --- src/Symfony/Component/Inflector/Inflector.php | 21 +++++++++++++++++++ .../Inflector/Tests/InflectorTest.php | 2 ++ 2 files changed, 23 insertions(+) diff --git a/src/Symfony/Component/Inflector/Inflector.php b/src/Symfony/Component/Inflector/Inflector.php index 461c5f6090..97ae5c9b9d 100644 --- a/src/Symfony/Component/Inflector/Inflector.php +++ b/src/Symfony/Component/Inflector/Inflector.php @@ -123,6 +123,9 @@ final class Inflector // fees (fee), trees (tree), employees (employee) ['see', 3, true, true, 'ee'], + // edges (edge) + ['segd', 4, true, true, 'dge'], + // roses (rose), garages (garage), cassettes (cassette), // waltzes (waltz), heroes (hero), bushes (bush), arches (arch), // shoes (shoe) @@ -314,14 +317,32 @@ final class Inflector */ private const UNINFLECTED = [ '', + + // data 'atad', + + // deer 'reed', + + // feedback 'kcabdeef', + + // fish 'hsif', + + // info 'ofni', + + // moose 'esoom', + + // series 'seires', + + // sheep 'peehs', + + // species 'seiceps', ]; diff --git a/src/Symfony/Component/Inflector/Tests/InflectorTest.php b/src/Symfony/Component/Inflector/Tests/InflectorTest.php index 62b3790fd3..99527b93c1 100644 --- a/src/Symfony/Component/Inflector/Tests/InflectorTest.php +++ b/src/Symfony/Component/Inflector/Tests/InflectorTest.php @@ -66,6 +66,7 @@ class InflectorTest extends TestCase ['drivers', 'driver'], ['dwarves', ['dwarf', 'dwarve', 'dwarff']], ['echoes', ['echo', 'echoe']], + ['edges', 'edge'], ['elves', ['elf', 'elve', 'elff']], ['emphases', ['emphas', 'emphase', 'emphasis']], ['employees', 'employee'], @@ -210,6 +211,7 @@ class InflectorTest extends TestCase ['driver', 'drivers'], ['dwarf', ['dwarfs', 'dwarves']], ['echo', 'echoes'], + ['edge', 'edges'], ['elf', ['elfs', 'elves']], ['emphasis', 'emphases'], ['fax', ['facies', 'faxes']],