-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrings.php
36 lines (34 loc) · 1.75 KB
/
strings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
$language_strings = array("");
$en = array();
$cs = array(
"About" => "O nás",
"Authors" => "Autoři",
"Because you should secure data on laptop's disk and in memory. You also should protect your device from unauthorized installation of programs e.g. keyloggers, program for botnets and mining virtual currencies. Don't forget that you are the product for a lot of companies nowadays." => "",
"Code released under the" => "Zdrojový kód zvěřejněn pod",
"Contact us" => "Kontakujte nás",
"Contribute" => "Jak se zapojit",
"How to use" => "Jak používat",
"I didn't lock my computer again!" => "Zase jsem si nezamkl(a) počítač!",
"Source code" => "Zdrojový kód",
"Theme" => "HTML šablona",
"Toggle navigation" => "Zobrazit/skrýt menu",
"Translate this page to your language." => "Pomozte nám přeložit tuto stránku do vašeho jazyka.",
"Use and show your friends and colleagues." => "Používejte tento web a ukažte jej svým známym a kolegům.",
"We would like to teach people to lock their computers while they are away and improve security." => "Chceme rozšířit povědomí o nutnosti zamykat svá zařízení, když je nemáme pod dohledem.",
"When you see unlocked device of your colleague or friend open browser on it and open this webpage. The hints increase each visit of this webpage." => "",
"Why" => "Proč",
"and" => "a",
"and contact" => "a kontakt",
"hit" => "zásah",
"license" => "licencí",
"should I lock my computer?" => "bych si měl(a) zamykat počítač?",
"this page?" => "bych si měl(a) zamykat počítač?",
"Strings for translation" => "Texty pro překlad",
"Not used strings" => "Nepoužité řetězce",
"PHP export" => "Export do PHP",
);
$translates = array(
'en' => $en, // English is default
'cs' => $cs,
);