Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Croatian Language Support #1710

Merged
merged 2 commits into from May 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .tx/config
Expand Up @@ -6,4 +6,4 @@ source_file = languages/pressbooks.pot
source_lang = en
type = PO
file_filter = languages/pressbooks-<lang>.po
lang_map = de:de_DE, es:es_ES, fr:fr_FR, gl:gl_ES, nb:nb_NO, it:it_IT, ka:ka_GE, ru:ru_RU, ta:ta_LK, pa:pa_IN
lang_map = de:de_DE, es:es_ES, fr:fr_FR, gl:gl_ES, nb:nb_NO, it:it_IT, ka:ka_GE, ru:ru_RU, ta:ta_LK, pa:pa_IN, hr:hr_HR
30 changes: 30 additions & 0 deletions languages/core-hr-hr.php
@@ -0,0 +1,30 @@
<?php
/**
* Change core WordPress strings using $overrides array.
*
* @author Pressbooks <code@pressbooks.com>
* @license GPLv3 (or any later version)
* @see l10n/namespace.php
*/

$overrides = [
'My Sites' => 'Moje knjige',
'Create a New Site' => 'Napiši novu knjigu',
];

if ( \Pressbooks\Book::isBook() ) {
$overrides['Visit site'] = 'Posjeti knjigu';
$overrides['Visit Site'] = 'Posjeti knjigu';
$overrides['Edit Site'] = 'Uredi knjigu';
$overrides['You have used your space quota. Please delete files before uploading.'] = 'Nažalost, iskoristili ste svoju kvotu za pohranu. Želite više prostora? Nadogradite svoju knjigu.';
$overrides['Delete Site'] = 'Obriši knjigu';
$overrides['Delete My Site'] = 'Obriši moju knjigu';
$overrides['Delete My Site Permanently'] = 'Trajno obriši moju knjigu';
$overrides["I'm sure I want to permanently disable my site, and I am aware I can never get it back or use %s again."] = "Siguran sam da želim trajno onemogućiti svoju knjigu i svjestan sam da je nikad ne mogu vratiti ili ponovno koristiti.";
$overrides['If you do not want to use your %s site any more, you can delete it using the form below. When you click <strong>Delete My Site Permanently</strong> you will be sent an email with a link in it. Click on this link to delete your site.'] = 'Ako više ne želite koristiti svoju knjigu "%s", možete je izbrisati pomoću obrasca u nastavku. Kada kliknete na <strong>Trajno izbriši moju knjigu</strong>, bit će vam poslana poruka e-pošte s vezom. Kliknite tu vezu da biste izbrisali knjigu.';
$overrides['Remember, once deleted your site cannot be restored.'] = 'Vodite računa da jednom obrisanu knjigu više nije moguće vratiti.';
$overrides['Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.'] = 'Hvala. Molimo provjerite svoju e-poštu, poslana Vam je poruka sa daljnjim uputama i vezom za brisanje knjige. Vaša knjiga neće biti obrisana dok ne kliknete na vezu iz poruke.';
$overrides['Thank you for using %s, your site has been deleted. Happy trails to you until we meet again.' ] = 'Hvala što ste koristili %s, Vaša knjiga je obrisana.';
}

return $overrides;