Skip to content

Instantly share code, notes, and snippets.

@Swyter
Last active February 14, 2019 08:01
Show Gist options
  • Save Swyter/abd4bb3ee5fec4db1d30c43e09f5f9bc to your computer and use it in GitHub Desktop.
Save Swyter/abd4bb3ee5fec4db1d30c43e09f5f9bc to your computer and use it in GitHub Desktop.
CleverDialer Notes
curl --header 'Accept: application/json' --header 'Authorization: Basic Y2RhbmQ6djFna3dpamhzbmdyZ29pNjh6c2Z3Mzh2' 'https://ws.cleverdialer.com/api/1.3/spam?region=ES' -v -o cleverdialer.json
jq .[].normalizedPhone -r cleverdialer.json > blocklist.txt
# swy: `grep +34 | wc -l` reports 2657 local spam numbers vs the 12704 total entries
cat blocklist.txt | grep +34 > NoPhoneSpam_blacklist_es.txt
# swy: convert into https://f-droid.org/packages/at.bitfire.nophonespam's format
sed -i s/$/:\ Clever\ Dialer/ NoPhoneSpam_blacklist_es.txt
# swy: this is kind of (needlessly) slow
cat ./blocklist.txt | while read i; do echo sqlite3 blocklist.db "insert into 'contact' (name, type) values (´${i:2}´, 1)"; done
cat ./blocklist.txt | tr -d '\r' | sed 's/.*/insert into contact (name, type) values ("&", 1);/' > blocklist.sql
# swy: issue multiple SQL insertions in one go, there you go; in https://f-droid.org/packages/com.kaliturin.blacklist's format
echo 'insert into contact (name, type) values' > blocklist.sql && cat ./blocklist.txt | tr -d '\r' | sed 's/.*/("&", 1),/' >> blocklist.sql
sed -i '$ s/.$/;/' blocklist.sql
sqlite3.exe blacklist_new.db < blocklist.sql
Usuario@DESKTOP-SJQ6SS1 MINGW64 /c/Users/Usuario/Downloads/cleverdialer-src/src/com/validio
$ grep -Ri 'getspamnumber'
kontaktkarte/dialer/controller/ShowcaseView.java: localObject2 = ((ApiClient)localObject2).getSpamNumbers();
kontaktkarte/dialer/controller/ShowcaseView.java.obf: SpamNumberAO[] arrayOfSpamNumberAO = b.getSpamNumbers();
kontaktkarte/dialer/controller/xy/b.java: localObject = ((ApiClient)localObject).getSpamNumbers();
kontaktkarte/dialer/controller/xy/b.java.obf: localObject = ((ApiClient)localObject).getSpamNumbers();
kontaktkarte/dialer/model/labs/ApiClient.java: public de.validio.cdand.model.itunes.SpamNumberAO[] getSpamNumbers()
kontaktkarte/dialer/model/labs/ApiClient.java.obf: public SpamNumberAO[] getSpamNumbers()
Usuario@DESKTOP-SJQ6SS1 MINGW64 /c/Users/Usuario/Downloads/cleverdialer-src/src/com/validio
$ grep -Ri '2131755221'
kontaktkarte/dialer/model/labs/ApiClient.java: mBaseUri = Uri.parse(paramContext.getString(2131755221));
kontaktkarte/dialer/model/labs/ApiClient.java.obf: mBaseUri = Uri.parse(paramContext.getString(2131755221));
Usuario@DESKTOP-SJQ6SS1 MINGW64 /c/Users/Usuario/Downloads/cleverdialer-src/src/com/validio
$ grep -Ri '2131755049'
kontaktkarte/dialer/model/labs/CdwsRestTemplate.java: registerInterceptor(new DecodeUtilBasicAuthInterceptor(mContext.getString(2131755049), mContext.getString(2131755220)));
kontaktkarte/dialer/model/labs/CdwsRestTemplate.java.obf: registerInterceptor(new DecodeUtilBasicAuthInterceptor(mContext.getString(2131755049), mContext.getString(2131755220)));
[root@heliopolis kontaktkarte]# grep -R 2131755221
[root@heliopolis kontaktkarte]# grep -R 7F1000D5
[root@heliopolis kontaktkarte]# cd ../../
[root@heliopolis com]# cd ..
[root@heliopolis smali]# cd ..
[root@heliopolis thing]# grep 7F1000D5
^C
[root@heliopolis thing]# grep -R 7F1000D5
[root@heliopolis thing]# grep -Ri 7F1000D5
smali/com/validio/kontaktkarte/dialer/model/api/ApiClient.smali: const v0, 0x7f1000d5
res/values/public.xml: <public type="string" name="kk_base_url" id="0x7f1000d5" />
[root@heliopolis thing]# grep -Ri 7F100029
smali/com/validio/kontaktkarte/dialer/model/api/CdwsRestTemplate.smali: const v2, 0x7f100029
res/values/public.xml: <public type="string" name="auth" id="0x7f100029" />
[root@heliopolis thing]# grep -Ri 7F1000D4
smali/com/validio/kontaktkarte/dialer/model/web/CdBackofficeRestTemplate.smali: const v3, 0x7f1000d4
smali/com/validio/kontaktkarte/dialer/model/api/CdwsRestTemplate.smali: const v3, 0x7f1000d4
res/values/public.xml: <public type="string" name="key" id="0x7f1000d4" />
[root@heliopolis thing]#
<string name="auth">sxKYsIG34+qV9oyCvYmXvrbrnKaHtu7m272Yj73TxaC365GyrL3q5aiU3NCkubqDpvY=</string>
<string name="backofficeAuth">GRIyGisdSUAcKTUhQHIgNTgPFy8oNQ0pMRwiYw0PHERPFmAXOgFDEC8hJS5VAQRLVkEIOR8QXg==</string>
<string name="key">HgSj4cPtXZySNev6</string>
<string name="kk_base_url">https://ws.cleverdialer.com/api/1.3</string>
https://auth:key@ws.cleverdialer.com/api/1.3/spam?region=es
String crap = DecodeUtil.getString("sxKYsIG34+qV9oyCvYmXvrbrnKaHtu7m272Yj73TxaC365GyrL3q5aiU3NCkubqDpvY=", "HgSj4cPtXZySNev6"); // crap: Y2RhbmQ6djFna3dpamhzbmdyZ29pNjh6c2Z3Mzh2
curl -H "Accept: application/json" --header 'Authorization: Basic Y2RhbmQ6djFna3dpamhzbmdyZ29pNjh6c2Z3Mzh2' 'https://ws.cleverdialer.com/api/1.3/spam?region=es' -v # <- works!
String backoffice_crap = DecodeUtil.getString("GRIyGisdSUAcKTUhQHIgNTgPFy8oNQ0pMRwiYw0PHERPFmAXOgFDEC8hJS5VAQRLVkEIOR8QXg==", "HgSj4cPtXZySNev6"); // backoffice_crap: Y2RhbmQ6VUR0YiA4d0lXIEZRYkYgU3hxYyBtRUs4IDkxaXA=
jq .[].normalizedPhone -r cleverdialer.json
Y2RhbmQ6djFna3dpamhzbmdyZ29pNjh6c2Z3Mzh2 <--> cdand:v1gkwijhsngrgoi68zsfw38v
GRIyGisdSUAcKTUhQHIgNTgPFy8oNQ0pMRwiYw0PHERPFmAXOgFDEC8hJS5VAQRLVkEIOR8QXg== <--> cdand:UDtb 8wIW FQbF Sxqc mEK8 91ip
GNU nano 3.2 smali/de/validio/cdand/model/api/DecodeUtilBasicAuthInterceptor.smali
.class public Lde/validio/cdand/model/api/DecodeUtilBasicAuthInterceptor;
.super Lde/validio/cdand/model/AuthorizationHeaderInterceptor;
.source "DecodeUtilBasicAuthInterceptor.java"
# direct methods
.method public constructor <init>(Ljava/lang/String;Ljava/lang/String;)V
.locals 2
.line 11
new-instance v0, Ljava/lang/StringBuilder;
invoke-direct {v0}, Ljava/lang/StringBuilder;-><init>()V
const-string v1, "Basic "
invoke-virtual {v0, v1}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;
invoke-static {p1, p2}, Lde/validio/cdand/model/DecodeUtil;->getString(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
move-result-object p1
invoke-virtual {v0, p1}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;
invoke-virtual {v0}, Ljava/lang/StringBuilder;->toString()Ljava/lang/String;
move-result-object p1
invoke-direct {p0, p1}, Lde/validio/cdand/model/AuthorizationHeaderInterceptor;-><init>(Ljava/lang/String;)V
return-void
.end method
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="abc_action_bar_home_description">Navigate home</string>
<string name="abc_action_bar_up_description">Navigate up</string>
<string name="abc_action_menu_overflow_description">More options</string>
<string name="abc_action_mode_done">Done</string>
<string name="abc_activity_chooser_view_see_all">See all</string>
<string name="abc_activitychooserview_choose_application">Choose an app</string>
<string name="abc_capital_off">OFF</string>
<string name="abc_capital_on">ON</string>
<string name="abc_font_family_body_1_material">sans-serif</string>
<string name="abc_font_family_body_2_material">sans-serif-medium</string>
<string name="abc_font_family_button_material">sans-serif-medium</string>
<string name="abc_font_family_caption_material">sans-serif</string>
<string name="abc_font_family_display_1_material">sans-serif</string>
<string name="abc_font_family_display_2_material">sans-serif</string>
<string name="abc_font_family_display_3_material">sans-serif</string>
<string name="abc_font_family_display_4_material">sans-serif-light</string>
<string name="abc_font_family_headline_material">sans-serif</string>
<string name="abc_font_family_menu_material">sans-serif</string>
<string name="abc_font_family_subhead_material">sans-serif</string>
<string name="abc_font_family_title_material">sans-serif-medium</string>
<string name="abc_search_hint">Search…</string>
<string name="abc_searchview_description_clear">Clear query</string>
<string name="abc_searchview_description_query">Search query</string>
<string name="abc_searchview_description_search">Search</string>
<string name="abc_searchview_description_submit">Submit query</string>
<string name="abc_searchview_description_voice">Voice search</string>
<string name="abc_shareactionprovider_share_with">Share with</string>
<string name="abc_shareactionprovider_share_with_application">Share with %s</string>
<string name="abc_toolbar_collapse_description">Collapse</string>
<string name="active_caller_id_disclaimer">Do you want to use the caller ID? To make this work, phone numbers of unrecognizable callers need to be transferred to the search service regularly.</string>
<string name="active_caller_id_enabled">Caller id activated</string>
<string name="add_number_to_block_text">Please enter a phone number</string>
<string name="add_number_to_blocklist_dialog_title">Your changes have not been saved</string>
<string name="add_to_block">Block now</string>
<string name="admob_app_id">ca-app-pub-4719832876560125~8375149830</string>
<string name="advertisement">Ad</string>
<string name="app_display_name">Clever Dialer</string>
<string name="app_name">CleverDialer</string>
<string name="appbar_scrolling_view_behavior">android.support.design.widget.AppBarLayout$ScrollingViewBehavior</string>
<string name="appointment_time">%s</string>
<string name="appsflyer_api_key">YEu9dzkwXwV8Zf3hS9P9q5</string>
<string name="auth">sxKYsIG34+qV9oyCvYmXvrbrnKaHtu7m272Yj73TxaC365GyrL3q5aiU3NCkubqDpvY=</string>
<string name="backofficeAuth">GRIyGisdSUAcKTUhQHIgNTgPFy8oNQ0pMRwiYw0PHERPFmAXOgFDEC8hJS5VAQRLVkEIOR8QXg==</string>
<string name="birthday">birthday</string>
<string name="birthday_2_days_ago">%1$s was two days ago</string>
<string name="birthday_in_2_days">%1$s is in two days</string>
<string name="birthday_today">%1$s is today</string>
<string name="birthday_tomorrow">%1$s is tomorrow</string>
<string name="birthday_yesterday">%1$s was yesterday</string>
<string name="block_done">Phone number blocked</string>
<string name="block_number">Block number</string>
<string name="block_number_not_loaded">Number of blockings could not be loaded</string>
<string name="block_phone_number">Block phone numbers</string>
<string name="block_rate_info_name">Rate %s and help us to identify spam calls.</string>
<string name="block_rate_info_number">Rate the phone number %s and help us to identify spam calls.</string>
<string name="block_screen_default_dialer">This ensures that unwanted calls can be &lt;b>reliably blocked&lt;/b>. Other phone apps are not affected by this.</string>
<string name="block_screen_default_dialer_headline">Now, you can make Clever Dialer the &lt;b>default phone app&lt;/b>.</string>
<string name="block_screen_permissions">Clever Dialer requires at least &lt;b>access&lt;/b> to &lt;b>phone calls&lt;/b> and &lt;b>contacts&lt;/b> to be able to &lt;b>identify callers&lt;/b> and display contact information.</string>
<string name="block_screen_permissions_only">Clever Dialer requires &lt;b>access&lt;/b> to &lt;b>phone calls&lt;/b> and &lt;b>contacts&lt;/b> to be able to &lt;b>identify callers&lt;/b> and display contact information.</string>
<string name="block_screen_spam_headline">You are not protected from annoying spam call, yet!</string>
<string name="blocked">blocked</string>
<string name="blocking">blocking</string>
<string name="blocklist">Blocklist</string>
<string name="book_now">Book now online</string>
<string name="bottom_sheet_behavior">android.support.design.widget.BottomSheetBehavior</string>
<string name="btn_continue">Continue</string>
<string name="btn_discard">Discard</string>
<string name="btn_save">Save</string>
<string name="call">Call</string>
<string name="call_reason_charity">Charity</string>
<string name="call_reason_commercial">Commercial</string>
<string name="call_reason_cost_trap">Cost trap</string>
<string name="call_reason_counsel">Counsel</string>
<string name="call_reason_customer_service">Customer Service</string>
<string name="call_reason_debt_collection_agency">Debt collection agency</string>
<string name="call_reason_mailbox">Mailbox</string>
<string name="call_reason_other">Other reason</string>
<string name="call_reason_sales">Sales</string>
<string name="call_reason_service">Service</string>
<string name="call_reason_silent_call">Silent call</string>
<string name="call_reason_support">Support</string>
<string name="call_reason_survey">Survey</string>
<string name="call_reason_sweepstake">Sweepstake</string>
<string name="caller_warning">Warning against number!</string>
<string name="calllog_block_suppressed_number">Block calls</string>
<string name="calllog_blocked">Blocked</string>
<string name="calllog_delete_entry">Delete</string>
<string name="calllog_entry_removed">Entry removed</string>
<string name="calllog_event_date_pattern">"'at' dd. MMMM"</string>
<string name="calllog_show_older_entries">SHOW OLDER ENTRIES</string>
<string name="calllog_spam">Identified as spam</string>
<string name="calllog_spam_hint">Warning against number!</string>
<string name="calllog_time_lastweek">Last week</string>
<string name="calllog_time_older">Older</string>
<string name="calllog_time_today">Today</string>
<string name="calllog_time_x_days_ago">%s days ago</string>
<string name="calllog_time_yesterday">Yesterday</string>
<string name="calllog_unblock_suppressed_number">Unblock calls</string>
<string name="calllog_unknown">Suppressed phone number</string>
<string name="cancel_call_book_now">Cancel call and book online</string>
<string name="categories_header">Popular places and businesses around you</string>
<string name="category_hairdresser">Hairdressers</string>
<string name="category_hairdresser_query">Hairdresser</string>
<string name="category_hotel">Hotels</string>
<string name="category_hotel_query">Hotel</string>
<string name="category_medic">Physicians</string>
<string name="category_medic_query">Physician</string>
<string name="category_pharmacy">Pharmacies</string>
<string name="category_pharmacy_query">Pharmacy</string>
<string name="category_restaurant">Restaurants</string>
<string name="category_restaurant_query">Restaurant</string>
<string name="category_taxi">Taxis</string>
<string name="category_taxi_query">Taxi</string>
<string name="cd_support_email">support@cleverdialer.com</string>
<string name="cdbackoffice_terms_privacy_url">https://backoffice.cleverdialer.com/wp-json/cdbo/v1/get_terms_or_privacy?type=TERMS_AND_CONDITIONS</string>
<string name="character_counter_pattern">%1$d / %2$d</string>
<string name="clever_dialer_pro">Clever Dialer PRO</string>
<string name="cleverdialer_link">http://www.cleverdialer.com</string>
<string name="close">Close</string>
<string name="com.crashlytics.android.build_id">42e0c03f-76fa-402f-9c31-46be1071f6a9</string>
<string name="com_facebook_device_auth_instructions">Visit &lt;b>facebook.com/device&lt;/b> and enter the code shown above.</string>
<string name="com_facebook_image_download_unknown_error">Unexpected error while downloading an image.</string>
<string name="com_facebook_internet_permission_error_message">WebView login requires INTERNET permission</string>
<string name="com_facebook_internet_permission_error_title">AndroidManifest Error</string>
<string name="com_facebook_like_button_liked">Liked</string>
<string name="com_facebook_like_button_not_liked">Like</string>
<string name="com_facebook_loading">Loading…</string>
<string name="com_facebook_loginview_cancel_action">Cancel</string>
<string name="com_facebook_loginview_log_in_button">Log in</string>
<string name="com_facebook_loginview_log_in_button_continue">Continue with Facebook</string>
<string name="com_facebook_loginview_log_in_button_long">Log in with Facebook</string>
<string name="com_facebook_loginview_log_out_action">Log out</string>
<string name="com_facebook_loginview_log_out_button">Log out</string>
<string name="com_facebook_loginview_logged_in_as">Logged in as: %1$s</string>
<string name="com_facebook_loginview_logged_in_using_facebook">Logged in using Facebook</string>
<string name="com_facebook_send_button_text">Send</string>
<string name="com_facebook_share_button_text">Share</string>
<string name="com_facebook_smart_device_instructions">To connect your account, open the Facebook app on your mobile device and check for notifications.</string>
<string name="com_facebook_smart_device_instructions_or">- OR -</string>
<string name="com_facebook_smart_login_confirmation_cancel">Not you?</string>
<string name="com_facebook_smart_login_confirmation_continue_as">Continue as %1$s</string>
<string name="com_facebook_smart_login_confirmation_title">Confirm Login</string>
<string name="com_facebook_tooltip_default">"You're in control - choose what info you want to share with apps."</string>
<string name="comments">Comments</string>
<string name="common_google_play_services_enable_button">Enable</string>
<string name="common_google_play_services_enable_text">"%1$s won't work unless you enable Google Play services."</string>
<string name="common_google_play_services_enable_title">Enable Google Play services</string>
<string name="common_google_play_services_install_button">Install</string>
<string name="common_google_play_services_install_text">"%1$s won't run without Google Play services, which are missing from your device."</string>
<string name="common_google_play_services_install_title">Get Google Play services</string>
<string name="common_google_play_services_notification_channel_name">Google Play services availability</string>
<string name="common_google_play_services_notification_ticker">Google Play services error</string>
<string name="common_google_play_services_unknown_issue">%1$s is having trouble with Google Play services. Please try again.</string>
<string name="common_google_play_services_unsupported_text">"%1$s won't run without Google Play services, which are not supported by your device."</string>
<string name="common_google_play_services_update_button">Update</string>
<string name="common_google_play_services_update_text">"%1$s won't run unless you update Google Play services."</string>
<string name="common_google_play_services_update_title">Update Google Play services</string>
<string name="common_google_play_services_updating_text">"%1$s won't run without Google Play services, which are currently updating."</string>
<string name="common_google_play_services_wear_update_text">New version of Google Play services needed. It will update itself shortly.</string>
<string name="common_open_on_phone">Open on phone</string>
<string name="common_signin_button_text">Sign in</string>
<string name="common_signin_button_text_long">Sign in with Google</string>
<string name="complete_name">Complete name</string>
<string name="completion">completion</string>
<string name="count_of_blocked">%s users have blocked this number in the last 12 months.</string>
<string name="count_of_blocked_single">1 user has blocked this number in the last 12 months.</string>
<string name="default_dialer_request_notification">This call could not be blocked. You can significantly improve call blocking by making Clever Dialer your default Phone app. Other calling apps are not affected by this.</string>
<string name="default_dialer_request_notification_header">Call could not be blocked</string>
<string name="default_web_client_id">946551026323-kk9ti6rf0uhft4apd6i8cjlo30fdf58s.apps.googleusercontent.com</string>
<string name="detail_page_banner_ad_unit_id">ca-app-pub-4719832876560125/3235698637</string>
<string name="details">Details</string>
<string name="disable_ads">Remove ads</string>
<string name="draw_over_permission">To be able to recognize spam already on call arrival, please give the following permission</string>
<string name="draw_over_permission_activate">Activate</string>
<string name="draw_over_permission_continue_without_protection">Continue without protection</string>
<string name="draw_over_permission_grand_permission_now">Grant permission now</string>
<string name="draw_over_permission_headline">Important!</string>
<string name="draw_over_permission_hint">Show contact details already on call arrival?</string>
<string name="draw_over_permission_spam_hint">Warning already on call arrival?</string>
<string name="ex_contact_details_found">Found on</string>
<string name="exo_controls_fastforward_description">Fast forward</string>
<string name="exo_controls_next_description">Next track</string>
<string name="exo_controls_pause_description">Pause</string>
<string name="exo_controls_play_description">Play</string>
<string name="exo_controls_previous_description">Previous track</string>
<string name="exo_controls_rewind_description">Rewind</string>
<string name="exo_controls_stop_description">Stop</string>
<string name="fb_app_id">298785683642338</string>
<string name="fcm_fallback_notification_channel_label">Miscellaneous</string>
<string name="feedback">Feedback</string>
<string name="feedback_dialog_btn_cancel">Cancel</string>
<string name="feedback_dialog_btn_submit">SEND</string>
<string name="feedback_dialog_content">Tell us your ideas. We are very grateful for every suggestion to make our Dialer better every day.</string>
<string name="feedback_dialog_hint">Your message</string>
<string name="feedback_dialog_mail_subject">Clever Dialer Feedback</string>
<string name="feedback_dialog_title">Tell us your opinion</string>
<string name="firebase_database_url">https://clever-dialer-live.firebaseio.com</string>
<string name="firebase_sender_id">946551026323</string>
<string name="gcm_defaultSenderId">946551026323</string>
<string name="gcm_fallback_notification_channel_label">Miscellaneous</string>
<string name="google_api_key">AIzaSyBNEltItkqG-yKbP1sqMTr1xfJbPdCDkOQ</string>
<string name="google_app_id">1:946551026323:android:d47e3585a9763cb5</string>
<string name="google_crash_reporting_api_key">AIzaSyBNEltItkqG-yKbP1sqMTr1xfJbPdCDkOQ</string>
<string name="google_storage_bucket">clever-dialer-live.appspot.com</string>
<string name="hint_btn_calllog">UNDERSTOOD</string>
<string name="hint_btn_categories">GOT IT</string>
<string name="hint_btn_speeddial">SUPER</string>
<string name="hint_calllog">Complements unrecognizable phone numbers in your call history with names.</string>
<string name="hint_categories">With the search you can also find contacts that are not stored in your address book.</string>
<string name="hint_speeddial">With the speed dial you can easily access your favorites.</string>
<string name="hint_subtext_calllog">We also complement past calls. Just scroll through your call history to see.</string>
<string name="invalid_number">Invalid number</string>
<string name="key">HgSj4cPtXZySNev6</string>
<string name="kk_base_url">https://ws.cleverdialer.com/api/1.3</string>
<string name="legalnote_close">CLOSE</string>
<string name="legalnote_dialog_error">At the moment there is no internet connection so we could not verify whether there is a later version of the privacy statement. Please go to this page again when you have an internet connection.</string>
<string name="legalnote_error_report">"Error report:
"</string>
<string name="legalnote_internet_hint">Please make sure that your phone is connected to internet for the initial start of Clever Dialer</string>
<string name="legalnote_mail_subject">@string/legalnote_unexpected_error</string>
<string name="legalnote_no_internet">No internet connection</string>
<string name="legalnote_reload">RELOAD</string>
<string name="legalnote_send_error_report">Send error report</string>
<string name="legalnote_unexpected_error">Unexpected error</string>
<string name="legalnote_unexpected_error_hint">Please help us with the analysis and send us the error report.</string>
<string name="license_key">6BLtxvLAleH50vLV+srO5veZmfiLwJ3a/drx897459ymn+3G8sCf7PPf8ePU+tS137XiydLX7L3J5en4/tHu2PWZkOjRxbe7jMX++Pzs6ejWhMv66Lex3cr91+fi3eOi2ovz9fzokvuM79jA25Tl2MmGk/3VzYa83dv1xaPSwMjtqc3A6djt6en22obIydTvx6nw9u+xmtuOqfaKofju/6uJltXysrng1+zlytLS3N/47Ji5zPqN49/l49Tk3Pym5vGV99Tjubji7f2C8sHHu6vuyt7f1qvC7uib98b30ML7hM3Ije/v+dapgvre2PbA+azkxOPq7aTs/sj56evhuvSw0NfCyIv64OyB2eDBnsCuiu361s27z+6o2N73guDY7YfH5Y62sNjtxePi+fLc3s6MkPbK95bfi/D3gL6LkryshJTI88Wd0orG5cPW1fXq86b6yoj6ucPS0vnixo7A4NOm1tf2wO7k4PXn98LR5MLKtPXG+vG52fD7yubljtH4/K2T+PLGndr53sLc+93q6fPr69yMu7LS/8nTwQ==</string>
<string name="load_more_comments">LOAD MORE COMMENTS</string>
<string name="location_settings_hint">"Grant access to your device's location to search for popular places and businesses around you."</string>
<string name="location_settings_hint_button">"GRANT ACCESS TO DEVICE'S LOCATION"</string>
<string name="messenger_send_button_text">Send</string>
<string name="more">More</string>
<string name="more_contact_details">More details for phone number</string>
<string name="negative">NEGATIVE</string>
<string name="neutral">NEUTRAL</string>
<string name="new_terms_topic">new_terms_live</string>
<string name="no">NO</string>
<string name="no_connection_edge">You need 3G/4G or a WiFi connection to let us identify incoming callers • Clever Dialer</string>
<string name="no_details_found">No name found.</string>
<string name="no_internet">No internet connection • Cannot load further details about this caller • Clever Dialer</string>
<string name="not_now">Not now</string>
<string name="notification_block_suppressed_number">suppressed phone number</string>
<string name="notification_blocked_text">Call from %s has been blocked.</string>
<string name="notification_spam_text">You are now protected from known spam calls.</string>
<string name="number_rate_now">RATE NOW</string>
<string name="numberdialog_action">Call %s</string>
<string name="numberdialog_rememberchoice">Remember choice</string>
<string name="numberdialog_title">Dial number</string>
<string name="open_Info_closed">is closed</string>
<string name="open_Info_open">is open</string>
<string name="open_store_dialog_btn_pos">RATE CLEVER DIALER</string>
<string name="open_store_dialog_btn_remind_me">"I'LL DO IT LATER"</string>
<string name="open_store_dialog_title">Great, how about rating our app with 5 stars in the Play Store?</string>
<string name="operation_not_supported">"Your mobile phone doesn't support this operation"</string>
<string name="other_postcall_number_of_comments">%d comments and further details</string>
<string name="overlay_header_txt">Found on</string>
<string name="overlay_neutral_rate_count">%1$d ratings</string>
<string name="overlay_number_suppressed">Suppressed phone number • Cannot load more details about the caller • Clever Dialer</string>
<string name="overlay_positive_rate_count">%1$d of %2$d ratings are positive</string>
<string name="overlay_spam_negative_rate_count">%1$d of %2$d ratings are negative</string>
<string name="overlay_spam_total_count">blocked %1$s times • %2$s of the ratings for this number are negative • %3$s ratings • Clever Dialer</string>
<string name="overlay_total_count">%1$s of the ratings for this number are positive • %2$s ratings • Clever Dialer</string>
<string name="overlay_url_tb">www.dastelefonbuch.de</string>
<string name="overlay_url_vebidoo">www.vebidoo.de</string>
<string name="partnerId">cdand</string>
<string name="password_toggle_content_description">Toggle password visibility</string>
<string name="path_password_eye">M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z</string>
<string name="path_password_eye_mask_strike_through">M2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z</string>
<string name="path_password_eye_mask_visible">M2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z</string>
<string name="path_password_strike_through">M3.27,4.27 L19.74,20.74</string>
<string name="permissions_disclaimer">To use this function we need to transfer data like the phone number or your rating to our server. Apart from that we store a kind of user ID to prevent spam. This ID cannot be used to identify an individual, but should prevent our ratings from being polluted by spam. We would kindly ask you to give the app the permissions that are necessary to do this.</string>
<string name="phone">Phone: %s</string>
<string name="phone_number">Phone number</string>
<string name="positive">POSITIVE</string>
<string name="postcall_ask_for_ads_free">Use Clever Dialer ad-free?</string>
<string name="postcall_ask_for_name">Can you add the name?</string>
<string name="postcall_ask_for_name_hint">Here you can add a missing name to the phone number or correct the displayed name. By doing so, you improve the caller identification for all users. :)</string>
<string name="postcall_ask_for_name_menu">Add name</string>
<string name="postcall_ask_for_pro_feature">Block spam automatically?</string>
<string name="postcall_large_banner_ad_unit_id">ca-app-pub-4719832876560125/3949731035</string>
<string name="postcall_notification_body">Show more details • Clever Dialer</string>
<string name="postcall_notification_title">Phone call with %s</string>
<string name="postcall_notification_title_missed_call">Missed call %s</string>
<string name="postcall_overlay_block">Block all calls from %s?</string>
<string name="postcall_overlay_book_a_table">Book a table</string>
<string name="postcall_overlay_btn_number_rated">RATED</string>
<string name="postcall_overlay_btn_rate_number">RATE</string>
<string name="postcall_overlay_btn_save_contact">SAVE</string>
<string name="postcall_overlay_call_duration">Call duration</string>
<string name="postcall_overlay_call_duration_detail">%1$s min. %2$s sec.</string>
<string name="postcall_overlay_directory_url">Found on %s • Clever Dialer</string>
<string name="postcall_overlay_loading_error">Further details could not be loaded! • Clever Dialer</string>
<string name="postcall_overlay_missed_call">Missed call</string>
<string name="postcall_overlay_preloader">Loading details ... • Clever Dialer</string>
<string name="postcall_overlay_reload_btn">RETRY</string>
<string name="postcall_overlay_unblock">Do you want to unblock %s?</string>
<string name="postcall_rate_app">"How do you like Clever Dialer's caller identification?"</string>
<string name="postcall_rate_app_comment_question">Tell us your opinion</string>
<string name="postcall_rate_app_feedback">Feedback</string>
<string name="postcall_rate_business_notification_message">Share your info about this place</string>
<string name="postcall_rate_business_notification_title">Clever Dialer - %s</string>
<string name="postcall_share_app">Would you like %s to be protected from spam as well? Then simply recommend Clever Dialer :)</string>
<string name="postcall_share_app_social">If you like our app, please recommend it to your friends.</string>
<string name="precall_unknown_name_incoming_hint">Phone Call from:</string>
<string name="precall_unknown_name_outgoing_hint">Phone Call:</string>
<string name="pref_block">BLOCK</string>
<string name="pref_block_spammers">blockSpammers</string>
<string name="pref_block_suppressed_numbers">blockSuppressedNumbers</string>
<string name="pref_bug_tracking">bugTrackingEnabled</string>
<string name="pref_callblock_notification">callBlockNotificationEnabled</string>
<string name="pref_caller_identification">callerIdentificationEnabled</string>
<string name="pref_calllog_resolution">callLogResolutionEnabled</string>
<string name="pref_calllog_resolution_only_wifi">callLogResolutionOnlyWifi</string>
<string name="pref_callrate_business_notification">callRateBusinessNotificationEnabled</string>
<string name="pref_category_add_phone_numbers">ENRICH PHONE NUMBERS</string>
<string name="pref_category_block_numbers">BLOCK PHONE NUMBERS</string>
<string name="pref_category_contacts">CONTACTS</string>
<string name="pref_category_general">GENERAL</string>
<string name="pref_category_info">MISC</string>
<string name="pref_category_notifications">NOTIFICATIONS</string>
<string name="pref_category_postcall_overlay">INFORMATION AFTER A CALL</string>
<string name="pref_category_precall_overlay">INFORMATION BEFORE A CALL</string>
<string name="pref_category_spamlist">SPAM PROTECTION</string>
<string name="pref_category_tracking">PRIVACY</string>
<string name="pref_contacts_name_format">contactsNameFormat</string>
<string name="pref_contacts_name_format_first_name_first">First name first</string>
<string name="pref_contacts_name_format_last_name_first">Last name first</string>
<string name="pref_contacts_sort_by">contactsSortBy</string>
<string name="pref_contacts_sort_by_first_name">First name</string>
<string name="pref_contacts_sort_by_last_name">Last name</string>
<string name="pref_default_contacts_name_format">@string/sortByFirstname</string>
<string name="pref_default_contacts_sort_by">@string/sortByFirstname</string>
<string name="pref_default_deep_linking">deepLinking</string>
<string name="pref_default_no_ads_purchase">noAds</string>
<string name="pref_default_precall_overlay_position">top</string>
<string name="pref_draw_over_permission">drawOverPermission</string>
<string name="pref_draw_pre_call">drawOverPreCall</string>
<string name="pref_key_build_version">buildVersion</string>
<string name="pref_last_spam_number_update">lastSpamNumberUpdate</string>
<string name="pref_mock_location">mockLocationEnabled</string>
<string name="pref_offline_spam_number_list_size">offlineSpamNumberListSize</string>
<string name="pref_postcall_overlay_incoming_calls">postcallOverlayIncomingCalls</string>
<string name="pref_postcall_overlay_local_contact_calls">postcallOverlayLocalContactCalls</string>
<string name="pref_postcall_overlay_notification">postcallOverlayNotification</string>
<string name="pref_postcall_overlay_outgoing_calls">postcallOverlayOutgoingCalls</string>
<string name="pref_precall_overlay_local_contact_calls">precallOverlayLocalContactCalls</string>
<string name="pref_precall_overlay_outgoing_calls">precallOverlayOutgoingCalls</string>
<string name="pref_precall_overlay_position">precallOverlayPosition</string>
<string name="pref_precall_overlay_position_bottom">Bottom</string>
<string name="pref_precall_overlay_position_middle">Middle</string>
<string name="pref_precall_overlay_position_top">Top</string>
<string name="pref_spam_list_updated_notification">spamListUpdatedNotification</string>
<string name="pref_spamlist_update_only_wifi">spamlistUpdateOnlyWifi</string>
<string name="pref_spamlist_updater">spamlistUpdater</string>
<string name="pref_spamlist_updater_body">"Last update of spam protection: %1$s.
You are now protected from %2$d spam numbers."</string>
<string name="pref_summary_block_spammers">Blocks spam calls automatically. (Clever Dialer PRO)</string>
<string name="pref_summary_block_suppressed_numbers">Callers with suppressed phone numbers will always be blocked</string>
<string name="pref_summary_bug_tracking">Transfer data for error analysis to Clever Dialer</string>
<string name="pref_summary_build_version">Version:</string>
<string name="pref_summary_call_block">Notify me when an incoming call is blocked.</string>
<string name="pref_summary_calllog">Enrich phone numbers in the call history by adding a name</string>
<string name="pref_summary_contacts_name_format">%s</string>
<string name="pref_summary_contacts_sort_by">%s</string>
<string name="pref_summary_draw_over_permission_request">To be able to recognize spam already on call arrival, please give the missing permission</string>
<string name="pref_summary_postcall_incoming_calls">Show further details for the phone number after an incoming call has been finished</string>
<string name="pref_summary_postcall_outgoing_calls">Show further details for the phone number after an outgoing call has been finished</string>
<string name="pref_summary_postcall_overlay_local_contact">Shows you important information e.g. that it is your contacts birthday</string>
<string name="pref_summary_postcall_overlay_notification">Send me a notification as soon as a call has been ended</string>
<string name="pref_summary_precall_overlay_incoming">Show more details for phone numbers of incoming calls</string>
<string name="pref_summary_precall_overlay_local_contact">Shows you important information e.g. that it is your contacts birthday</string>
<string name="pref_summary_precall_overlay_outgoing">Show more details for phone numbers of outgoing calls</string>
<string name="pref_summary_precall_overlay_position">Where on the screen should the information be displayed? %s</string>
<string name="pref_summary_rate_business_notification">Share what you know about places</string>
<string name="pref_summary_spam_list_updated">Notify me once a week when the spam protection has been updated</string>
<string name="pref_summary_spamlist_wlan">Update offline spam protection only if WiFi is available</string>
<string name="pref_summary_touch_tones">Make a sound when a key on num pad is being touched</string>
<string name="pref_summary_vibration">Vibrate when a key on num pad is being touched</string>
<string name="pref_summary_wlan">Only update call history when connected to WiFi</string>
<string name="pref_title_block_spammers">Block spam calls automatically</string>
<string name="pref_title_block_suppressed_numbers">Block suppressed phone number</string>
<string name="pref_title_bug_tracking">Error analysis</string>
<string name="pref_title_build_version">Build version</string>
<string name="pref_title_call_block">Blocked caller</string>
<string name="pref_title_calllog">Call history</string>
<string name="pref_title_contacts_name_format">Name format</string>
<string name="pref_title_contacts_sort_by">Sort by</string>
<string name="pref_title_draw_over_permission_request">Activate Spam warning!</string>
<string name="pref_title_postcall_incoming_calls">On incoming calls from unrecognized phone numbers</string>
<string name="pref_title_postcall_outgoing_calls">On outgoing calls to unrecognized phone numbers</string>
<string name="pref_title_postcall_overlay_local_contact">On calls from or to contacts listed in your address book</string>
<string name="pref_title_postcall_overlay_notification">Call finished</string>
<string name="pref_title_precall_overlay_incoming">On incoming call from unrecognized phone numbers</string>
<string name="pref_title_precall_overlay_local_contact">On calls from or to contacts listed in your address book</string>
<string name="pref_title_precall_overlay_outgoing">On outgoing calls to unrecognized phone numbers</string>
<string name="pref_title_precall_overlay_position">Position</string>
<string name="pref_title_rate_business_notification">Questions about places</string>
<string name="pref_title_spam_list_updated">Updated spam protection</string>
<string name="pref_title_spamlist_wlan">WiFi</string>
<string name="pref_title_touch_tones">Key sounds</string>
<string name="pref_title_tracking">Tracking</string>
<string name="pref_title_vibration">Vibration</string>
<string name="pref_title_wlan">WiFi</string>
<string name="pref_touch_tones">touchTonesEnabled</string>
<string name="pref_tracking">trackingEnabled</string>
<string name="pref_vibration">keyVibrationsEnabled</string>
<string name="privacy">Privacy is very important for us. Clever Dialer is being operated from Germany and is subject to German privacy laws.</string>
<string name="privacy_app">Privacy</string>
<string name="privacy_links">Privacy</string>
<string name="pro">PRO</string>
<string name="project_id">clever-dialer-live</string>
<string name="questionnaire_add_name_hint">Add name ...</string>
<string name="questionnaire_add_name_proposals">Users have added these names for the phone number already</string>
<string name="questionnaire_add_name_title">Add a name to the phone number %s</string>
<string name="questionnaire_add_reason_title">Why did %s call you?</string>
<string name="questionnaire_btn_no">NO</string>
<string name="questionnaire_btn_unknown">"DON'T KNOW"</string>
<string name="questionnaire_btn_yes">YES</string>
<string name="questionnaire_is_business_title">Does the phone number %s belong to a business?</string>
<string name="questionnaire_is_business_title_displayname">Is %s a business?</string>
<string name="rate_app">Rate app</string>
<string name="rate_app_dialog_app_name">@string/app_display_name</string>
<string name="rate_app_dialog_btn_neg">NOT GOOD</string>
<string name="rate_app_dialog_btn_pos">I LIKE IT</string>
<string name="rate_app_dialog_btn_remind_me">"I'LL DO IT LATER"</string>
<string name="rate_app_dialog_title">How do you like Clever Dialer?</string>
<string name="rate_app_notification_body">Touch here to rate the Clever Dialer App.</string>
<string name="rate_app_notification_button">Rate app</string>
<string name="rate_app_notification_title">Support us with your rating</string>
<string name="rate_calllog">Rate</string>
<string name="rate_number">Rate this number</string>
<string name="rate_number_add_comment">Comment number</string>
<string name="rate_number_btn_close">CLOSE</string>
<string name="rate_number_btn_done">DONE</string>
<string name="rate_number_delete_rating">DELETE</string>
<string name="rate_number_dialog_btn_negative">@string/negative</string>
<string name="rate_number_dialog_btn_neutral">@string/neutral</string>
<string name="rate_number_dialog_btn_positive">@string/positive</string>
<string name="rate_number_dialog_btn_reload">RELOAD</string>
<string name="rate_number_dialog_content">"Your review for
%s?"</string>
<string name="rate_number_dialog_dangerousness">negative ratings</string>
<string name="rate_number_dialog_error_toast">Rating could not be saved!</string>
<string name="rate_number_dialog_preloader">Loading ratings ...</string>
<string name="rate_number_dialog_preloader_error">Ratings cannot be loaded</string>
<string name="rate_number_dialog_total_count">(%s reviews)</string>
<string name="rate_number_done">Rating done</string>
<string name="rate_number_edit_rating">EDIT</string>
<string name="rate_number_edit_text_hint">Write comment ...</string>
<string name="rate_number_header">Why did you rate %1$s as %2$s?</string>
<string name="rate_number_header_rate_number">Rate this number</string>
<string name="rate_number_header_your_rating">Your rating</string>
<string name="rate_number_no_comment">No comment</string>
<string name="rate_number_pending">Rating is being processed ....</string>
<string name="rate_number_toolbar">Rating for %s</string>
<string name="rate_phone_number">Rate phone numbers</string>
<string name="rating">rating</string>
<string name="rating_loading_error">There has been a problem with your network connection. Please try again later</string>
<string name="recommend_app">Recommend app</string>
<string name="recommend_now">Recommend now!</string>
<string name="reload">RELOAD</string>
<string name="reload_data">Reload data</string>
<string name="request_permissions">REQUEST PERMISSIONS</string>
<string name="reservation_table">Book a table</string>
<string name="s1">Save image</string>
<string name="s2">Allow Ad to store image in Picture gallery?</string>
<string name="s3">Accept</string>
<string name="s4">Decline</string>
<string name="s5">Create calendar event</string>
<string name="s6">Allow Ad to create a calendar event?</string>
<string name="s7">Test Ad</string>
<string name="save_contact_dialog_headline">Save phone number</string>
<string name="save_contact_dialog_save_contact">Would you like to add %s to your contacts?</string>
<string name="save_contact_dialog_save_number">Would you like to add the phone number %s to your contacts?</string>
<string name="save_phone_number">Save phone number</string>
<string name="search_banner_ad_unit_id">ca-app-pub-4719832876560125/5082834082</string>
<string name="search_directory_local">Results from your address book</string>
<string name="search_directory_tb">Results in &lt;b>%s&lt;/b></string>
<string name="search_directory_tb_fallback">Results around you</string>
<string name="search_error">We are sorry, but we could not conduct a search. Please check your internet connection.</string>
<string name="search_hint">Who or what are you looking for?</string>
<string name="search_loading_number">Loading number…</string>
<string name="search_loading_number_failed">Number not found</string>
<string name="search_location_hint">Enable your location services to search in%s as well.</string>
<string name="search_location_hint_button">Settings</string>
<string name="search_location_permission_hint">Clever Dialer wants to know your current location, so you can search for popular places and businesses around you.</string>
<string name="search_location_permission_hint_button">GRANT ACCESS TO LOCATION</string>
<string name="search_menu_title">Search</string>
<string name="search_no_location">We cannot locate you at the moment. Please try again later.</string>
<string name="search_no_remote_result">We are sorry, we could not find anything for this search request</string>
<string name="search_preloader">Searching ...</string>
<string name="send_sms_add_textblock">Add text module:</string>
<string name="send_sms_at_school">I am at school</string>
<string name="send_sms_at_work">I am at work</string>
<string name="send_sms_busy">I am busy</string>
<string name="send_sms_call_me_back">Please call me back</string>
<string name="send_sms_i_call_back_in_5">"I'll call back in 5 minutes"</string>
<string name="send_sms_i_call_back_later">"I'll call back later"</string>
<string name="send_sms_i_call_back_tonight">"I'll call back tonight"</string>
<string name="send_sms_urgent">Urgent!</string>
<string name="send_sms_write_message">Write a message</string>
<string name="service_of">A service of %s</string>
<string name="settings">Settings</string>
<string name="settings_title">Settings</string>
<string name="share_app_default">Recommend on %s</string>
<string name="share_app_mail">Recommend via Mail</string>
<string name="share_app_message">"Try our free app. It identifies unrecognizable phone numbers and warns you against cost traps and annoying spam calls.
http://www.cleverdialer.com"</string>
<string name="share_app_notification_title">Recommend Clever Dialer</string>
<string name="share_app_other">Recommend via other app</string>
<string name="share_app_sms">Recommend via SMS</string>
<string name="share_app_subject">Identify unrecognizable phone numbers with Clever Dialer</string>
<string name="share_phone_number_btn_text_non_spam">Share phone number details</string>
<string name="share_phone_number_btn_text_spam">Warn friends against this phone number</string>
<string name="share_phone_number_message_non_spam">I want to share this contact information with you:</string>
<string name="share_phone_number_message_spam">Be careful if this number calls you:</string>
<string name="sms">SMS</string>
<string name="sortByFirstname">firstname</string>
<string name="sortByLastname">lastname</string>
<string name="spam_list">Update spam protection</string>
<string name="spam_list_empty">Currently, offline spam protection is not available.</string>
<string name="spam_list_notification_msg">You are being protected from %d spam numbers, now.</string>
<string name="spam_list_updating_error">Spam protection could not be updated!</string>
<string name="spam_list_updating_status">Spam protection is being updated ...</string>
<string name="speeddial_header">Your speed dial</string>
<string name="status_bar_notification_info_overflow">999+</string>
<string name="storing">storing</string>
<string name="subscription_dialog_abs_description">Known spam numbers will be &lt;b>blocked automatically&lt;/b></string>
<string name="subscription_dialog_btn_continue">CONTINUE</string>
<string name="subscription_dialog_no_ads_description">&lt;b>No more ads&lt;/b></string>
<string name="subscription_dialog_title">Upgrade to</string>
<string name="subscription_dialog_trial_period_description">&lt;b>Try for free for %s days.&lt;/b> Cancel subscription at any time in Google Play Store</string>
<string name="subscription_dialog_trial_period_description_default">Try for free</string>
<string name="swipe_hint">Swipe to close</string>
<string name="term_disclaimer_complete_name">The %s of phone numbers only works in connection with our call detection. To make this work phone numbers of unrecognizable callers need to be transferred to the search service regularly.</string>
<string name="term_hint_accept">Activate caller ID</string>
<string name="term_hint_disclaimer">Caller ID &amp; Spam protection</string>
<string name="term_hint_disclaimer_body">In our video we explain to you how our app protects you from spam calls.</string>
<string name="terms">Terms</string>
<string name="terms_links">Terms of use</string>
<string name="terms_new_available">Please agree to the new terms of use</string>
<string name="terms_no_longer_valid_accept_new">&lt;b>Please agree to the new terms of use&lt;/b></string>
<string name="terms_no_longer_valid_go_to_new">GO TO THE NEW TERMS OF USE</string>
<string name="terms_no_longer_valid_screen_accept_btn">ACCEPT</string>
<string name="terms_no_longer_valid_screen_description_body">There are new terms of use for Clever Dialer. Please accept these terms to be able to continue using the app.</string>
<string name="tour_accept">Accept and activate protection</string>
<string name="tour_call_incoming">Incoming call</string>
<string name="tour_call_location">United Kingdom</string>
<string name="tour_call_number">+44 20 123xy67</string>
<string name="tour_check_crashlytics">Help to improve the Clever Dialer App by automatically sending us diagnostics information. You can find further details on this here:</string>
<string name="tour_disclaimer">Data privacy is very important to us. Clever Dialer is being operated in the European Union and is subject to the EU data privacy law.</string>
<string name="tour_incognito">... or identify a caller that is not listed in your address book.</string>
<string name="tour_incoming_call">If you receive a call from an unrecognizable phone number, we show you who is trying to reach you. For example ...</string>
<string name="tour_instructions"><b>Clever Dialer protects you from spam calls.</b>"
You can find out how this works by swiping to the left."</string>
<string name="tour_link_crashlytics">&lt;a>http://try.crashlytics.com/terms/&lt;/a></string>
<string name="tour_permissions_continue">Continue</string>
<string name="tour_permissions_default_dialer">Make Clever Dialer the<b> default phone app</b>. This ensures that unwanted calls can be<b> reliably blocked</b>. Other phone apps are not affected by this.</string>
<string name="tour_permissions_needed_permissions">Clever Dialer requires at least access to phone calls and contacts to be able to identify callers and display contact information.</string>
<string name="tour_spam">... we warn you against spam calls or cost traps ....</string>
<string name="unblock">UNBLOCK</string>
<string name="unblock_calllog">Unblock</string>
<string name="version_check_download">DOWNLOAD LATEST VERSION</string>
<string name="version_check_get_new">Please download the latest version of Clever Dialer. Otherwise unexpected errors may occur.</string>
<string name="version_check_precall_overlay">&lt;b>Outdated version!&lt;/b>&lt;br /> More data cannot be loaded.</string>
<string name="video_url">f_RQ2NG_YaA</string>
<string name="yes">YES</string>
<string name="zero_postcall_number_of_comments">Comments and further details</string>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="abc_action_bar_home_description">Navigate home</string>
<string name="abc_action_bar_up_description">Navigate up</string>
<string name="abc_action_menu_overflow_description">More options</string>
<string name="abc_action_mode_done">Done</string>
<string name="abc_activity_chooser_view_see_all">See all</string>
<string name="abc_activitychooserview_choose_application">Choose an app</string>
<string name="abc_capital_off">OFF</string>
<string name="abc_capital_on">ON</string>
<string name="abc_font_family_body_1_material">sans-serif</string>
<string name="abc_font_family_body_2_material">sans-serif-medium</string>
<string name="abc_font_family_button_material">sans-serif-medium</string>
<string name="abc_font_family_caption_material">sans-serif</string>
<string name="abc_font_family_display_1_material">sans-serif</string>
<string name="abc_font_family_display_2_material">sans-serif</string>
<string name="abc_font_family_display_3_material">sans-serif</string>
<string name="abc_font_family_display_4_material">sans-serif-light</string>
<string name="abc_font_family_headline_material">sans-serif</string>
<string name="abc_font_family_menu_material">sans-serif</string>
<string name="abc_font_family_subhead_material">sans-serif</string>
<string name="abc_font_family_title_material">sans-serif-medium</string>
<string name="abc_search_hint">Search…</string>
<string name="abc_searchview_description_clear">Clear query</string>
<string name="abc_searchview_description_query">Search query</string>
<string name="abc_searchview_description_search">Search</string>
<string name="abc_searchview_description_submit">Submit query</string>
<string name="abc_searchview_description_voice">Voice search</string>
<string name="abc_shareactionprovider_share_with">Share with</string>
<string name="abc_shareactionprovider_share_with_application">Share with %s</string>
<string name="abc_toolbar_collapse_description">Collapse</string>
<string name="active_caller_id_disclaimer">Do you want to use the caller ID? To make this work, phone numbers of unrecognizable callers need to be transferred to the search service regularly.</string>
<string name="active_caller_id_enabled">Caller id activated</string>
<string name="add_number_to_block_text">Please enter a phone number</string>
<string name="add_number_to_blocklist_dialog_title">Your changes have not been saved</string>
<string name="add_to_block">Block now</string>
<string name="admob_app_id">ca-app-pub-4719832876560125~8375149830</string>
<string name="advertisement">Ad</string>
<string name="app_display_name">Clever Dialer</string>
<string name="app_name">CleverDialer</string>
<string name="appbar_scrolling_view_behavior">android.support.design.widget.AppBarLayout$ScrollingViewBehavior</string>
<string name="appointment_time">%s</string>
<string name="appsflyer_api_key">YEu9dzkwXwV8Zf3hS9P9q5</string>
<string name="auth">sxKYsIG34+qV9oyCvYmXvrbrnKaHtu7m272Yj73TxaC365GyrL3q5aiU3NCkubqDpvY=</string>
<string name="backofficeAuth">GRIyGisdSUAcKTUhQHIgNTgPFy8oNQ0pMRwiYw0PHERPFmAXOgFDEC8hJS5VAQRLVkEIOR8QXg==</string>
<string name="birthday">birthday</string>
<string name="birthday_2_days_ago">%1$s was two days ago</string>
<string name="birthday_in_2_days">%1$s is in two days</string>
<string name="birthday_today">%1$s is today</string>
<string name="birthday_tomorrow">%1$s is tomorrow</string>
<string name="birthday_yesterday">%1$s was yesterday</string>
<string name="block_done">Phone number blocked</string>
<string name="block_number">Block number</string>
<string name="block_number_not_loaded">Number of blockings could not be loaded</string>
<string name="block_phone_number">Block phone numbers</string>
<string name="block_rate_info_name">Rate %s and help us to identify spam calls.</string>
<string name="block_rate_info_number">Rate the phone number %s and help us to identify spam calls.</string>
<string name="block_screen_default_dialer">This ensures that unwanted calls can be &lt;b>reliably blocked&lt;/b>. Other phone apps are not affected by this.</string>
<string name="block_screen_default_dialer_headline">Now, you can make Clever Dialer the &lt;b>default phone app&lt;/b>.</string>
<string name="block_screen_permissions">Clever Dialer requires at least &lt;b>access&lt;/b> to &lt;b>phone calls&lt;/b> and &lt;b>contacts&lt;/b> to be able to &lt;b>identify callers&lt;/b> and display contact information.</string>
<string name="block_screen_permissions_only">Clever Dialer requires &lt;b>access&lt;/b> to &lt;b>phone calls&lt;/b> and &lt;b>contacts&lt;/b> to be able to &lt;b>identify callers&lt;/b> and display contact information.</string>
<string name="block_screen_spam_headline">You are not protected from annoying spam call, yet!</string>
<string name="blocked">blocked</string>
<string name="blocking">blocking</string>
<string name="blocklist">Blocklist</string>
<string name="book_now">Book now online</string>
<string name="bottom_sheet_behavior">android.support.design.widget.BottomSheetBehavior</string>
<string name="btn_continue">Continue</string>
<string name="btn_discard">Discard</string>
<string name="btn_save">Save</string>
<string name="call">Call</string>
<string name="call_reason_charity">Charity</string>
<string name="call_reason_commercial">Commercial</string>
<string name="call_reason_cost_trap">Cost trap</string>
<string name="call_reason_counsel">Counsel</string>
<string name="call_reason_customer_service">Customer Service</string>
<string name="call_reason_debt_collection_agency">Debt collection agency</string>
<string name="call_reason_mailbox">Mailbox</string>
<string name="call_reason_other">Other reason</string>
<string name="call_reason_sales">Sales</string>
<string name="call_reason_service">Service</string>
<string name="call_reason_silent_call">Silent call</string>
<string name="call_reason_support">Support</string>
<string name="call_reason_survey">Survey</string>
<string name="call_reason_sweepstake">Sweepstake</string>
<string name="caller_warning">Warning against number!</string>
<string name="calllog_block_suppressed_number">Block calls</string>
<string name="calllog_blocked">Blocked</string>
<string name="calllog_delete_entry">Delete</string>
<string name="calllog_entry_removed">Entry removed</string>
<string name="calllog_event_date_pattern">"'at' dd. MMMM"</string>
<string name="calllog_show_older_entries">SHOW OLDER ENTRIES</string>
<string name="calllog_spam">Identified as spam</string>
<string name="calllog_spam_hint">Warning against number!</string>
<string name="calllog_time_lastweek">Last week</string>
<string name="calllog_time_older">Older</string>
<string name="calllog_time_today">Today</string>
<string name="calllog_time_x_days_ago">%s days ago</string>
<string name="calllog_time_yesterday">Yesterday</string>
<string name="calllog_unblock_suppressed_number">Unblock calls</string>
<string name="calllog_unknown">Suppressed phone number</string>
<string name="cancel_call_book_now">Cancel call and book online</string>
<string name="categories_header">Popular places and businesses around you</string>
<string name="category_hairdresser">Hairdressers</string>
<string name="category_hairdresser_query">Hairdresser</string>
<string name="category_hotel">Hotels</string>
<string name="category_hotel_query">Hotel</string>
<string name="category_medic">Physicians</string>
<string name="category_medic_query">Physician</string>
<string name="category_pharmacy">Pharmacies</string>
<string name="category_pharmacy_query">Pharmacy</string>
<string name="category_restaurant">Restaurants</string>
<string name="category_restaurant_query">Restaurant</string>
<string name="category_taxi">Taxis</string>
<string name="category_taxi_query">Taxi</string>
<string name="cd_support_email">support@cleverdialer.com</string>
<string name="cdbackoffice_terms_privacy_url">https://backoffice.cleverdialer.com/wp-json/cdbo/v1/get_terms_or_privacy?type=TERMS_AND_CONDITIONS</string>
<string name="character_counter_pattern">%1$d / %2$d</string>
<string name="clever_dialer_pro">Clever Dialer PRO</string>
<string name="cleverdialer_link">http://www.cleverdialer.com</string>
<string name="close">Close</string>
<string name="com.crashlytics.android.build_id">42e0c03f-76fa-402f-9c31-46be1071f6a9</string>
<string name="com_facebook_device_auth_instructions">Visit &lt;b>facebook.com/device&lt;/b> and enter the code shown above.</string>
<string name="com_facebook_image_download_unknown_error">Unexpected error while downloading an image.</string>
<string name="com_facebook_internet_permission_error_message">WebView login requires INTERNET permission</string>
<string name="com_facebook_internet_permission_error_title">AndroidManifest Error</string>
<string name="com_facebook_like_button_liked">Liked</string>
<string name="com_facebook_like_button_not_liked">Like</string>
<string name="com_facebook_loading">Loading…</string>
<string name="com_facebook_loginview_cancel_action">Cancel</string>
<string name="com_facebook_loginview_log_in_button">Log in</string>
<string name="com_facebook_loginview_log_in_button_continue">Continue with Facebook</string>
<string name="com_facebook_loginview_log_in_button_long">Log in with Facebook</string>
<string name="com_facebook_loginview_log_out_action">Log out</string>
<string name="com_facebook_loginview_log_out_button">Log out</string>
<string name="com_facebook_loginview_logged_in_as">Logged in as: %1$s</string>
<string name="com_facebook_loginview_logged_in_using_facebook">Logged in using Facebook</string>
<string name="com_facebook_send_button_text">Send</string>
<string name="com_facebook_share_button_text">Share</string>
<string name="com_facebook_smart_device_instructions">To connect your account, open the Facebook app on your mobile device and check for notifications.</string>
<string name="com_facebook_smart_device_instructions_or">- OR -</string>
<string name="com_facebook_smart_login_confirmation_cancel">Not you?</string>
<string name="com_facebook_smart_login_confirmation_continue_as">Continue as %1$s</string>
<string name="com_facebook_smart_login_confirmation_title">Confirm Login</string>
<string name="com_facebook_tooltip_default">"You're in control - choose what info you want to share with apps."</string>
<string name="comments">Comments</string>
<string name="common_google_play_services_enable_button">Enable</string>
<string name="common_google_play_services_enable_text">"%1$s won't work unless you enable Google Play services."</string>
<string name="common_google_play_services_enable_title">Enable Google Play services</string>
<string name="common_google_play_services_install_button">Install</string>
<string name="common_google_play_services_install_text">"%1$s won't run without Google Play services, which are missing from your device."</string>
<string name="common_google_play_services_install_title">Get Google Play services</string>
<string name="common_google_play_services_notification_channel_name">Google Play services availability</string>
<string name="common_google_play_services_notification_ticker">Google Play services error</string>
<string name="common_google_play_services_unknown_issue">%1$s is having trouble with Google Play services. Please try again.</string>
<string name="common_google_play_services_unsupported_text">"%1$s won't run without Google Play services, which are not supported by your device."</string>
<string name="common_google_play_services_update_button">Update</string>
<string name="common_google_play_services_update_text">"%1$s won't run unless you update Google Play services."</string>
<string name="common_google_play_services_update_title">Update Google Play services</string>
<string name="common_google_play_services_updating_text">"%1$s won't run without Google Play services, which are currently updating."</string>
<string name="common_google_play_services_wear_update_text">New version of Google Play services needed. It will update itself shortly.</string>
<string name="common_open_on_phone">Open on phone</string>
<string name="common_signin_button_text">Sign in</string>
<string name="common_signin_button_text_long">Sign in with Google</string>
<string name="complete_name">Complete name</string>
<string name="completion">completion</string>
<string name="count_of_blocked">%s users have blocked this number in the last 12 months.</string>
<string name="count_of_blocked_single">1 user has blocked this number in the last 12 months.</string>
<string name="default_dialer_request_notification">This call could not be blocked. You can significantly improve call blocking by making Clever Dialer your default Phone app. Other calling apps are not affected by this.</string>
<string name="default_dialer_request_notification_header">Call could not be blocked</string>
<string name="default_web_client_id">946551026323-kk9ti6rf0uhft4apd6i8cjlo30fdf58s.apps.googleusercontent.com</string>
<string name="detail_page_banner_ad_unit_id">ca-app-pub-4719832876560125/3235698637</string>
<string name="details">Details</string>
<string name="disable_ads">Remove ads</string>
<string name="draw_over_permission">To be able to recognize spam already on call arrival, please give the following permission</string>
<string name="draw_over_permission_activate">Activate</string>
<string name="draw_over_permission_continue_without_protection">Continue without protection</string>
<string name="draw_over_permission_grand_permission_now">Grant permission now</string>
<string name="draw_over_permission_headline">Important!</string>
<string name="draw_over_permission_hint">Show contact details already on call arrival?</string>
<string name="draw_over_permission_spam_hint">Warning already on call arrival?</string>
<string name="ex_contact_details_found">Found on</string>
<string name="exo_controls_fastforward_description">Fast forward</string>
<string name="exo_controls_next_description">Next track</string>
<string name="exo_controls_pause_description">Pause</string>
<string name="exo_controls_play_description">Play</string>
<string name="exo_controls_previous_description">Previous track</string>
<string name="exo_controls_rewind_description">Rewind</string>
<string name="exo_controls_stop_description">Stop</string>
<string name="fb_app_id">298785683642338</string>
<string name="fcm_fallback_notification_channel_label">Miscellaneous</string>
<string name="feedback">Feedback</string>
<string name="feedback_dialog_btn_cancel">Cancel</string>
<string name="feedback_dialog_btn_submit">SEND</string>
<string name="feedback_dialog_content">Tell us your ideas. We are very grateful for every suggestion to make our Dialer better every day.</string>
<string name="feedback_dialog_hint">Your message</string>
<string name="feedback_dialog_mail_subject">Clever Dialer Feedback</string>
<string name="feedback_dialog_title">Tell us your opinion</string>
<string name="firebase_database_url">https://clever-dialer-live.firebaseio.com</string>
<string name="firebase_sender_id">946551026323</string>
<string name="gcm_defaultSenderId">946551026323</string>
<string name="gcm_fallback_notification_channel_label">Miscellaneous</string>
<string name="google_api_key">AIzaSyBNEltItkqG-yKbP1sqMTr1xfJbPdCDkOQ</string>
<string name="google_app_id">1:946551026323:android:d47e3585a9763cb5</string>
<string name="google_crash_reporting_api_key">AIzaSyBNEltItkqG-yKbP1sqMTr1xfJbPdCDkOQ</string>
<string name="google_storage_bucket">clever-dialer-live.appspot.com</string>
<string name="hint_btn_calllog">UNDERSTOOD</string>
<string name="hint_btn_categories">GOT IT</string>
<string name="hint_btn_speeddial">SUPER</string>
<string name="hint_calllog">Complements unrecognizable phone numbers in your call history with names.</string>
<string name="hint_categories">With the search you can also find contacts that are not stored in your address book.</string>
<string name="hint_speeddial">With the speed dial you can easily access your favorites.</string>
<string name="hint_subtext_calllog">We also complement past calls. Just scroll through your call history to see.</string>
<string name="invalid_number">Invalid number</string>
<string name="key">HgSj4cPtXZySNev6</string>
<string name="kk_base_url">https://ws.cleverdialer.com/api/1.3</string>
<string name="legalnote_close">CLOSE</string>
<string name="legalnote_dialog_error">At the moment there is no internet connection so we could not verify whether there is a later version of the privacy statement. Please go to this page again when you have an internet connection.</string>
<string name="legalnote_error_report">"Error report:
"</string>
<string name="legalnote_internet_hint">Please make sure that your phone is connected to internet for the initial start of Clever Dialer</string>
<string name="legalnote_mail_subject">@string/legalnote_unexpected_error</string>
<string name="legalnote_no_internet">No internet connection</string>
<string name="legalnote_reload">RELOAD</string>
<string name="legalnote_send_error_report">Send error report</string>
<string name="legalnote_unexpected_error">Unexpected error</string>
<string name="legalnote_unexpected_error_hint">Please help us with the analysis and send us the error report.</string>
<string name="license_key">6BLtxvLAleH50vLV+srO5veZmfiLwJ3a/drx897459ymn+3G8sCf7PPf8ePU+tS137XiydLX7L3J5en4/tHu2PWZkOjRxbe7jMX++Pzs6ejWhMv66Lex3cr91+fi3eOi2ovz9fzokvuM79jA25Tl2MmGk/3VzYa83dv1xaPSwMjtqc3A6djt6en22obIydTvx6nw9u+xmtuOqfaKofju/6uJltXysrng1+zlytLS3N/47Ji5zPqN49/l49Tk3Pym5vGV99Tjubji7f2C8sHHu6vuyt7f1qvC7uib98b30ML7hM3Ije/v+dapgvre2PbA+azkxOPq7aTs/sj56evhuvSw0NfCyIv64OyB2eDBnsCuiu361s27z+6o2N73guDY7YfH5Y62sNjtxePi+fLc3s6MkPbK95bfi/D3gL6LkryshJTI88Wd0orG5cPW1fXq86b6yoj6ucPS0vnixo7A4NOm1tf2wO7k4PXn98LR5MLKtPXG+vG52fD7yubljtH4/K2T+PLGndr53sLc+93q6fPr69yMu7LS/8nTwQ==</string>
<string name="load_more_comments">LOAD MORE COMMENTS</string>
<string name="location_settings_hint">"Grant access to your device's location to search for popular places and businesses around you."</string>
<string name="location_settings_hint_button">"GRANT ACCESS TO DEVICE'S LOCATION"</string>
<string name="messenger_send_button_text">Send</string>
<string name="more">More</string>
<string name="more_contact_details">More details for phone number</string>
<string name="negative">NEGATIVE</string>
<string name="neutral">NEUTRAL</string>
<string name="new_terms_topic">new_terms_live</string>
<string name="no">NO</string>
<string name="no_connection_edge">You need 3G/4G or a WiFi connection to let us identify incoming callers • Clever Dialer</string>
<string name="no_details_found">No name found.</string>
<string name="no_internet">No internet connection • Cannot load further details about this caller • Clever Dialer</string>
<string name="not_now">Not now</string>
<string name="notification_block_suppressed_number">suppressed phone number</string>
<string name="notification_blocked_text">Call from %s has been blocked.</string>
<string name="notification_spam_text">You are now protected from known spam calls.</string>
<string name="number_rate_now">RATE NOW</string>
<string name="numberdialog_action">Call %s</string>
<string name="numberdialog_rememberchoice">Remember choice</string>
<string name="numberdialog_title">Dial number</string>
<string name="open_Info_closed">is closed</string>
<string name="open_Info_open">is open</string>
<string name="open_store_dialog_btn_pos">RATE CLEVER DIALER</string>
<string name="open_store_dialog_btn_remind_me">"I'LL DO IT LATER"</string>
<string name="open_store_dialog_title">Great, how about rating our app with 5 stars in the Play Store?</string>
<string name="operation_not_supported">"Your mobile phone doesn't support this operation"</string>
<string name="other_postcall_number_of_comments">%d comments and further details</string>
<string name="overlay_header_txt">Found on</string>
<string name="overlay_neutral_rate_count">%1$d ratings</string>
<string name="overlay_number_suppressed">Suppressed phone number • Cannot load more details about the caller • Clever Dialer</string>
<string name="overlay_positive_rate_count">%1$d of %2$d ratings are positive</string>
<string name="overlay_spam_negative_rate_count">%1$d of %2$d ratings are negative</string>
<string name="overlay_spam_total_count">blocked %1$s times • %2$s of the ratings for this number are negative • %3$s ratings • Clever Dialer</string>
<string name="overlay_total_count">%1$s of the ratings for this number are positive • %2$s ratings • Clever Dialer</string>
<string name="overlay_url_tb">www.dastelefonbuch.de</string>
<string name="overlay_url_vebidoo">www.vebidoo.de</string>
<string name="partnerId">cdand</string>
<string name="password_toggle_content_description">Toggle password visibility</string>
<string name="path_password_eye">M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z</string>
<string name="path_password_eye_mask_strike_through">M2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z</string>
<string name="path_password_eye_mask_visible">M2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z</string>
<string name="path_password_strike_through">M3.27,4.27 L19.74,20.74</string>
<string name="permissions_disclaimer">To use this function we need to transfer data like the phone number or your rating to our server. Apart from that we store a kind of user ID to prevent spam. This ID cannot be used to identify an individual, but should prevent our ratings from being polluted by spam. We would kindly ask you to give the app the permissions that are necessary to do this.</string>
<string name="phone">Phone: %s</string>
<string name="phone_number">Phone number</string>
<string name="positive">POSITIVE</string>
<string name="postcall_ask_for_ads_free">Use Clever Dialer ad-free?</string>
<string name="postcall_ask_for_name">Can you add the name?</string>
<string name="postcall_ask_for_name_hint">Here you can add a missing name to the phone number or correct the displayed name. By doing so, you improve the caller identification for all users. :)</string>
<string name="postcall_ask_for_name_menu">Add name</string>
<string name="postcall_ask_for_pro_feature">Block spam automatically?</string>
<string name="postcall_large_banner_ad_unit_id">ca-app-pub-4719832876560125/3949731035</string>
<string name="postcall_notification_body">Show more details • Clever Dialer</string>
<string name="postcall_notification_title">Phone call with %s</string>
<string name="postcall_notification_title_missed_call">Missed call %s</string>
<string name="postcall_overlay_block">Block all calls from %s?</string>
<string name="postcall_overlay_book_a_table">Book a table</string>
<string name="postcall_overlay_btn_number_rated">RATED</string>
<string name="postcall_overlay_btn_rate_number">RATE</string>
<string name="postcall_overlay_btn_save_contact">SAVE</string>
<string name="postcall_overlay_call_duration">Call duration</string>
<string name="postcall_overlay_call_duration_detail">%1$s min. %2$s sec.</string>
<string name="postcall_overlay_directory_url">Found on %s • Clever Dialer</string>
<string name="postcall_overlay_loading_error">Further details could not be loaded! • Clever Dialer</string>
<string name="postcall_overlay_missed_call">Missed call</string>
<string name="postcall_overlay_preloader">Loading details ... • Clever Dialer</string>
<string name="postcall_overlay_reload_btn">RETRY</string>
<string name="postcall_overlay_unblock">Do you want to unblock %s?</string>
<string name="postcall_rate_app">"How do you like Clever Dialer's caller identification?"</string>
<string name="postcall_rate_app_comment_question">Tell us your opinion</string>
<string name="postcall_rate_app_feedback">Feedback</string>
<string name="postcall_rate_business_notification_message">Share your info about this place</string>
<string name="postcall_rate_business_notification_title">Clever Dialer - %s</string>
<string name="postcall_share_app">Would you like %s to be protected from spam as well? Then simply recommend Clever Dialer :)</string>
<string name="postcall_share_app_social">If you like our app, please recommend it to your friends.</string>
<string name="precall_unknown_name_incoming_hint">Phone Call from:</string>
<string name="precall_unknown_name_outgoing_hint">Phone Call:</string>
<string name="pref_block">BLOCK</string>
<string name="pref_block_spammers">blockSpammers</string>
<string name="pref_block_suppressed_numbers">blockSuppressedNumbers</string>
<string name="pref_bug_tracking">bugTrackingEnabled</string>
<string name="pref_callblock_notification">callBlockNotificationEnabled</string>
<string name="pref_caller_identification">callerIdentificationEnabled</string>
<string name="pref_calllog_resolution">callLogResolutionEnabled</string>
<string name="pref_calllog_resolution_only_wifi">callLogResolutionOnlyWifi</string>
<string name="pref_callrate_business_notification">callRateBusinessNotificationEnabled</string>
<string name="pref_category_add_phone_numbers">ENRICH PHONE NUMBERS</string>
<string name="pref_category_block_numbers">BLOCK PHONE NUMBERS</string>
<string name="pref_category_contacts">CONTACTS</string>
<string name="pref_category_general">GENERAL</string>
<string name="pref_category_info">MISC</string>
<string name="pref_category_notifications">NOTIFICATIONS</string>
<string name="pref_category_postcall_overlay">INFORMATION AFTER A CALL</string>
<string name="pref_category_precall_overlay">INFORMATION BEFORE A CALL</string>
<string name="pref_category_spamlist">SPAM PROTECTION</string>
<string name="pref_category_tracking">PRIVACY</string>
<string name="pref_contacts_name_format">contactsNameFormat</string>
<string name="pref_contacts_name_format_first_name_first">First name first</string>
<string name="pref_contacts_name_format_last_name_first">Last name first</string>
<string name="pref_contacts_sort_by">contactsSortBy</string>
<string name="pref_contacts_sort_by_first_name">First name</string>
<string name="pref_contacts_sort_by_last_name">Last name</string>
<string name="pref_default_contacts_name_format">@string/sortByFirstname</string>
<string name="pref_default_contacts_sort_by">@string/sortByFirstname</string>
<string name="pref_default_deep_linking">deepLinking</string>
<string name="pref_default_no_ads_purchase">noAds</string>
<string name="pref_default_precall_overlay_position">top</string>
<string name="pref_draw_over_permission">drawOverPermission</string>
<string name="pref_draw_pre_call">drawOverPreCall</string>
<string name="pref_key_build_version">buildVersion</string>
<string name="pref_last_spam_number_update">lastSpamNumberUpdate</string>
<string name="pref_mock_location">mockLocationEnabled</string>
<string name="pref_offline_spam_number_list_size">offlineSpamNumberListSize</string>
<string name="pref_postcall_overlay_incoming_calls">postcallOverlayIncomingCalls</string>
<string name="pref_postcall_overlay_local_contact_calls">postcallOverlayLocalContactCalls</string>
<string name="pref_postcall_overlay_notification">postcallOverlayNotification</string>
<string name="pref_postcall_overlay_outgoing_calls">postcallOverlayOutgoingCalls</string>
<string name="pref_precall_overlay_local_contact_calls">precallOverlayLocalContactCalls</string>
<string name="pref_precall_overlay_outgoing_calls">precallOverlayOutgoingCalls</string>
<string name="pref_precall_overlay_position">precallOverlayPosition</string>
<string name="pref_precall_overlay_position_bottom">Bottom</string>
<string name="pref_precall_overlay_position_middle">Middle</string>
<string name="pref_precall_overlay_position_top">Top</string>
<string name="pref_spam_list_updated_notification">spamListUpdatedNotification</string>
<string name="pref_spamlist_update_only_wifi">spamlistUpdateOnlyWifi</string>
<string name="pref_spamlist_updater">spamlistUpdater</string>
<string name="pref_spamlist_updater_body">"Last update of spam protection: %1$s.
You are now protected from %2$d spam numbers."</string>
<string name="pref_summary_block_spammers">Blocks spam calls automatically. (Clever Dialer PRO)</string>
<string name="pref_summary_block_suppressed_numbers">Callers with suppressed phone numbers will always be blocked</string>
<string name="pref_summary_bug_tracking">Transfer data for error analysis to Clever Dialer</string>
<string name="pref_summary_build_version">Version:</string>
<string name="pref_summary_call_block">Notify me when an incoming call is blocked.</string>
<string name="pref_summary_calllog">Enrich phone numbers in the call history by adding a name</string>
<string name="pref_summary_contacts_name_format">%s</string>
<string name="pref_summary_contacts_sort_by">%s</string>
<string name="pref_summary_draw_over_permission_request">To be able to recognize spam already on call arrival, please give the missing permission</string>
<string name="pref_summary_postcall_incoming_calls">Show further details for the phone number after an incoming call has been finished</string>
<string name="pref_summary_postcall_outgoing_calls">Show further details for the phone number after an outgoing call has been finished</string>
<string name="pref_summary_postcall_overlay_local_contact">Shows you important information e.g. that it is your contacts birthday</string>
<string name="pref_summary_postcall_overlay_notification">Send me a notification as soon as a call has been ended</string>
<string name="pref_summary_precall_overlay_incoming">Show more details for phone numbers of incoming calls</string>
<string name="pref_summary_precall_overlay_local_contact">Shows you important information e.g. that it is your contacts birthday</string>
<string name="pref_summary_precall_overlay_outgoing">Show more details for phone numbers of outgoing calls</string>
<string name="pref_summary_precall_overlay_position">Where on the screen should the information be displayed? %s</string>
<string name="pref_summary_rate_business_notification">Share what you know about places</string>
<string name="pref_summary_spam_list_updated">Notify me once a week when the spam protection has been updated</string>
<string name="pref_summary_spamlist_wlan">Update offline spam protection only if WiFi is available</string>
<string name="pref_summary_touch_tones">Make a sound when a key on num pad is being touched</string>
<string name="pref_summary_vibration">Vibrate when a key on num pad is being touched</string>
<string name="pref_summary_wlan">Only update call history when connected to WiFi</string>
<string name="pref_title_block_spammers">Block spam calls automatically</string>
<string name="pref_title_block_suppressed_numbers">Block suppressed phone number</string>
<string name="pref_title_bug_tracking">Error analysis</string>
<string name="pref_title_build_version">Build version</string>
<string name="pref_title_call_block">Blocked caller</string>
<string name="pref_title_calllog">Call history</string>
<string name="pref_title_contacts_name_format">Name format</string>
<string name="pref_title_contacts_sort_by">Sort by</string>
<string name="pref_title_draw_over_permission_request">Activate Spam warning!</string>
<string name="pref_title_postcall_incoming_calls">On incoming calls from unrecognized phone numbers</string>
<string name="pref_title_postcall_outgoing_calls">On outgoing calls to unrecognized phone numbers</string>
<string name="pref_title_postcall_overlay_local_contact">On calls from or to contacts listed in your address book</string>
<string name="pref_title_postcall_overlay_notification">Call finished</string>
<string name="pref_title_precall_overlay_incoming">On incoming call from unrecognized phone numbers</string>
<string name="pref_title_precall_overlay_local_contact">On calls from or to contacts listed in your address book</string>
<string name="pref_title_precall_overlay_outgoing">On outgoing calls to unrecognized phone numbers</string>
<string name="pref_title_precall_overlay_position">Position</string>
<string name="pref_title_rate_business_notification">Questions about places</string>
<string name="pref_title_spam_list_updated">Updated spam protection</string>
<string name="pref_title_spamlist_wlan">WiFi</string>
<string name="pref_title_touch_tones">Key sounds</string>
<string name="pref_title_tracking">Tracking</string>
<string name="pref_title_vibration">Vibration</string>
<string name="pref_title_wlan">WiFi</string>
<string name="pref_touch_tones">touchTonesEnabled</string>
<string name="pref_tracking">trackingEnabled</string>
<string name="pref_vibration">keyVibrationsEnabled</string>
<string name="privacy">Privacy is very important for us. Clever Dialer is being operated from Germany and is subject to German privacy laws.</string>
<string name="privacy_app">Privacy</string>
<string name="privacy_links">Privacy</string>
<string name="pro">PRO</string>
<string name="project_id">clever-dialer-live</string>
<string name="questionnaire_add_name_hint">Add name ...</string>
<string name="questionnaire_add_name_proposals">Users have added these names for the phone number already</string>
<string name="questionnaire_add_name_title">Add a name to the phone number %s</string>
<string name="questionnaire_add_reason_title">Why did %s call you?</string>
<string name="questionnaire_btn_no">NO</string>
<string name="questionnaire_btn_unknown">"DON'T KNOW"</string>
<string name="questionnaire_btn_yes">YES</string>
<string name="questionnaire_is_business_title">Does the phone number %s belong to a business?</string>
<string name="questionnaire_is_business_title_displayname">Is %s a business?</string>
<string name="rate_app">Rate app</string>
<string name="rate_app_dialog_app_name">@string/app_display_name</string>
<string name="rate_app_dialog_btn_neg">NOT GOOD</string>
<string name="rate_app_dialog_btn_pos">I LIKE IT</string>
<string name="rate_app_dialog_btn_remind_me">"I'LL DO IT LATER"</string>
<string name="rate_app_dialog_title">How do you like Clever Dialer?</string>
<string name="rate_app_notification_body">Touch here to rate the Clever Dialer App.</string>
<string name="rate_app_notification_button">Rate app</string>
<string name="rate_app_notification_title">Support us with your rating</string>
<string name="rate_calllog">Rate</string>
<string name="rate_number">Rate this number</string>
<string name="rate_number_add_comment">Comment number</string>
<string name="rate_number_btn_close">CLOSE</string>
<string name="rate_number_btn_done">DONE</string>
<string name="rate_number_delete_rating">DELETE</string>
<string name="rate_number_dialog_btn_negative">@string/negative</string>
<string name="rate_number_dialog_btn_neutral">@string/neutral</string>
<string name="rate_number_dialog_btn_positive">@string/positive</string>
<string name="rate_number_dialog_btn_reload">RELOAD</string>
<string name="rate_number_dialog_content">"Your review for
%s?"</string>
<string name="rate_number_dialog_dangerousness">negative ratings</string>
<string name="rate_number_dialog_error_toast">Rating could not be saved!</string>
<string name="rate_number_dialog_preloader">Loading ratings ...</string>
<string name="rate_number_dialog_preloader_error">Ratings cannot be loaded</string>
<string name="rate_number_dialog_total_count">(%s reviews)</string>
<string name="rate_number_done">Rating done</string>
<string name="rate_number_edit_rating">EDIT</string>
<string name="rate_number_edit_text_hint">Write comment ...</string>
<string name="rate_number_header">Why did you rate %1$s as %2$s?</string>
<string name="rate_number_header_rate_number">Rate this number</string>
<string name="rate_number_header_your_rating">Your rating</string>
<string name="rate_number_no_comment">No comment</string>
<string name="rate_number_pending">Rating is being processed ....</string>
<string name="rate_number_toolbar">Rating for %s</string>
<string name="rate_phone_number">Rate phone numbers</string>
<string name="rating">rating</string>
<string name="rating_loading_error">There has been a problem with your network connection. Please try again later</string>
<string name="recommend_app">Recommend app</string>
<string name="recommend_now">Recommend now!</string>
<string name="reload">RELOAD</string>
<string name="reload_data">Reload data</string>
<string name="request_permissions">REQUEST PERMISSIONS</string>
<string name="reservation_table">Book a table</string>
<string name="s1">Save image</string>
<string name="s2">Allow Ad to store image in Picture gallery?</string>
<string name="s3">Accept</string>
<string name="s4">Decline</string>
<string name="s5">Create calendar event</string>
<string name="s6">Allow Ad to create a calendar event?</string>
<string name="s7">Test Ad</string>
<string name="save_contact_dialog_headline">Save phone number</string>
<string name="save_contact_dialog_save_contact">Would you like to add %s to your contacts?</string>
<string name="save_contact_dialog_save_number">Would you like to add the phone number %s to your contacts?</string>
<string name="save_phone_number">Save phone number</string>
<string name="search_banner_ad_unit_id">ca-app-pub-4719832876560125/5082834082</string>
<string name="search_directory_local">Results from your address book</string>
<string name="search_directory_tb">Results in &lt;b>%s&lt;/b></string>
<string name="search_directory_tb_fallback">Results around you</string>
<string name="search_error">We are sorry, but we could not conduct a search. Please check your internet connection.</string>
<string name="search_hint">Who or what are you looking for?</string>
<string name="search_loading_number">Loading number…</string>
<string name="search_loading_number_failed">Number not found</string>
<string name="search_location_hint">Enable your location services to search in%s as well.</string>
<string name="search_location_hint_button">Settings</string>
<string name="search_location_permission_hint">Clever Dialer wants to know your current location, so you can search for popular places and businesses around you.</string>
<string name="search_location_permission_hint_button">GRANT ACCESS TO LOCATION</string>
<string name="search_menu_title">Search</string>
<string name="search_no_location">We cannot locate you at the moment. Please try again later.</string>
<string name="search_no_remote_result">We are sorry, we could not find anything for this search request</string>
<string name="search_preloader">Searching ...</string>
<string name="send_sms_add_textblock">Add text module:</string>
<string name="send_sms_at_school">I am at school</string>
<string name="send_sms_at_work">I am at work</string>
<string name="send_sms_busy">I am busy</string>
<string name="send_sms_call_me_back">Please call me back</string>
<string name="send_sms_i_call_back_in_5">"I'll call back in 5 minutes"</string>
<string name="send_sms_i_call_back_later">"I'll call back later"</string>
<string name="send_sms_i_call_back_tonight">"I'll call back tonight"</string>
<string name="send_sms_urgent">Urgent!</string>
<string name="send_sms_write_message">Write a message</string>
<string name="service_of">A service of %s</string>
<string name="settings">Settings</string>
<string name="settings_title">Settings</string>
<string name="share_app_default">Recommend on %s</string>
<string name="share_app_mail">Recommend via Mail</string>
<string name="share_app_message">"Try our free app. It identifies unrecognizable phone numbers and warns you against cost traps and annoying spam calls.
http://www.cleverdialer.com"</string>
<string name="share_app_notification_title">Recommend Clever Dialer</string>
<string name="share_app_other">Recommend via other app</string>
<string name="share_app_sms">Recommend via SMS</string>
<string name="share_app_subject">Identify unrecognizable phone numbers with Clever Dialer</string>
<string name="share_phone_number_btn_text_non_spam">Share phone number details</string>
<string name="share_phone_number_btn_text_spam">Warn friends against this phone number</string>
<string name="share_phone_number_message_non_spam">I want to share this contact information with you:</string>
<string name="share_phone_number_message_spam">Be careful if this number calls you:</string>
<string name="sms">SMS</string>
<string name="sortByFirstname">firstname</string>
<string name="sortByLastname">lastname</string>
<string name="spam_list">Update spam protection</string>
<string name="spam_list_empty">Currently, offline spam protection is not available.</string>
<string name="spam_list_notification_msg">You are being protected from %d spam numbers, now.</string>
<string name="spam_list_updating_error">Spam protection could not be updated!</string>
<string name="spam_list_updating_status">Spam protection is being updated ...</string>
<string name="speeddial_header">Your speed dial</string>
<string name="status_bar_notification_info_overflow">999+</string>
<string name="storing">storing</string>
<string name="subscription_dialog_abs_description">Known spam numbers will be &lt;b>blocked automatically&lt;/b></string>
<string name="subscription_dialog_btn_continue">CONTINUE</string>
<string name="subscription_dialog_no_ads_description">&lt;b>No more ads&lt;/b></string>
<string name="subscription_dialog_title">Upgrade to</string>
<string name="subscription_dialog_trial_period_description">&lt;b>Try for free for %s days.&lt;/b> Cancel subscription at any time in Google Play Store</string>
<string name="subscription_dialog_trial_period_description_default">Try for free</string>
<string name="swipe_hint">Swipe to close</string>
<string name="term_disclaimer_complete_name">The %s of phone numbers only works in connection with our call detection. To make this work phone numbers of unrecognizable callers need to be transferred to the search service regularly.</string>
<string name="term_hint_accept">Activate caller ID</string>
<string name="term_hint_disclaimer">Caller ID &amp; Spam protection</string>
<string name="term_hint_disclaimer_body">In our video we explain to you how our app protects you from spam calls.</string>
<string name="terms">Terms</string>
<string name="terms_links">Terms of use</string>
<string name="terms_new_available">Please agree to the new terms of use</string>
<string name="terms_no_longer_valid_accept_new">&lt;b>Please agree to the new terms of use&lt;/b></string>
<string name="terms_no_longer_valid_go_to_new">GO TO THE NEW TERMS OF USE</string>
<string name="terms_no_longer_valid_screen_accept_btn">ACCEPT</string>
<string name="terms_no_longer_valid_screen_description_body">There are new terms of use for Clever Dialer. Please accept these terms to be able to continue using the app.</string>
<string name="tour_accept">Accept and activate protection</string>
<string name="tour_call_incoming">Incoming call</string>
<string name="tour_call_location">United Kingdom</string>
<string name="tour_call_number">+44 20 123xy67</string>
<string name="tour_check_crashlytics">Help to improve the Clever Dialer App by automatically sending us diagnostics information. You can find further details on this here:</string>
<string name="tour_disclaimer">Data privacy is very important to us. Clever Dialer is being operated in the European Union and is subject to the EU data privacy law.</string>
<string name="tour_incognito">... or identify a caller that is not listed in your address book.</string>
<string name="tour_incoming_call">If you receive a call from an unrecognizable phone number, we show you who is trying to reach you. For example ...</string>
<string name="tour_instructions"><b>Clever Dialer protects you from spam calls.</b>"
You can find out how this works by swiping to the left."</string>
<string name="tour_link_crashlytics">&lt;a>http://try.crashlytics.com/terms/&lt;/a></string>
<string name="tour_permissions_continue">Continue</string>
<string name="tour_permissions_default_dialer">Make Clever Dialer the<b> default phone app</b>. This ensures that unwanted calls can be<b> reliably blocked</b>. Other phone apps are not affected by this.</string>
<string name="tour_permissions_needed_permissions">Clever Dialer requires at least access to phone calls and contacts to be able to identify callers and display contact information.</string>
<string name="tour_spam">... we warn you against spam calls or cost traps ....</string>
<string name="unblock">UNBLOCK</string>
<string name="unblock_calllog">Unblock</string>
<string name="version_check_download">DOWNLOAD LATEST VERSION</string>
<string name="version_check_get_new">Please download the latest version of Clever Dialer. Otherwise unexpected errors may occur.</string>
<string name="version_check_precall_overlay">&lt;b>Outdated version!&lt;/b>&lt;br /> More data cannot be loaded.</string>
<string name="video_url">f_RQ2NG_YaA</string>
<string name="yes">YES</string>
<string name="zero_postcall_number_of_comments">Comments and further details</string>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment