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

translate: Add Turkish translation to android app #1920

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
33 changes: 33 additions & 0 deletions src/frontends/android/app/src/main/res/values-tr/arrays.xml
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2023 Aliberk Sandıkçı

Copyright (C) secunet Security Networks AG

This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
-->
<resources>
<!-- the order here must match the enum entries in VpnType.java -->
<string-array name="vpn_types">
<item>IKEv2 EAP (Kullanıcı İsmi/Parola)</item>
<item>IKEv2 Sertifika</item>
<item>IKEv2 Sertifika + EAP (Kullanıcı İsmi/Parola)</item>
<item>IKEv2 EAP-TLS (Sertifika)</item>
<item>IKEv2 EAP-TNC (Kullanıcı İsmi/Parola)</item>
</string-array>

<!-- the order here must match the enum entries in VpnProfile.java -->
<string-array name="apps_handling">
<item>Tüm uygulamalar VPN kullansın</item>
<item>Seçilen uygulamalar VPN kullanmasın</item>
<item>Sadece seçilen uygulamalar VPN kullansın</item>
</string-array>
</resources>