mirror of
https://github.com/owncloud/bookmarks.git
synced 2024-11-29 04:24:11 +01:00
ae81b9dcd2
Dependency Injection for user and db is used througout the controllers The Routing features a consistent rest api The Routing provides some legacy routes, so that for exampe the Android Bookmarks App still works. There is a publicly available api that provides access to bookmarks per user. (This is usefull in connection with the WP Plugin https://github.com/mario-nolte/oc2wp-bookmarks)
16 lines
397 B
PHP
16 lines
397 B
PHP
<?php
|
|
$TRANSLATIONS = array(
|
|
"Bookmarks" => "Zabilješke",
|
|
"Close" => "Zatvori",
|
|
"Save" => "Snimi",
|
|
"Delete" => "Obriši",
|
|
"Edit" => "Uredi",
|
|
"Cancel" => "Odustani",
|
|
"Address" => "Adresa",
|
|
"Add" => "Dodaj",
|
|
"Settings" => "Postavke",
|
|
"Export" => "Izvoz",
|
|
"Import" => "Uvezi"
|
|
);
|
|
$PLURAL_FORMS = "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;";
|