jquery.timeago.fi.js 928 B

12345678910111213141516171819202122232425262728
  1. // Finnish
  2. jQuery.timeago.settings.strings = {
  3. prefixAgo: null,
  4. prefixFromNow: null,
  5. suffixAgo: "sitten",
  6. suffixFromNow: "tulevaisuudessa",
  7. seconds: "alle minuutti",
  8. minute: "minuutti",
  9. minutes: "%d minuuttia",
  10. hour: "tunti",
  11. hours: "%d tuntia",
  12. day: "päivä",
  13. days: "%d päivää",
  14. month: "kuukausi",
  15. months: "%d kuukautta",
  16. year: "vuosi",
  17. years: "%d vuotta"
  18. };
  19. // The above is not a great localization because one would usually
  20. // write "2 days ago" in Finnish as "2 päivää sitten", however
  21. // one would write "2 days into the future" as "2:n päivän päästä"
  22. // which cannot be achieved with localization support this simple.
  23. // This is because Finnish has word suffixes (attached directly
  24. // to the end of the word). The word "day" is "päivä" in Finnish.
  25. // As workaround, the above localizations will say
  26. // "2 päivää tulevaisuudessa" which is understandable but
  27. // not as fluent.