mirror of
https://github.com/rlanvin/php-rrule.git
synced 2025-02-21 10:54:14 +01:00
Improved Finnish translation
This commit is contained in:
parent
9aac806f79
commit
660012a2f1
@ -34,20 +34,20 @@ return array(
|
|||||||
'else' => '%{count} päivän välein'
|
'else' => '%{count} päivän välein'
|
||||||
),
|
),
|
||||||
'hourly' => array(
|
'hourly' => array(
|
||||||
'1' => 'hourly',
|
'1' => 'joka tunti',
|
||||||
'else' => 'every %{interval} hours'
|
'else' => 'joka %{interval} tunti'
|
||||||
),
|
),
|
||||||
'minutely' => array(
|
'minutely' => array(
|
||||||
'1' => 'minutely',
|
'1' => 'joka minuutti',
|
||||||
'else' => 'every %{interval} minutes'
|
'else' => 'joka %{interval} minuutti'
|
||||||
),
|
),
|
||||||
'secondly' => array(
|
'secondly' => array(
|
||||||
'1' => 'secondly',
|
'1' => 'joka sekunti',
|
||||||
'else' => 'every %{interval} seconds'
|
'else' => 'joka %{interval} sekunti'
|
||||||
),
|
),
|
||||||
'dtstart' => ', alkaen %{date}',
|
'dtstart' => ', alkaen %{date}',
|
||||||
'infinite' => ', ikuisesti',
|
'infinite' => ', jatkuvasti',
|
||||||
'until' => ', loppuu %{date}',
|
'until' => ', %{date} asti',
|
||||||
'count' => array(
|
'count' => array(
|
||||||
'1' => ', kerran',
|
'1' => ', kerran',
|
||||||
'else' => ', %{count} kertaa'
|
'else' => ', %{count} kertaa'
|
||||||
@ -83,78 +83,54 @@ return array(
|
|||||||
7 => 'sunnuntaina',
|
7 => 'sunnuntaina',
|
||||||
),
|
),
|
||||||
'nth_weekday' => array(
|
'nth_weekday' => array(
|
||||||
'1' => 'the first %{weekday}', // e.g. the first Monday
|
'else' => '%{n}. %{weekday}'
|
||||||
'2' => 'the second %{weekday}',
|
|
||||||
'3' => 'the third %{weekday}',
|
|
||||||
'else' => 'the %{n}th %{weekday}'
|
|
||||||
),
|
),
|
||||||
'-nth_weekday' => array(
|
'-nth_weekday' => array(
|
||||||
'-1' => 'the last %{weekday}', // e.g. the last Monday
|
'-1' => 'viimeinen %{weekday}', // e.g. the last Monday
|
||||||
'-2' => 'the penultimate %{weekday}',
|
'-2' => 'toiseksi viimeinen %{weekday}',
|
||||||
'-3' => 'the antepenultimate %{weekday}',
|
'else' => '%{n}:ksi viimeinen %{weekday}'
|
||||||
'else' => 'the %{n}th to the last %{weekday}'
|
|
||||||
),
|
),
|
||||||
'byweekno' => array(
|
'byweekno' => array(
|
||||||
'1' => ' on week %{weeks}',
|
'1' => ' viikkona %{weeks}',
|
||||||
'else' => ' on weeks number %{weeks}'
|
'else' => ' viikkoina %{weeks}'
|
||||||
),
|
),
|
||||||
'nth_weekno' => '%{n}',
|
'nth_weekno' => '%{n}',
|
||||||
'bymonthday' => ' %{monthdays} päivinä',
|
'bymonthday' => ' %{monthdays} päivä',
|
||||||
'nth_monthday' => array(
|
'nth_monthday' => array(
|
||||||
'else' => '%{n}.'
|
'else' => '%{n}.'
|
||||||
),
|
),
|
||||||
'-nth_monthday' => array(
|
'-nth_monthday' => array(
|
||||||
'-1' => 'the last day',
|
'-1' => 'viimeinen',
|
||||||
'-2' => 'the penultimate day',
|
'else' => '%{n}:ksi viimeinen'
|
||||||
'-3' => 'the antepenultimate day',
|
|
||||||
'-21' => 'the 21st to the last day',
|
|
||||||
'-22' => 'the 22nd to the last day',
|
|
||||||
'-23' => 'the 23rd to the last day',
|
|
||||||
'-31' => 'the 31st to the last day',
|
|
||||||
'else' => 'the %{n}th to the last day'
|
|
||||||
),
|
),
|
||||||
'byyearday' => array(
|
'byyearday' => array(
|
||||||
'1' => ' on %{yeardays} day',
|
'else' => ' %{yeardays} päivä'
|
||||||
'else' => ' on %{yeardays} days'
|
|
||||||
),
|
),
|
||||||
'nth_yearday' => array(
|
'nth_yearday' => array(
|
||||||
'1' => 'the first',
|
'else' => '%{n}.'
|
||||||
'2' => 'the second',
|
|
||||||
'3' => 'the third',
|
|
||||||
'else' => 'the %{n}th'
|
|
||||||
),
|
),
|
||||||
'-nth_yearday' => array(
|
'-nth_yearday' => array(
|
||||||
'-1' => 'the last',
|
'-1' => 'viimeinen',
|
||||||
'-2' => 'the penultimate',
|
'else' => '%{n}:ksi viimeinen'
|
||||||
'-3' => 'the antepenultimate',
|
|
||||||
'else' => 'the %{n}th to the last'
|
|
||||||
),
|
),
|
||||||
'byhour' => array(
|
'byhour' => array(
|
||||||
'1' => ' at %{hours}',
|
'else' => ' klo. %{hours}'
|
||||||
'else' => ' at %{hours}'
|
|
||||||
),
|
),
|
||||||
'nth_hour' => '%{n}h',
|
'nth_hour' => '%{n}',
|
||||||
'byminute' => array(
|
'byminute' => array(
|
||||||
'1' => ' at minute %{minutes}',
|
'else' => ', minuutteina %{minutes}'
|
||||||
'else' => ' at minutes %{minutes}'
|
|
||||||
),
|
),
|
||||||
'nth_minute' => '%{n}',
|
'nth_minute' => '%{n}',
|
||||||
'bysecond' => array(
|
'bysecond' => array(
|
||||||
'1' => ' at second %{seconds}',
|
'else' => ', sekunteina %{seconds}'
|
||||||
'else' => ' at seconds %{seconds}'
|
|
||||||
),
|
),
|
||||||
'nth_second' => '%{n}',
|
'nth_second' => '%{n}',
|
||||||
'bysetpos' => ', but only %{setpos} instance of this set',
|
'bysetpos' => ', mutta vain %{setpos} tapaus edellä mainituista',
|
||||||
'nth_setpos' => array(
|
'nth_setpos' => array(
|
||||||
'1' => 'the first',
|
'else' => '%{n}.'
|
||||||
'2' => 'the second',
|
|
||||||
'3' => 'the third',
|
|
||||||
'else' => 'the %{n}th'
|
|
||||||
),
|
),
|
||||||
'-nth_setpos' => array(
|
'-nth_setpos' => array(
|
||||||
'-1' => 'the last',
|
'-1' => 'viimeinen',
|
||||||
'-2' => 'the penultimate',
|
'else' => '%{n}:ksi viimeinen'
|
||||||
'-3' => 'the antepenultimate',
|
|
||||||
'else' => 'the %{n}th to the last'
|
|
||||||
)
|
)
|
||||||
);
|
);
|
Loading…
x
Reference in New Issue
Block a user