mirror of
https://git.bakhai.co.in/FbIN/libreqr.git
synced 2026-04-17 16:35:53 +05:30
Drop Less support: The style.less and themes/libreqr/theme.php files are converted to plain CSS. The main Less features used in LibreQR were variables and selector nesting, but since CSS custom properties and nesting are now widely supported across browsers, the less.php dependency can be ditched. To read the background color for contrast improvement, a regex is used on the theme CSS file. (5468a43a2f) Format locales according to Weblate (f3e2249a84) Estonian Translation (eb0ea03857) doc: Add link to Weblate + enhance markup (49394ebd9b)
41 lines
No EOL
2.3 KiB
PHP
41 lines
No EOL
2.3 KiB
PHP
<?php // This file is part of LibreQR, which is distributed under the GNU AGPLv3+ license
|
|
|
|
$loc = [
|
|
'subtitle' => "QR-koodide looja",
|
|
'description' => "Tee selliseid QR-koode, nagu vaja. Vali sisu, suurus või värvid…",
|
|
'tab_text' => "Tekst",
|
|
'tab_wifi' => "WiFi",
|
|
'tab_wifi_title' => "QR-koodid WiFi jaoks",
|
|
'label_wifi_ssid' => "Võrgunimi / SSID",
|
|
'label_wifi_password' => "Salasõna",
|
|
'label_content' => "Kodeeritav tekst",
|
|
'label_redundancy' => "Veakorrektsiooni tase",
|
|
'label_margin' => "Veeriste suurus",
|
|
'label_size' => "Pildi suurus",
|
|
'label_bgColor' => "Taustavärv",
|
|
'label_fgColor' => "Esiplaani värv",
|
|
'placeholder' => "Sisesta tekst, mida tahaksid QR-koodis näha",
|
|
'placeholder_wifi_ssid' => "Ruuter-A31B",
|
|
'placeholder_wifi_password' => "kena hobune valge traktor",
|
|
'help_wifi_password' => "WPA, WPA2 või WPA3 salasõna. Avatud võrgu puhul jäta tühjaks.",
|
|
'help_content' => "
|
|
<p>Sa võid kodeerida igasugust soovitud teksti.</p>
|
|
<p>Tarkvara, mis siis neid QR-koode dekodeerib peaks vastavalt sisu <a href='https://en.wikipedia.org/wiki/List_of_URI_schemes' hreflang='en' rel='help external noreferrer'>URI skeemile</a> soovitama avamiseks sobivat rakendust.</p>
|
|
<p>Näiteks veebilehe vaatamiseks: <code>https://www.example/</code></p>
|
|
<p>E-kirja saatmiseks: <code>mailto:contact@email.example</code></p>
|
|
<p>Asukoha jagamiseks: <code>geo:48.867564,2.364057</code></p>
|
|
",
|
|
'help_redundancy' => "Veakorrektsioon tähendab antud juhul QR-koodis leiduvat topeltteavet, mis peaks välistama, et dekodeerimisvigadest hoolimata on kood loetav. Kui veakorrektsiooni tase on suurem, siis tulemuseks on suurem QR-kood, aga see peaks ka suurema tõenäosusega olema hiljem loetav.",
|
|
'help_margin' => "QR-koodi ümbristeva valge riba laius pikslites.",
|
|
'help_size' => "Pildi laius ja kõrgus ilma veeristeta.",
|
|
'button_create' => "Genereeri",
|
|
'button_download' => "Salvesta see QR-kood",
|
|
'button_edit' => "Muuda",
|
|
'title_showOnlyQR' => "Näita vaid seda QR-koodi",
|
|
'alt_QR_before' => 'QR-kood tähendusega „',
|
|
'alt_QR_after' => '“',
|
|
'wifi_raw_content_before' => "Selles QR-koodis sisaldub: ",
|
|
'wifi_raw_content_after' => "",
|
|
'error_generation' => "QR-koodi loomisel tekkis viga. Proovi muid parameetreid.",
|
|
'error_404' => "Seda lehte pole olemas.",
|
|
]; |