Skip to content

Commit 0db6f5d

Browse files
author
Norbert Orzechowicz
committed
Merge pull request #14 from omissis/italian-translations
Added italian translations.
2 parents d05a549 + de82b90 commit 0db6f5d

File tree

2 files changed

+39
-3
lines changed

2 files changed

+39
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#PHP Humanizer
22

33
[![Build Status](https://travis-ci.org/coduo/php-humanizer.svg?branch=master)](https://travis-ci.org/coduo/php-humanizer)
4-
[![Latest Stable Version](https://poser.pugx.org/coduo/php-humanizer/v/stable)](https://packagist.org/packages/coduo/php-humanizer)
5-
[![Total Downloads](https://poser.pugx.org/coduo/php-humanizer/downloads)](https://packagist.org/packages/coduo/php-humanizer)
6-
[![Latest Unstable Version](https://poser.pugx.org/coduo/php-humanizer/v/unstable)](https://packagist.org/packages/coduo/php-humanizer)
4+
[![Latest Stable Version](https://poser.pugx.org/coduo/php-humanizer/v/stable)](https://packagist.org/packages/coduo/php-humanizer)
5+
[![Total Downloads](https://poser.pugx.org/coduo/php-humanizer/downloads)](https://packagist.org/packages/coduo/php-humanizer)
6+
[![Latest Unstable Version](https://poser.pugx.org/coduo/php-humanizer/v/unstable)](https://packagist.org/packages/coduo/php-humanizer)
77
[![License](https://poser.pugx.org/coduo/php-humanizer/license)](https://packagist.org/packages/coduo/php-humanizer)
88

99
Humanize values to make them readable for regular people ;)
@@ -180,6 +180,7 @@ Currently we support following languages:
180180
* [Turkish](src/Coduo/PHPHumanizer/Resources/translations/difference.tr.yml)
181181
* [French](src/Coduo/PHPHumanizer/Resources/translations/difference.fr.yml)
182182
* [Português - Brasil](src/Coduo/PHPHumanizer/Resources/translations/difference.pt_BR.yml)
183+
* [Italian](src/Coduo/PHPHumanizer/Resources/translations/difference.it.yml)
183184

184185
# Credits
185186

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
just_now:
2+
past: "[0,Inf] adesso"
3+
future: "[0,Inf] adesso"
4+
second:
5+
past: "{1} %count% secondo fa|[2,Inf] %count% secondi fa"
6+
future: "{1} %count% secondo da adesso|[2,Inf] %count% secondi da adesso"
7+
minute:
8+
past: "{1} %count% minuto fa|[2,Inf] %count% minuti fa"
9+
future: "{1} %count% minuto da adesso|[2,Inf] %count% minuti da adesso"
10+
hour:
11+
past: "{1} %count% ora fa|[2,Inf] %count% ore fa"
12+
future: "{1} %count% ora da adesso|[2,Inf] %count% ore da adesso"
13+
day:
14+
past: "{1} %count% giorno fa|[2,Inf] %count% giorni fa"
15+
future: "{1} %count% giorno da adesso|[2,Inf] %count% giorni da adesso"
16+
week:
17+
past: "{1} %count% settimana fa|[2,Inf] %count% settimane fa"
18+
future: "{1} %count% settimana da adesso|[2,Inf] %count% settimane da adesso"
19+
month:
20+
past: "{1} %count% mese fa|[2,Inf] %count% mesi fa"
21+
future: "{1} %count% mese da adesso|[2,Inf] %count% mesi da adesso"
22+
year:
23+
past: "{1} %count% anno fa|[2,Inf] %count% anni fa"
24+
future: "{1} %count% anno da adesso|[2,Inf] %count% anni da adesso"
25+
26+
compound:
27+
second: "{1} %count% secondo|[2,Inf] %count% secondi"
28+
minute: "{1} %count% minuto|[2,Inf] %count% minuti"
29+
hour: "{1} %count% ora|[2,Inf] %count% ore"
30+
day: "{1} %count% giorno|[2,Inf] %count% giorni"
31+
week: "{1} %count% settimana|[2,Inf] %count% settimane"
32+
month: "{1} %count% mese|[2,Inf] %count% mesi"
33+
year: "{1} %count% anno|[2,Inf] %count% anni"
34+
ago: "fa"
35+
from_now: "da adesso"

0 commit comments

Comments
 (0)