forked from Behat/Behat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18n.php
66 lines (66 loc) · 5.25 KB
/
i18n.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php return array(
'en' =>
array(
'snippet_proposal_title' => '<snippet_undefined><snippet_keyword>%1%</snippet_keyword> has missing steps. Define them with these snippets:</snippet_undefined>',
'snippet_missing_title' => '<snippet_undefined>Snippets for the following steps in the <snippet_keyword>%1%</snippet_keyword> suite were not generated (check your configuration):</snippet_undefined>',
'failed_scenarios_title' => 'Failed scenarios:',
'failed_hooks_title' => 'Failed hooks:',
'failed_steps_title' => 'Failed steps:',
'pending_steps_title' => 'Pending steps:',
'scenarios_count' => '{0} No scenarios|{1} 1 scenario|]1,Inf] %1% scenarios',
'steps_count' => '{0} No steps|{1} 1 step|]1,Inf] %1% steps',
'passed_count' => '[1,Inf] %1% passed',
'failed_count' => '[1,Inf] %1% failed',
'pending_count' => '[1,Inf] %1% pending',
'undefined_count' => '[1,Inf] %1% undefined',
'skipped_count' => '[1,Inf] %1% skipped',
),
'ru' =>
array(
'snippet_proposal_title' => '<snippet_keyword>%1%</snippet_keyword> <snippet_undefined>не содержит необходимых определений. Вы можете добавить их используя шаблоны:</snippet_undefined>',
'snippet_missing_title' => '<snippet_undefined>Шаблоны для следующих шагов в среде <snippet_keyword>%1%</snippet_keyword> не были сгенерированы (проверьте ваши настройки):</snippet_undefined>',
'failed_scenarios_title' => 'Проваленные сценарии:',
'failed_hooks_title' => 'Проваленные хуки:',
'failed_steps_title' => 'Проваленные шаги:',
'pending_steps_title' => 'Шаги в ожидании:',
'scenarios_count' => '{0} Нет сценариев|{1,21,31} %1% сценарий|{2,3,4,22,23,24} %1% сценария|]4,Inf] %1% сценариев',
'steps_count' => '{0} Нет шагов|{1,21,31} %1% шаг|{2,3,4,22,23,24} %1% шага|]4,Inf] %1% шагов',
'passed_count' => '{1,21,31} %1% пройден|]1,Inf] %1% пройдено',
'failed_count' => '{1,21,31} %1% провален|]1,Inf] %1% провалено',
'pending_count' => '[1,Inf] %1% в ожидании',
'undefined_count' => '{1,21,31} %1% не определен|]1,Inf] %1% не определено',
'skipped_count' => '{1,21,31} %1% пропущен|]1,Inf] %1% пропущено',
),
'it' =>
array(
'snippet_proposal_title' => '<snippet_undefined><snippet_keyword>%1%</snippet_keyword> ha dei passaggi mancanti. Definiscili con questi snippet:</snippet_undefined>',
'snippet_missing_title' => '<snippet_undefined>Gli snippet per i seguenti passaggi della suite <snippet_keyword>%1%</snippet_keyword> non sono stati generati (verifica la configurazione):</snippet_undefined>',
'failed_scenarios_title' => 'Scenari falliti:',
'failed_hooks_title' => 'Hook falliti:',
'failed_steps_title' => 'Passaggi falliti:',
'pending_steps_title' => 'Passaggi in sospeso:',
'scenarios_count' => '{0} Nessuno scenario|{1} 1 scenario|]1,Inf] %1% scenari',
'steps_count' => '{0} Nessun passaggio|{1} 1 passaggio|]1,Inf] %1% passaggi',
'passed_count' => '{1} 1 superato|]1,Inf] %1% superati',
'failed_count' => '{1} 1 fallito|]1,Inf] %1% falliti',
'pending_count' => '[1,Inf] %1% in sospeso',
'undefined_count' => '{1} 1 non definito|]1,Inf] %1% non definiti',
'skipped_count' => '{1} 1 ignorato|]1,Inf] %1% ignorati',
),
'fr' =>
array(
'snippet_proposal_title' => '<snippet_undefined><snippet_keyword>%1%</snippet_keyword> a des étapes manquantes. Définissez-les aves les modèles suivants :</snippet_undefined>',
'snippet_missing_title' => '<snippet_undefined>Les modèles des étapes de la suite <snippet_keyword>%1%</snippet_keyword> n\'ont pas été générés (vérifiez votre configuration):</snippet_undefined>',
'failed_scenarios_title' => 'Scénarios échoués:',
'failed_hooks_title' => 'Hooks échoués:',
'failed_steps_title' => 'Etapes échoués:',
'pending_steps_title' => 'Etapes en attente:',
'scenarios_count' => '{0} Pas de scénario|{1} 1 scénario|]1,Inf] %1% scénarios',
'steps_count' => '{0} Pas d\'étape|{1} 1 étape|]1,Inf] %1% étapes',
'passed_count' => '[1,Inf] %1% succès',
'failed_count' => '[1,Inf] %1% échecs',
'pending_count' => '[1,Inf] %1% en attente',
'undefined_count' => '[1,Inf] %1% indéfinis',
'skipped_count' => '[1,Inf] %1% ignorés',
),
);