Skip to content

Commit

Permalink
Merge branch 'Langmans-patch-1'
Browse files Browse the repository at this point in the history
  • Loading branch information
mpratt committed Jun 3, 2023
2 parents bb3f309 + 20f1c39 commit b64361f
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions Lib/RelativeTime/Languages/Dutch.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?php
/**
* Dutch.php
*
* @author Ruben Vincenten <rubenvincenten@gmail.com>
* @link https://github.com/Langmans
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
*/

namespace RelativeTime\Languages;

/**
* Dutch Translation
*/
class Dutch extends LanguageAdapter
{
protected $strings = array(
'now' => 'zojuist',
'ago' => '%s geleden',
'left' => 'nog %s',
'seconds' => array(
'plural' => '%d seconden',
'singular' => '%d seconde',
),
'minutes' => array(
'plural' => '%d minuten',
'singular' => '%d minuut',
),
'hours' => array(
'plural' => '%d uur',
'singular' => '%d uur',
),
'days' => array(
'plural' => '%d dagen',
'singular' => '%d dag',
),
'weeks' => array(
'plural' => '%d weken',
'singular' => '%d week',
),
'months' => array(
'plural' => '%d maanden',
'singular' => '%d maand',
),
'years' => array(
'plural' => '%d jaren',
'singular' => '%d jaar',
),
);
}

0 comments on commit b64361f

Please sign in to comment.