Skip to content

Commit

Permalink
Merge a4c0c3a into 29f8298
Browse files Browse the repository at this point in the history
  • Loading branch information
ricco24 committed Jun 20, 2019
2 parents 29f8298 + a4c0c3a commit cb6ec4a
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,3 +1,3 @@
.idea
vendor
composer.lock

36 changes: 36 additions & 0 deletions src/Prepositioner/Languages/RomanianLanguage.php
@@ -0,0 +1,36 @@
<?php

namespace Tomaj\Prepositioner;

class RomanianLanguage implements LanguageInterface
{
public function prepositions(): array
{
return [
/* 2 letter */
'cu',
'de',
'în',
'la',
'pe',

/* 3 letter */
'cât',
'pro',

/* 4 letter */
'fără',
'până',
'prin',
'spre',

/* 5 letter */
'între',
'peste',

/* 6 letter */
'dintre',
'pentru',
];
}
}

0 comments on commit cb6ec4a

Please sign in to comment.