forked from lunarmodules/busted
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
local s = require('say') | ||
|
||
s:set_namespace('it') | ||
|
||
-- 'Pending: test.lua @ 12 \n description | ||
s:set('output.pending', 'In attesa') | ||
s:set('output.failure', 'Fallimento') | ||
s:set('output.error', 'Errore') | ||
s:set('output.success', 'Successo') | ||
|
||
s:set('output.pending_plural', 'in attesa') | ||
s:set('output.failure_plural', 'fallimenti') | ||
s:set('output.error_plural', 'errori') | ||
s:set('output.success_plural', 'successi') | ||
|
||
s:set('output.pending_zero', 'in attesa') | ||
s:set('output.failure_zero', 'fallimenti') | ||
s:set('output.error_zero', 'errori') | ||
s:set('output.success_zero', 'successi') | ||
|
||
s:set('output.pending_single', 'in attesa') | ||
s:set('output.failure_single', 'fallimento') | ||
s:set('output.error_single', 'errore') | ||
s:set('output.success_single', 'successo') | ||
|
||
s:set('output.seconds', 'secondi') | ||
|
||
s:set('output.no_test_files_match', 'Nessun file di test trovat che corrisponde al pattern Lua: %s') | ||
s:set('output.file_not_found', 'Nessun file o cartella trovato: %s') | ||
|
||
-- definitions following are not used within the 'say' namespace | ||
return { | ||
failure_messages = { | ||
"Hai %d specifiche non conformi", | ||
"Le tue specifiche non sono conformi", | ||
"Il tuo codice fa schifo e dovresti sentirti male per questo", | ||
"Il tuo codice è in pericolo", | ||
"Strano. Il solo modo per terminare con successo i tuoi test è fare nessun test", | ||
"Mia nonna ha scritto migliori specifiche su un 3 86", | ||
"Ogni volta che trovi un errore, bevi un'altra birra", | ||
"I fallimenti fanno male alla salute" | ||
}, | ||
success_messages = { | ||
"Ma andiamo! Specifiche Ok!", | ||
"Non importa, avevi le specifiche", | ||
"Bella zio", | ||
"Gran successo", | ||
"Test passato, hai vinto una birra" | ||
} | ||
} |