Skip to content

New lanaguages #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ public static String getString(String key) {
return '!' + key + '!';
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -432,4 +432,4 @@ public TimeAgo setYears(String years) {
this.years = years;
return this;
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
TimeAgo.AGO=ago
#en
TimeAgo.PREFIX_AGO=
TimeAgo.SUFFIX_AGO=ago
TimeAgo.PREFIX_FROM_NOW=
TimeAgo.SUFFIX_FROM_NOW=from now
TimeAgo.DAY=a day
TimeAgo.DAYS={0} days
TimeAgo.HOUR=about an hour
Expand All @@ -8,6 +12,5 @@ TimeAgo.MINUTES={0} minutes
TimeAgo.MONTH=about a month
TimeAgo.MONTHS={0} months
TimeAgo.SECONDS=less than a minute
TimeAgo.SUFFIX_FROM_NOW=from now
TimeAgo.YEAR=about a year
TimeAgo.YEARS={0} years
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
TimeAgo.PREFIX_AGO=Hace
TimeAgo.SUFFIX_AGO=
TimeAgo.PREFIX_FROM_NOW=Dentro de
TimeAgo.SUFFIX_FROM_NOW=
TimeAgo.DAY=un d�a
TimeAgo.DAYS={0} d�as
TimeAgo.HOUR=aprox. una hora
TimeAgo.HOURS={0} horas
TimeAgo.MINUTE=aprox. un minuto
TimeAgo.MINUTES={0} minutos
TimeAgo.MONTH=aprox. un mes
TimeAgo.MONTHS={0} meses
TimeAgo.SECONDS=menos de un minuto
TimeAgo.YEAR=aprox. un a�o
TimeAgo.YEARS={0} a�os
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
TimeAgo.PREFIX_AGO=
TimeAgo.SUFFIX_AGO=fa
TimeAgo.PREFIX_FROM_NOW=
TimeAgo.SUFFIX_FROM_NOW=adesso
TimeAgo.DAY=un giorno
TimeAgo.DAYS={0} giorni
TimeAgo.HOUR=circa un''ora
TimeAgo.HOURS={0} ore
TimeAgo.MINUTE=circa un minuto
TimeAgo.MINUTES={0} minuti
TimeAgo.MONTH=circa un mese
TimeAgo.MONTHS={0} mesi
TimeAgo.SECONDS=meno di un minuti
TimeAgo.YEAR=circa un anno
TimeAgo.YEARS={0} anni
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,4 @@ public void testYearsAgo() {
ago.getSuffixAgo());
assertEquals(expected, time);
}
}
}