Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions res/values-pl/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,17 @@

<!-- aktualizacje od 2013/12/18 -->

<string name="scheduler_hourly_time_title">Sprawdzaj co</string>
<string name="cert_check_title">Aktualizacja certyfikatów</string>
<string name="cert_check_summary">Naciśnij aby sprawdzić zaktualizacje certyfikatów</string>
<string name="cert_status_title">Status certifikatów</string>
<string name="cert_status_version" formatted="false">Zainstalowana wersja: %s\n</string>
<string name="cert_status_remote" formatted="false">Wersja najnowsza: %s</string>
<string name="cert_status_available">Wciśnij aby pobrać i zainstalować</string>
<string name="cert_fetch_fail">Nie można pobrać certyfikatu z serwera</string>
<string name="cert_reboot_notice">Zrestartuj aby zastosować</string>
<string name="unit_hour">1 godzine</string>
<string name="unit_hours" formatted="false">%d godzin</string>
<string name="action_secure_mode">Bezpieczny</string>
<string name="secure_mode_enabled_title">Tryb bezpieczny: włączony</string>
<string name="secure_mode_enabled_description"><![CDATA[Przed flashowaniem zostanie zweryfikowany kryptograficzny podpis aktualizacji w celu potwierdzenia jej pochodzenia, a dodatkowe aktualizacje nie będą flashowane. Tryb ten jest zgodny tylko z <b>TWRP</b>.]]></string>
Expand Down
9 changes: 3 additions & 6 deletions res/values/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,16 @@
<string name="property_device">ro.yaap.device</string>

<!-- %s is expanded to property_version value. .zip, .delta, .update, .sign extensions added when needed -->
<string name="filename_base">YAAP-%s</string>
<string name="filename_base" formatted="false">YAAP-%s</string>

<!-- Path deltas are stored, relative to sdcard root -->
<string name="path_base">OpenDelta</string>

<!-- URL base to find .update and .sign files, %s is expanded to property_device value. Path is suffixed by (expanded) filename_base -->
<string name="url_base_update">https://mirror.codebucket.de/yaap/%s/</string>

<!-- URL base to find the full zip files, %s is replaced to be property_device value. -->
<string name="url_base_full">https://mirror.codebucket.de/yaap/%s/</string>
<string name="url_base_full" formatted="false">https://mirror.codebucket.de/yaap/%s/</string>

<!-- URL base to find the full zip sha256sum files, %s is replaced to be property_device value. -->
<string name="url_base_full_sum">https://mirror.codebucket.de/yaap/%s/</string>
<string name="url_base_full_sum" formatted="false">@string/url_base_full</string>

<!-- URL base suffix - Used only for download -->
<string name="url_base_suffix"></string>
Expand Down
8 changes: 0 additions & 8 deletions src/eu/chainfire/opendelta/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ public static Config getInstance(Context context) {
private final String filename_base;
private final String path_base;
private final String path_flash_after_update;
private final String url_base_update;
private final String url_base;
private final String url_base_sum;
private final String url_base_suffix;
Expand Down Expand Up @@ -91,8 +90,6 @@ private Config(Context context) {
File.separator);
path_flash_after_update = String.format(Locale.ENGLISH, "%s%s%s",
path_base, "FlashAfterUpdate", File.separator);
url_base_update = String.format(Locale.ENGLISH,
res.getString(R.string.url_base_update), property_device);
url_base = String.format(
res.getString(R.string.url_base_full), property_device);
url_base_sum = String.format(
Expand Down Expand Up @@ -121,7 +118,6 @@ private Config(Context context) {
Logger.d("filename_base_prefix: %s", filename_base_prefix);
Logger.d("path_base: %s", path_base);
Logger.d("path_flash_after_update: %s", path_flash_after_update);
Logger.d("url_base_update: %s", url_base_update);
Logger.d("url_base: %s", url_base);
Logger.d("url_base_sum: %s", url_base_sum);
Logger.d("url_branch_name: %s", url_branch_name);
Expand All @@ -144,10 +140,6 @@ public String getPathFlashAfterUpdate() {
return path_flash_after_update;
}

public String getUrlBaseUpdate() {
return url_base_update;
}

public String getUrlBase() {
return url_base;
}
Expand Down