├── .classpath ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .project ├── LICENSE.txt ├── README.md ├── app ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── info │ │ └── guardianproject │ │ └── checkey │ │ ├── AppEntry.java │ │ ├── AppListAdapter.java │ │ ├── AppListLoader.java │ │ ├── DetailViewActivity.java │ │ ├── MainActivity.java │ │ ├── PackageIntentReceiver.java │ │ ├── Utils.java │ │ └── WebViewActivity.java │ └── res │ ├── drawable-hdpi │ ├── ic_launcher.png │ └── virustotal.png │ ├── drawable-mdpi │ ├── ic_launcher.png │ └── virustotal.png │ ├── drawable-xhdpi │ ├── ic_launcher.png │ └── virustotal.png │ ├── drawable-xxhdpi │ ├── ic_launcher.png │ └── virustotal.png │ ├── layout-v11 │ └── app_list_item.xml │ ├── layout │ ├── activity_detail_view.xml │ ├── activity_main.xml │ ├── activity_webview.xml │ ├── app_entry.xml │ └── app_list_item.xml │ ├── menu │ ├── main.xml │ └── webview.xml │ ├── values-az │ └── strings.xml │ ├── values-br │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-fa │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-nb │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-pt-rPT │ └── strings.xml │ ├── values-pt │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-sl │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-v11 │ └── styles.xml │ ├── values-v14 │ └── styles.xml │ ├── values-w820dp │ └── dimens.xml │ ├── values-zh-rCN │ └── strings.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── build.gradle ├── config.yaml ├── description ├── az.xlf ├── de.xlf ├── description-to-metadata ├── el.xlf ├── es.xlf ├── fi.xlf ├── fr.xlf ├── ja.xlf ├── ko.xlf ├── nb.xlf ├── pl.xlf ├── pt-rPT.xlf ├── ru.xlf ├── sl.xlf ├── source.xlf ├── tr.xlf └── zh-rCN.xlf ├── make-release-build ├── metadata ├── af │ └── short_description.txt ├── ar │ └── short_description.txt ├── az │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── bg │ └── short_description.txt ├── ca │ └── short_description.txt ├── cs │ └── short_description.txt ├── da │ └── short_description.txt ├── de │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── el │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── en-US │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ └── 103.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── checkey-phone.png │ │ │ └── checkey.png │ │ └── sevenInchScreenshots │ │ │ └── checkey-tablet.png │ ├── short_description.txt │ └── title.txt ├── es │ ├── full_description.txt │ └── short_description.txt ├── et │ └── short_description.txt ├── fi │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── fr │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── hi │ └── short_description.txt ├── hr │ └── short_description.txt ├── hu │ └── short_description.txt ├── id │ └── short_description.txt ├── it │ └── short_description.txt ├── ja │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── ko │ ├── full_description.txt │ └── short_description.txt ├── lt │ └── short_description.txt ├── lv │ └── short_description.txt ├── nb │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ └── 103.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── nl │ └── short_description.txt ├── no │ ├── full_description.txt │ └── short_description.txt ├── pl │ └── short_description.txt ├── pt-BR │ ├── full_description.txt │ └── short_description.txt ├── pt-PT │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ └── 103.txt │ ├── full_description.txt │ └── short_description.txt ├── pt │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ └── 103.txt │ ├── full_description.txt │ └── short_description.txt ├── ro │ └── short_description.txt ├── ru │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── sk │ └── short_description.txt ├── sl │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── sv │ └── short_description.txt ├── sw │ └── short_description.txt ├── th │ └── short_description.txt ├── tr │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── uk │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ └── 103.txt │ └── short_description.txt ├── vi │ └── short_description.txt └── zh-CN │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── settings.gradle └── tools ├── check-fastlane-whitespace.py ├── fix-translations └── png-pre-compress /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | 3 | # auto-generated files from Android builds 4 | /.gradle/ 5 | /.idea/ 6 | /app/build/ 7 | /*.properties 8 | *.iml 9 | 10 | # ignore fdroid build dirs 11 | /build/ 12 | /tmp/ 13 | /unsigned/ 14 | 15 | # Hugo 16 | /public/ 17 | /resources/ 18 | 19 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | image: registry.gitlab.com/fdroid/ci-images-client:latest 2 | 3 | cache: 4 | paths: 5 | - .gradle/wrapper 6 | - .gradle/caches 7 | 8 | stages: 9 | - test 10 | - deploy 11 | 12 | .android-template: &android-template 13 | before_script: 14 | - export GRADLE_USER_HOME=$PWD/.gradle 15 | - export ANDROID_COMPILE_SDK=`sed -n 's,.*compileSdkVersion\s*\([0-9][0-9]*\).*,\1,p' app/build.gradle` 16 | - alias sdkmanager="sdkmanager --no_https" 17 | - echo y | sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}" > /dev/null 18 | - apt-get update 19 | - apt-get -qy install gradle --no-install-recommends 20 | 21 | .test-template: &test-template 22 | <<: *android-template 23 | stage: test 24 | artifacts: 25 | name: "${CI_PROJECT_PATH}_${CI_JOB_STAGE}_${CI_COMMIT_REF_NAME}_${CI_COMMIT_SHA}" 26 | paths: 27 | - logcat.txt 28 | - app/build/reports 29 | - app/build/outputs/*ml 30 | - app/build/outputs/apk 31 | expire_in: 1 week 32 | when: on_failure 33 | after_script: 34 | - echo "Download debug artifacts from https://gitlab.com/${CI_PROJECT_PATH}/-/jobs" 35 | 36 | test_lint: 37 | <<: *test-template 38 | script: 39 | # always report on lint errors to the build log 40 | - sed -i -e 's,textReport .*,textReport true,' app/build.gradle 41 | - gradle build 42 | 43 | # once these prove stable, the task should be switched to 44 | # connectedCheck to test all the build flavors 45 | .connected-template: &connected-template 46 | script: 47 | - gradle assembleDebug 48 | - export AVD_SDK=`echo $CI_JOB_NAME | awk '{print $2}'` 49 | - export AVD_TAG=`echo $CI_JOB_NAME | awk '{print $3}'` 50 | - export AVD_ARCH=`echo $CI_JOB_NAME | awk '{print $4}'` 51 | - export AVD_PACKAGE="system-images;android-${AVD_SDK};${AVD_TAG};${AVD_ARCH}" 52 | - echo $AVD_PACKAGE 53 | - emulator -accel-check || true 54 | 55 | # download proven emulator version, based on 56 | # https://aur.archlinux.org/android-emulator.git 57 | - rm -rf $ANDROID_HOME/emulator 58 | - wget -q http://dl.google.com/android/repository/emulator-linux-5264690.zip 59 | - echo "48c1cda2bdf3095d9d9d5c010fbfb3d6d673e3ea emulator-linux-5264690.zip" | sha1sum -c 60 | - unzip -qq -d $ANDROID_HOME emulator-linux-5264690.zip 61 | - grep Revision $ANDROID_HOME/emulator/source.properties 62 | 63 | - alias sdkmanager 64 | - echo y | sdkmanager "platforms;android-$AVD_SDK" > /dev/null 65 | - if ! avdmanager list avd | grep "Name. avd$AVD_SDK$"; then 66 | set -x; 67 | rm -rf ~/.android/avd $ANDROID_HOME/system-images; 68 | echo y | sdkmanager "$AVD_PACKAGE" > /dev/null; 69 | echo no | avdmanager create avd --name avd$AVD_SDK --tag "$AVD_TAG" --package "$AVD_PACKAGE" --sdcard 64M --device "Nexus 5"; 70 | export RAMSIZE="`sed -n 's,^MemAvailable:[^0-9]*\([0-9][0-9]*\)[^0-9]*$,\1,p' /proc/meminfo`"; 71 | if [ $RAMSIZE -le 2048 ]; then 72 | sed -i '/^hw\.ramSize\s*=.*/d' ~/.android/avd/*.avd/config.ini; 73 | echo "hw.ramSize=1024" >> ~/.android/avd/*.avd/config.ini; 74 | fi; 75 | avdmanager list avd; 76 | set +x; 77 | fi 78 | - grep -v '^License' $ANDROID_HOME/system-images/android-$AVD_SDK/$AVD_TAG/$AVD_ARCH/source.properties 79 | - adb start-server 80 | - ls -l ~/.android 81 | - emulator -version 82 | - emulator -avd avd$AVD_SDK 83 | -no-audio 84 | -no-jni 85 | -no-snapstorage 86 | -no-window 87 | -skip-adb-auth 88 | -verbose 89 | -wipe-data 90 | & 91 | - wait-for-emulator 92 | - adb devices 93 | - adb shell input keyevent 82 & 94 | - test $AVD_SDK -ge 25 || export FLAG=-Pandroid.testInstrumentationRunnerArguments.notAnnotation=android.support.test.filters.LargeTest 95 | - gradle connectedDebugAndroidTest $FLAG || (adb -e logcat -d > logcat.txt; exit 1) 96 | 97 | connected 22 default armeabi-v7a: 98 | retry: 1 99 | <<: *test-template 100 | <<: *connected-template 101 | 102 | .website-template: &website-template 103 | image: debian:buster-slim 104 | variables: 105 | GIT_SUBMODULE_STRATEGY: normal 106 | script: 107 | - apt-get update 108 | - apt-get -qy install --no-install-recommends hugo 109 | - sed -i "s,^baseURL\x3a.*,baseURL\x3a https://${CI_PROJECT_NAMESPACE}.gitlab.io/${CI_PROJECT_NAME}/," config.yaml 110 | - hugo 111 | - test -e public/es/index.html 112 | 113 | website: 114 | stage: test 115 | except: 116 | - master 117 | <<: *website-template 118 | 119 | pages: 120 | stage: deploy 121 | only: 122 | - master 123 | artifacts: 124 | paths: 125 | - public 126 | <<: *website-template 127 | 128 | deploy_nightly: 129 | <<: *android-template 130 | stage: deploy 131 | only: 132 | - master 133 | script: 134 | - test -z "$DEBUG_KEYSTORE" && exit 0 135 | - sed -i 136 | 's,.*,Checkey Nightly,' 137 | app/src/main/res/values*/strings.xml 138 | - sed -i "s,^\(\s*versionCode\) *[0-9].*,\1 $(date '+%s')," app/build.gradle 139 | # build the APKs! 140 | - gradle assembleDebug 141 | - fdroid nightly -v 142 | 143 | after_script: 144 | # this file changes every time but should not be cached 145 | - rm -f $GRADLE_USER_HOME/caches/modules-2/modules-2.lock 146 | - rm -fr $GRADLE_USER_HOME/caches/*/plugin-resolution/ 147 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "themes/fastlane-hugo-theme"] 2 | path = themes/fastlane-hugo-theme 3 | url = https://github.com/guardianproject/fastlane-hugo-theme.git 4 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | ChecKey 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | Checkey is a utility for getting information about the APKs that are installed 3 | on your device. Starting with a list of all of the apps that you have 4 | installed on your device, it will show you the APK signature with a single 5 | touch, and provides links to virustotal.com and androidobservatory.org to 6 | easily access the profiles of that APK. It will also let you export the 7 | signing certificate and generate ApkSignaturePin pin files for use with the 8 | TrustedIntents library. 9 | 10 | 11 | Licenses 12 | ======== 13 | 14 | The app itself it released under the GNU GPLv3+. Here are some specific 15 | credits: 16 | 17 | * app icon: Ada Lovelace as a child (public domain) 18 | 19 | * app feature graphic: https://commons.wikimedia.org/wiki/File:SZ42-6-wheels-lightened.jpg 20 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | /* set the versionCode based on how many commits in the repo */ 4 | def getVersionCode = { -> 5 | try { 6 | def stdout = new ByteArrayOutputStream() 7 | exec { 8 | commandLine 'git', 'rev-list', '--first-parent', '--count', 'HEAD' 9 | standardOutput = stdout 10 | } 11 | return Integer.parseInt(stdout.toString().trim()) 12 | } 13 | catch (ignored) { 14 | return -1; 15 | } 16 | } 17 | 18 | /* gets the version name from the latest Git tag */ 19 | def getVersionName = { -> 20 | def stdout = new ByteArrayOutputStream() 21 | exec { 22 | commandLine 'git', 'describe', '--tags', '--always' 23 | standardOutput = stdout 24 | } 25 | return stdout.toString().trim() 26 | } 27 | 28 | android { 29 | compileSdkVersion 23 30 | buildToolsVersion "24.0.0" 31 | 32 | aaptOptions { 33 | cruncherEnabled = false 34 | } 35 | 36 | defaultConfig { 37 | minSdkVersion 10 38 | targetSdkVersion 23 39 | versionCode 201 40 | versionName getVersionName() 41 | } 42 | 43 | lintOptions { 44 | checkReleaseBuilds false 45 | abortOnError true 46 | 47 | htmlReport true 48 | xmlReport false 49 | textReport false 50 | 51 | warning 'MissingTranslation' 52 | // PackageManager.GET_DISABLED_COMPONENTS was removed in 24 53 | warning 'WrongConstant' 54 | } 55 | } 56 | 57 | dependencies { 58 | compile 'com.android.support:appcompat-v7:23.1.1' 59 | } 60 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 13 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 30 | 31 | 34 | 35 | 36 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /app/src/main/java/info/guardianproject/checkey/AppEntry.java: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed under the Apache License, Version 2.0 (the "License"); 3 | you may not use this file except in compliance with the License. 4 | You may obtain a copy of the License at 5 | 6 | http://www.apache.org/licenses/LICENSE-2.0 7 | 8 | Unless required by applicable law or agreed to in writing, software 9 | distributed under the License is distributed on an "AS IS" BASIS, 10 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | See the License for the specific language governing permissions and 12 | limitations under the License. 13 | 14 | Based on Paul Blundell's Tutorial: 15 | http://blog.blundell-apps.com/tut-asynctask-loader-using-support-library/ 16 | 17 | which is originally based on: 18 | https://developer.android.com/reference/android/content/AsyncTaskLoader.html 19 | */ 20 | 21 | package info.guardianproject.checkey; 22 | 23 | import android.content.pm.ApplicationInfo; 24 | import android.content.pm.PackageManager; 25 | import android.graphics.drawable.Drawable; 26 | 27 | import java.io.File; 28 | 29 | public class AppEntry { 30 | public static final String TAG = "AppEntry"; 31 | 32 | private final AppListLoader loader; 33 | private final ApplicationInfo info; 34 | private final File apkFile; 35 | private boolean enabled; 36 | private String label; 37 | private Drawable icon; 38 | private boolean mounted; 39 | 40 | public AppEntry(AppListLoader loader, ApplicationInfo info) { 41 | this.loader = loader; 42 | this.info = info; 43 | apkFile = new File(info.sourceDir); 44 | } 45 | 46 | public ApplicationInfo getApplicationInfo() { 47 | return info; 48 | } 49 | 50 | public String getPackageName() { 51 | return info.packageName; 52 | } 53 | 54 | public File getApkFile() { 55 | return apkFile; 56 | } 57 | 58 | public String getLabel() { 59 | return label; 60 | } 61 | 62 | public boolean isEnabled() { 63 | return enabled; 64 | } 65 | 66 | public void setEnabled(boolean enabled) { 67 | this.enabled = enabled; 68 | } 69 | 70 | public Drawable getIcon() { 71 | if (icon == null) { 72 | if (apkFile.exists()) { 73 | icon = info.loadIcon(loader.pm); 74 | return icon; 75 | } else { 76 | mounted = false; 77 | } 78 | } else if (!mounted) { 79 | // If the app wasn't mounted but is now mounted, reload its icon 80 | if (apkFile.exists()) { 81 | mounted = true; 82 | icon = info.loadIcon(loader.pm); 83 | } 84 | } else { 85 | return icon; 86 | } 87 | 88 | return loader.getContext().getResources().getDrawable(android.R.drawable.sym_def_app_icon); 89 | } 90 | 91 | @Override 92 | public String toString() { 93 | return label; 94 | } 95 | 96 | public void loadLabel(PackageManager pm) { 97 | if (label == null || !mounted) { 98 | if (apkFile.exists()) { 99 | mounted = true; 100 | CharSequence label = null; 101 | label = info.loadLabel(pm); 102 | this.label = label != null ? label.toString() : info.packageName; 103 | } else { 104 | mounted = false; 105 | label = info.packageName; 106 | } 107 | } 108 | } 109 | } 110 | -------------------------------------------------------------------------------- /app/src/main/java/info/guardianproject/checkey/AppListAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed under the Apache License, Version 2.0 (the "License"); 3 | you may not use this file except in compliance with the License. 4 | You may obtain a copy of the License at 5 | 6 | http://www.apache.org/licenses/LICENSE-2.0 7 | 8 | Unless required by applicable law or agreed to in writing, software 9 | distributed under the License is distributed on an "AS IS" BASIS, 10 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | See the License for the specific language governing permissions and 12 | limitations under the License. 13 | 14 | Based on Paul Blundell's Tutorial: 15 | http://blog.blundell-apps.com/tut-asynctask-loader-using-support-library/ 16 | 17 | which is originally based on: 18 | https://developer.android.com/reference/android/content/AsyncTaskLoader.html 19 | */ 20 | 21 | package info.guardianproject.checkey; 22 | 23 | import android.content.Context; 24 | import android.util.SparseArray; 25 | import android.view.LayoutInflater; 26 | import android.view.View; 27 | import android.view.ViewGroup; 28 | import android.widget.BaseAdapter; 29 | import android.widget.ImageView; 30 | import android.widget.TextView; 31 | 32 | import java.util.List; 33 | 34 | public class AppListAdapter extends BaseAdapter { 35 | 36 | private final LayoutInflater inflater; 37 | private List data; 38 | 39 | public AppListAdapter(Context context) { 40 | inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 41 | } 42 | 43 | public void setData(List data) { 44 | this.data = data; 45 | notifyDataSetChanged(); 46 | } 47 | 48 | @Override 49 | public View getView(int position, View view, ViewGroup parent) { 50 | if (view == null) 51 | view = inflater.inflate(R.layout.app_list_item, parent, false); 52 | 53 | AppEntry appEntry = data.get(position); 54 | ImageView iconView = ViewHolder.get(view, R.id.icon); 55 | iconView.setImageDrawable(appEntry.getIcon()); 56 | TextView labelView = ViewHolder.get(view, R.id.application_label); 57 | labelView.setText(appEntry.getLabel()); 58 | TextView packageView = ViewHolder.get(view, R.id.package_name); 59 | packageView.setText(appEntry.getPackageName()); 60 | return view; 61 | } 62 | 63 | @Override 64 | public int getCount() { 65 | return data == null ? 0 : data.size(); 66 | } 67 | 68 | @Override 69 | public Object getItem(int position) { 70 | if (data == null || position < 0) 71 | return null; 72 | else 73 | return data.get(position); 74 | } 75 | 76 | @Override 77 | public long getItemId(int position) { 78 | return position; 79 | } 80 | 81 | /* from http://www.piwai.info/android-adapter-good-practices/#Update */ 82 | public static class ViewHolder { 83 | // a generic return type to reduce the casting noise in client code 84 | @SuppressWarnings("unchecked") 85 | public static T get(View view, int id) { 86 | SparseArray viewHolder = (SparseArray) view.getTag(); 87 | if (viewHolder == null) { 88 | viewHolder = new SparseArray(); 89 | view.setTag(viewHolder); 90 | } 91 | View childView = viewHolder.get(id); 92 | if (childView == null) { 93 | childView = view.findViewById(id); 94 | viewHolder.put(id, childView); 95 | } 96 | return (T) childView; 97 | } 98 | } 99 | 100 | } 101 | -------------------------------------------------------------------------------- /app/src/main/java/info/guardianproject/checkey/DetailViewActivity.java: -------------------------------------------------------------------------------- 1 | package info.guardianproject.checkey; 2 | 3 | import android.content.Intent; 4 | import android.content.pm.ApplicationInfo; 5 | import android.content.pm.PackageManager; 6 | import android.content.pm.PackageManager.NameNotFoundException; 7 | import android.graphics.drawable.Drawable; 8 | import android.os.Bundle; 9 | import android.support.v7.app.ActionBar; 10 | import android.support.v7.app.ActionBarActivity; 11 | import android.text.TextUtils; 12 | import android.view.View; 13 | import android.widget.ImageView; 14 | import android.widget.TextView; 15 | 16 | public class DetailViewActivity extends ActionBarActivity { 17 | public static final String TAG = "DetailViewActivity"; 18 | 19 | @Override 20 | protected void onCreate(Bundle savedInstanceState) { 21 | super.onCreate(savedInstanceState); 22 | setContentView(R.layout.activity_detail_view); 23 | ActionBar actionBar = getSupportActionBar(); 24 | actionBar.setDisplayHomeAsUpEnabled(true); 25 | 26 | Intent intent = getIntent(); 27 | if (intent == null) { 28 | finish(); 29 | return; 30 | } 31 | 32 | String appName = intent.getStringExtra(Intent.EXTRA_TEXT); 33 | TextView appNameTextView = (TextView) findViewById(R.id.app_name); 34 | appNameTextView.setText(appName); 35 | 36 | String packageName = intent.getStringExtra(Intent.EXTRA_SUBJECT); 37 | TextView packageNameTextView = (TextView) findViewById(R.id.package_name); 38 | packageNameTextView.setText(packageName); 39 | 40 | try { 41 | PackageManager pm = getPackageManager(); 42 | ApplicationInfo info = pm.getApplicationInfo(packageName, 43 | PackageManager.GET_UNINSTALLED_PACKAGES); 44 | Drawable icon = info.loadIcon(pm); 45 | ImageView appIconImageView = (ImageView) findViewById(R.id.app_icon); 46 | appIconImageView.setImageDrawable(icon); 47 | TextView apkPathTextView = (TextView) findViewById(R.id.apk_path); 48 | apkPathTextView.setText(info.sourceDir); 49 | 50 | TextView publicApkPathLabel = (TextView) findViewById(R.id.public_apk_path_label); 51 | TextView publicApkPathTextView = (TextView) findViewById(R.id.public_apk_path); 52 | if (TextUtils.equals(info.sourceDir, info.publicSourceDir)) { 53 | publicApkPathLabel.setVisibility(View.GONE); 54 | publicApkPathTextView.setVisibility(View.GONE); 55 | } else { 56 | publicApkPathLabel.setVisibility(View.VISIBLE); 57 | publicApkPathTextView.setVisibility(View.VISIBLE); 58 | publicApkPathTextView.setText(info.publicSourceDir); 59 | } 60 | 61 | TextView dataDirectoryTextView = (TextView) findViewById(R.id.data_directory); 62 | dataDirectoryTextView.setText(info.dataDir); 63 | 64 | CharSequence description = info.loadDescription(pm); 65 | if (!TextUtils.isEmpty(description)) { 66 | TextView descriptionTextView = (TextView) findViewById(R.id.app_description); 67 | descriptionTextView.setVisibility(View.VISIBLE); 68 | descriptionTextView.setText(description); 69 | } 70 | 71 | TextView minSdkTextView = (TextView) findViewById(R.id.target_sdk_version); 72 | minSdkTextView.setText(String.valueOf(info.targetSdkVersion)); 73 | 74 | TextView uidTextView = (TextView) findViewById(R.id.uid); 75 | uidTextView.setText(String.valueOf(info.uid)); 76 | 77 | } catch (NameNotFoundException e) { 78 | e.printStackTrace(); 79 | } 80 | 81 | MainActivity.showCertificateInfo(this, packageName); 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /app/src/main/java/info/guardianproject/checkey/PackageIntentReceiver.java: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed under the Apache License, Version 2.0 (the "License"); 3 | you may not use this file except in compliance with the License. 4 | You may obtain a copy of the License at 5 | 6 | http://www.apache.org/licenses/LICENSE-2.0 7 | 8 | Unless required by applicable law or agreed to in writing, software 9 | distributed under the License is distributed on an "AS IS" BASIS, 10 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | See the License for the specific language governing permissions and 12 | limitations under the License. 13 | 14 | Based on Paul Blundell's Tutorial: 15 | http://blog.blundell-apps.com/tut-asynctask-loader-using-support-library/ 16 | 17 | which is originally based on: 18 | https://developer.android.com/reference/android/content/AsyncTaskLoader.html 19 | */ 20 | 21 | package info.guardianproject.checkey; 22 | 23 | import android.content.BroadcastReceiver; 24 | import android.content.Context; 25 | import android.content.Intent; 26 | import android.content.IntentFilter; 27 | 28 | /** 29 | * Looks for changes to the installed apps so the loader can be updated 30 | */ 31 | public class PackageIntentReceiver extends BroadcastReceiver { 32 | final AppListLoader loader; 33 | 34 | public PackageIntentReceiver(AppListLoader loader) { 35 | this.loader = loader; 36 | IntentFilter filter = new IntentFilter(); 37 | filter.addAction(Intent.ACTION_PACKAGE_ADDED); 38 | filter.addAction(Intent.ACTION_PACKAGE_REMOVED); 39 | filter.addAction(Intent.ACTION_PACKAGE_CHANGED); 40 | filter.addDataScheme("package"); 41 | loader.getContext().registerReceiver(this, filter); 42 | // Register for events related to SD Card installation 43 | IntentFilter sdFilter = new IntentFilter(); 44 | sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); 45 | sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); 46 | loader.getContext().registerReceiver(this, sdFilter); 47 | } 48 | 49 | @Override 50 | public void onReceive(Context context, Intent intent) { 51 | loader.onContentChanged(); 52 | } 53 | 54 | } 55 | -------------------------------------------------------------------------------- /app/src/main/java/info/guardianproject/checkey/WebViewActivity.java: -------------------------------------------------------------------------------- 1 | package info.guardianproject.checkey; 2 | 3 | import android.content.ActivityNotFoundException; 4 | import android.content.Intent; 5 | import android.net.Uri; 6 | import android.net.http.SslError; 7 | import android.os.Bundle; 8 | import android.support.v7.app.ActionBar; 9 | import android.support.v7.app.ActionBarActivity; 10 | import android.text.TextUtils; 11 | import android.view.Menu; 12 | import android.view.MenuItem; 13 | import android.webkit.SslErrorHandler; 14 | import android.webkit.WebView; 15 | import android.webkit.WebViewClient; 16 | 17 | public class WebViewActivity extends ActionBarActivity { 18 | 19 | private Intent intent; 20 | private Uri uri; 21 | 22 | @Override 23 | protected void onCreate(Bundle savedInstanceState) { 24 | super.onCreate(savedInstanceState); 25 | setContentView(R.layout.activity_webview); 26 | ActionBar actionBar = getSupportActionBar(); 27 | actionBar.setDisplayHomeAsUpEnabled(true); 28 | 29 | intent = getIntent(); 30 | int resid = intent.getIntExtra(Intent.EXTRA_TITLE, 0); 31 | if (resid != 0) 32 | actionBar.setTitle(resid); 33 | 34 | WebView webView = (WebView) findViewById(R.id.webview); 35 | webView.setWebViewClient(new MyWebViewClient()); 36 | uri = intent.getData(); 37 | webView.loadUrl(uri.toString()); 38 | } 39 | 40 | @Override 41 | public boolean onCreateOptionsMenu(Menu menu) { 42 | getMenuInflater().inflate(R.menu.webview, menu); 43 | return true; 44 | } 45 | 46 | @Override 47 | public boolean onOptionsItemSelected(MenuItem item) { 48 | try { 49 | switch (item.getItemId()) { 50 | case android.R.id.home: 51 | setResult(RESULT_CANCELED); 52 | finish(); 53 | return true; 54 | case R.id.share: 55 | String appName = intent.getStringExtra(Intent.EXTRA_TEXT); 56 | Intent i = new Intent(Intent.ACTION_SEND); 57 | i.setType("plain/text"); 58 | i.putExtra(Intent.EXTRA_TITLE, appName); 59 | i.putExtra(Intent.EXTRA_SUBJECT, appName); 60 | i.putExtra(Intent.EXTRA_TEXT, uri.toString()); 61 | startActivity(Intent.createChooser(i, getString(R.string.share_url_using))); 62 | return true; 63 | case R.id.open_in_browser: 64 | startActivity(new Intent(Intent.ACTION_VIEW, uri)); 65 | return true; 66 | } 67 | } catch (ActivityNotFoundException e) { 68 | e.printStackTrace(); 69 | } 70 | return super.onOptionsItemSelected(item); 71 | } 72 | 73 | private class MyWebViewClient extends WebViewClient { 74 | @Override 75 | public boolean shouldOverrideUrlLoading(WebView view, String url) { 76 | if (TextUtils.isEmpty(url)) 77 | return true; 78 | Uri clickedUri = Uri.parse(url); 79 | if (uri == null) 80 | return true; 81 | String host = clickedUri.getHost(); 82 | if (host.equals("www.virustotal.com") || host.equals("androidobservatory.org")) { 83 | // do not override; let my WebView load the page 84 | return false; 85 | } 86 | // otherwise launch another Activity to handle the link 87 | startActivity(new Intent(Intent.ACTION_VIEW, clickedUri)); 88 | return true; 89 | } 90 | 91 | @Override 92 | public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) { 93 | String host = uri.getHost(); 94 | int errno = error.getPrimaryError(); 95 | if (host.equals("androidobservatory.org") 96 | && (errno == SslError.SSL_EXPIRED || errno == SslError.SSL_UNTRUSTED)) { 97 | handler.proceed(); 98 | } else { 99 | super.onReceivedSslError(view, handler, error); 100 | } 101 | } 102 | 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/virustotal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/app/src/main/res/drawable-hdpi/virustotal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/virustotal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/app/src/main/res/drawable-mdpi/virustotal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/virustotal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/app/src/main/res/drawable-xhdpi/virustotal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/virustotal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/app/src/main/res/drawable-xxhdpi/virustotal.png -------------------------------------------------------------------------------- /app/src/main/res/layout-v11/app_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | 23 | 24 | 32 | 33 | 37 | 38 | 46 | 47 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_webview.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/layout/app_entry.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/layout/app_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | 22 | 23 | 31 | 32 | 36 | 37 | 45 | 46 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 16 | 20 | 24 | 28 | 33 | 38 | 44 | 45 | -------------------------------------------------------------------------------- /app/src/main/res/menu/webview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/values-az/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey alətinizə yüklədiyiniz tətbiqetmələrinin APK-sı haqda məlumatları üzə 5 | çıxarmaq üçündür. Alətinizdəki tətbiqetmələrinin siyahısına baxmaqdan başlayaraq, bir toxunuşla APK imzalarını 6 | göstərəcək və virustotal.com və androidobservatory.org ilə o APK-lərin profillərini izləmək imkanı verəcək. O, 7 | həm də Trustedİntents kitabxanası vasitəsilə imzalanmış sertifikatları ixrac etmək və ApkSignaturePin pin 8 | fayllar yaratmağa imkan verəcək. 9 | 10 | işarə 11 | Quraşdırmalar 12 | Tətbiqetmələr tapılmadı 13 | Ətraflı 14 | VirusTotal 15 | Paket adı 16 | APK Hash 17 | Setifikat imzalaması 18 | Səyyahda aç 19 | Paylaş 20 | URL-i bununla paylaş: 21 | Saxla… 22 | Sertifikatı bununla saxla: 23 | Pin yarat 24 | Paket adı: 25 | APK Cığırı: 26 | Açıq APK Cığırı: 27 | Məlumat qovluğu: 28 | Açar növü: 29 | İmzalama növü: 30 | Məqsədli SDK versiyası: 31 | Versiya: 32 | Yaradılıb: 33 | Bitir: 34 | Mövzu: 35 | Verən: 36 | Serial: 37 | 38 | İmzalanan sertifikatın barmaq izini yarada bilmir! 39 | Tətbiqetmə tapılmadı! 40 | 41 | -------------------------------------------------------------------------------- /app/src/main/res/values-br/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | arlun 5 | Arventennoù 6 | Arload ebet kavet 7 | Munudoù 8 | VirusTotal 9 | Anv ar pak 10 | APK Hash 11 | Sinadur testeni 12 | Digeriñ er merdeer 13 | Rannañ 14 | Rannañ an URL en ur implijout: 15 | Enrollañ… 16 | Enrollañ an testeni en ur ober gant: 17 | Genel ur Pin 18 | Anv ar pak: 19 | Hent APK: 20 | Hent APK foran: 21 | Kavlec\'h ar roadennoù: 22 | Doare alc\'hwez: 23 | Doare sinadur: 24 | Version: 25 | Krouet: 26 | Diamzeriet a-benn: 27 | Sujed: 28 | Skigner: 29 | E heuliadenn: 30 | 31 | 32 | -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey ist eine Anwendung, um Informationen über Anwendungen die auf deinem Gerät 5 | installiert sind, zu bekommen. Anfangs wird eine Liste mit allen installierten Apps angezeigt. Mit einem 6 | einfachen Druck auf die App werden die Signatur und Links zu virustotal.com sowie androidobservatory.org 7 | angezeigt. Außerdem können die Zertifikate exportiert werden und ApkSignaturePin Pin-Dateien für die 8 | TrustedIntents Bibliothek erzeugt werden. 9 | 10 | Symbol 11 | Einstellungen 12 | Keine Anwendungen gefunden 13 | Details 14 | VirusTotal 15 | Paketname 16 | APK-Hash 17 | Signaturzertifikat 18 | Im Browser öffnen 19 | Teilen 20 | URL teilen mit: 21 | Speichern… 22 | Zertifikat speichern mit: 23 | PIN erzeugen 24 | Paketname: 25 | APK-Pfad: 26 | Öffentlicher APK-Pfad: 27 | Datenverzeichnis: 28 | Schlüsseltyp: 29 | Signaturtyp: 30 | SDK-Zielversion: 31 | Version: 32 | Erstellt: 33 | Läuft ab: 34 | Betreff: 35 | Aussteller: 36 | Seriennummer: 37 | 38 | Es kann kein Fingerabdruck vom Signaturzertifikat erstellt werden! 39 | 40 | Kein App-Eintrag gefunden! 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Το Checkey είναι ένα βοηθητικό πρόγραμμα για τη λήψη πληροφοριών σχετικά με τα APK 5 | που είναι εγκατεστημένα στη συσκευή σας. Ξεκινώντας με μια λίστα όλων των εφαρμογών που έχετε εγκαταστήσει στη 6 | συσκευή σας, θα σας δείξει την υπογραφή του APK με ένα μόνο άγγιγμα και θα παρέχει συνδέσμους στο 7 | virustotal.com και το androidobservatory.org για εύκολη πρόσβαση στα προφίλ αυτού του APK. Θα σας επιτρέψει 8 | επίσης να εξάγετε το πιστοποιητικό υπογραφής και να δημιουργήσετε αρχεία pin ApkSignaturePin για χρήση με τη 9 | βιβλιοθήκη TrustedIntents. 10 | 11 | εικονίδιο 12 | Ρυθμίσεις 13 | Δεν βρέθηκαν εφαρμογές 14 | Λεπτομέριες 15 | VirusTotal 16 | Όνομα Πακέτου 17 | APK Hash 18 | Πιστοποιητικό Υπογραφής 19 | Ανοιγμα σε πρόγραμμα περιήγησης 20 | Κοινή χρήση 21 | Κοινή χρήση διεύθυνσης URL χρησιμοποιώντας: 22 | Αποθήκευση… 23 | Αποθήκευση πιστοποιητικού χρησιμοποιώντας: 24 | Δημιουργία Pin 25 | \'Ονομα Πακέτου: 26 | Διαδρομή ΑΡΚ: 27 | Δημόσια Διαδρομή ΑΡΚ: 28 | Κατάλογος Δεδομένων: 29 | Τύπος Κλειδιού: 30 | Τύπος Υπογραφής: 31 | SDK Έκδοση Προορισμού: 32 | Έκδοση: 33 | Δημιουργήθηκε: 34 | Λήγει: 35 | Θέμα: 36 | Εκδότης: 37 | Σειριακός: 38 | 39 | Δεν είναι δυνατή η δημιουργία δακτυλικού αποτυπώματος από το 40 | πιστοποιητικό υπογραφής! 41 | 42 | Δεν βρέθηκε καταχώρηση εφαρμογής! 43 | 44 | -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey es una utilidad para recabar información sobre los APK instalados en su dispositivo. Comenzando por una lista de todas las aplicaciones instaladas, le mostrará la firma de cada APK con solo un toque y le brindará enlaces a virustotal.com y androidobservatory.org para un fácil acceso a los perfiles de los APK. También podrá exportar el certificado de firma y generar archivos ApkSignaturePin para utilizar con la biblioteca TrustedIntents. 5 | icono 6 | Configuración 7 | No se encontraron aplicaciones 8 | Detalles 9 | VirusTotal 10 | Nombre del paquete 11 | Hash de APK 12 | Certificado firmante 13 | Abrir en el navegador 14 | Compartir 15 | Compartir URL usando: 16 | Guardar… 17 | Guardar certificado usando: 18 | Generar Pin 19 | Nombre de paquete: 20 | Ruta de APK: 21 | Ruta pública de APK: 22 | Directorio de datos: 23 | Tipo de clave: 24 | Tipo de firma: 25 | Versión de SDK objetivo: 26 | Versión: 27 | Creación: 28 | Caducidad: 29 | Asunto: 30 | Distribuidor: 31 | N.º serie: 32 | 33 | No se puede crear una huella del certificado de firma. 34 | No se encontró ninguna entrada de aplicación. 35 | -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | آیکون 5 | تنظیمات 6 | برنامه یافت نشد 7 | جزئیات 8 | VirusTotal 9 | نام بسته 10 | کد هش APK 11 | گواهی امضای 12 | باز کردن در مرورگر 13 | اشتراک 14 | اشتراک URL با استفاده از: 15 | ذخیره … 16 | ذخیره گواهی با استفاده از: 17 | تولید پین 18 | نام بسته 19 | مسیر APK: 20 | مسیر APK عمومی: 21 | دایرکتوری اطلاعات: 22 | نوع کلید: 23 | نوع امضا: 24 | هدف SDK نسخه: 25 | نسخه: 26 | ایجاد شده: 27 | انقضا: 28 | موضوع: 29 | صادرکننده: 30 | سریال: 31 | 32 | نمی توان ساخت اثر انگشت از گواهی امضا! 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey on apuohjelma, jolla saa tietoja laiteeseen asennetuista 5 | APK-pakkaustiedostoista. Ohjelma luettelee aluksi kaikki laitteeseen asennetut sovellukset ja näyttää 6 | APK-allekirjoituksen yhdellä kosketuksella sekä tarjoaa linkit virustotal.com- ja 7 | androidobservatory.com-sivuistoille, joilta saa helposti kyseisen APK-pakkaustiedoston profiilit. Ohjelma 8 | sallii sinun myös viedä allekirjoitusvarmenteen ja tuottaa ApkSignaturePin-pin-tieodostoja käytettäväksi 9 | TrustedIntents-kirjastossa. 10 | 11 | kuvake 12 | Asetukset 13 | Yhtään sovellusta ei löytynyt 14 | Yksityiskohdat 15 | VirusTotal 16 | Pakkausnimi 17 | APK-tiiviste 18 | Allekirjoitetaan varmenne 19 | Avaa selaimessa 20 | Jaa 21 | Jaa verkko-osoite käyttäen: 22 | Tallenna… 23 | Tallenna varmenne käyttäen: 24 | Tuota pin-koodi 25 | Pakkausnimi: 26 | APK-polku: 27 | Julkinen APK-polku: 28 | Data-hakemisto: 29 | Avaintyyppi: 30 | Allekirjoitustyyppi: 31 | Kohde SDK-versio: 32 | Versio: 33 | Luotu: 34 | Vanhenee: 35 | Aihe: 36 | Julkaisija: 37 | Perättäinen: 38 | 39 | Allekirjoitetun varmenteen sormenjäljen tekeminen epäonnistui! 40 | 41 | Sovelluskohdetta ei löytynyt! 42 | 43 | -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey est un utilitaire permettant de recueillir les informations des APK 5 | installés sur votre appareil. En partant d\'une liste de toutes les applis installées sur votre appareil, 6 | Vériclé vous présentera la signature de l\'APK en un seul toucher, et vous offrira des liens vers 7 | virustotal.com et androidobservatory.org afin d\'accéder aisément aux profils de cet APK. Il vous permettra 8 | aussi d\'exporter le certificat de signature et de générer des fichiers NIP ApkSignaturePin pour les utiliser 9 | avec la bibliothèque TrustedIntents. 10 | 11 | Icône 12 | Paramètres 13 | Aucune application trouvée 14 | Détails 15 | VirusTotal 16 | Nom de paquet 17 | Empreinte numérique de l\'APK 18 | Certificat de signature 19 | Ouvrir dans le navigateur 20 | Partager 21 | Partager l\'URL en utilisant : 22 | Enregistrer … 23 | Enregistrer le certificat avec : 24 | Générer un NIP 25 | Nom de paquet : 26 | Chemin de l\'APK : 27 | Chemin public de l\'APK : 28 | Répertoire de données : 29 | Type de clé : 30 | Type de signature : 31 | Version ciblée du SDK : 32 | Version : 33 | Crée : 34 | Expire : 35 | Objet : 36 | Émetteur : 37 | No de série : 38 | 39 | La création de l\'empreinte du certificat de signature est impossible 40 | ! 41 | 42 | Aucune entrée d\'appli trouvée ! 43 | -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey は、お使いのデバイスにインストールされている APK 5 | の情報を取得するユーティリティです。お使いのデバイスにインストールされたすべてのアプリのリストをはじめ、ワンタッチで APK シグネチャを表示したり、virustotal.com と 6 | androidobservatory.org へのリンクを提供して、簡単に APK のプロファイルにアクセスすることができます。また、署名証明書のエクスポート、TrustedIntents ライブラリで使用する 7 | ApkSignaturePin ピンファイルの生成ができます。 8 | 9 | アイコン 10 | 設定 11 | アプリケーションが見つかりません 12 | 詳細 13 | VirusTotal 14 | パッケージ名 15 | APK ハッシュ 16 | 署名証明書 17 | ブラウザで開く 18 | 共有 19 | 次で URL を共有: 20 | 保存… 21 | 次で証明書を保存: 22 | PIN を生成 23 | パッケージ名: 24 | APK パス: 25 | 公開 APK パス: 26 | データ ディレクトリー: 27 | 鍵種類: 28 | 署名種類: 29 | ターゲット SDK バージョン: 30 | バージョン: 31 | 作成: 32 | 期限: 33 | 主体: 34 | 発行: 35 | シリアル: 36 | 37 | 署名証明書のフィンガープリントを作ることはできません! 38 | アプリのエントリーが見つかりません! 39 | 40 | -------------------------------------------------------------------------------- /app/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey은 장치에 설치된 APK에 대한 정보를 얻기위한 유틸리티입니다. 시작하게되면 장치에 설치한 모든 앱 목록을 보여주고, 한번의 터치로 5 | APK 서명을 보여주고, APK의 프로파일에 쉽게 접근하여 virustotal.com 및 androidobservatory.org에 대한 링크를 제공합니다. 서명 인증서를 내보내고 6 | TrustedIntents 라이브러리를 사용하여 ApkSignaturePin 핀 파일을 생성할 수 있습니다. 7 | 8 | 아이콘 9 | 설정 10 | 어플리케이션을 찾을 수 없음 11 | 바이러스 토탈 12 | 패키지 이름 13 | APK 해쉬 14 | 서명 인증서 15 | 브라우저 열기 16 | 공유 17 | 사용한 URL 공유: 18 | 저장… 19 | 사용한 인증서 저장: 20 | 핀 생성 21 | 버전: 22 | 23 | 24 | -------------------------------------------------------------------------------- /app/src/main/res/values-nb/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey er et verktøy for innhenting av informasjon om APK-er installert på din enhet. I førstningen en liste over installerte program, hvis APK-signatur er ett trykk unna. Dernest lenker til virustotal.com og androidobservatory.org for profilering av valgt APK. Programmet lar deg også eksportere signeringssertifikatet og generere ApkSignaturePin pin-kodefiler for bruk med TrustedIntents-biblioteket. 5 | ikon 6 | Innstillinger 7 | Fant ingen programmer 8 | Virusantall 9 | Pakkenavn 10 | APK-sjekksum 11 | Signerer sertifikat 12 | Åpne i nettleser 13 | Del 14 | Del nettadresse ved bruk av: 15 | Lagre… 16 | Lagre sertifikat ved bruk av: 17 | Opprett pinkode 18 | Nøkkeltype: 19 | Type signatur: 20 | Versjon: 21 | Opprettet: 22 | Utløper: 23 | Emne: 24 | Utsteder: 25 | Serienummer: 26 | 27 | Kan ikke opprette fingeravtrykk av signeringssertifikatet! 28 | Detaljer 29 | Pakkenavn: 30 | APK-sti: 31 | Offentlig APK-sti: 32 | Datamappe: 33 | Mål for SDK-versjon: 34 | Fant ingen programoppføring. 35 | -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey to narzędzie do zbierania informacji o plikach APK które są zainstalowane 5 | na Twoim urządzeniu. Wystarczy jedno kliknięcie w APK na liście aplikacji aby wyświetlić podpis oraz link do 6 | virustotal.com i androidobservatory.org aby mieć łatwy dostęp do profili danego pliku APK. Aplikacja również 7 | pozwoli na export certyfikatu oraz generowanie pinów ApkSignaturePin dla użytku z biblioteką TrustedIntents. 8 | 9 | ikona 10 | Ustawienia 11 | Nie znaleziono aplikacji 12 | Szczegóły 13 | VirusTotal 14 | Nazwa Pakietu 15 | APK Hash 16 | Podpisywanie Certyfikatu 17 | Otwórz w Przeglądarce 18 | Udostępnij 19 | Udostępnij URL używając: 20 | Zapisz… 21 | Zapisz certyfikat używając: 22 | Generuj Pin 23 | Nazwa Pakietu: 24 | Ścieżka APK: 25 | Publiczna Ścieżka APK: 26 | Folder Danych: 27 | Typ Klucza: 28 | Typ Podpisu: 29 | Docelowa Wersja SDK 30 | Wersja: 31 | Utworzono: 32 | Wygasa: 33 | Temat: 34 | Emitent: 35 | Numer Seryjny: 36 | 37 | Nie można utworzyć fingerprint dla podpisywanego certyfikatu! 38 | 39 | Brak wpisów o aplikacji! 40 | 41 | -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | ícone 5 | Configurações 6 | Nenhum aplicativo encontrado 7 | Detalhes 8 | VirusTotal 9 | Nome do pacote 10 | Hash da APK 11 | Certificado de assinatura 12 | Abrir no navegador 13 | Compartilhar 14 | Compartilhar URL usando: 15 | Salvar… 16 | Salvar certificado usando: 17 | Gerar PIN 18 | Nome do pacote: 19 | Caminho do APK: 20 | Caminho do APK público: 21 | Diretoria dos dados: 22 | Tipo de chave: 23 | Tipo de assinatura: 24 | Versão SDK alvo: 25 | Versão: 26 | Criado: 27 | Expira: 28 | Assunto: 29 | Emissor: 30 | Nº de série: 31 | Não foi encontrada nenhuma entrada de app! 32 | -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey é um utilitário para obter informação sobre as APKs que estão instaladas no seu dispositivo. Começando com uma lista de todas as apps que estão instaladas no seu dispositivo. Esta irá mostrar-lhe a assinatura APK com um único toque, e proporciona hiperligações para virustotal.com e androidobservatory.org para aceder facilmente aos perfis dessa APK. Esta também irá deixá-lo exportar o certificado de assinatura e gerar os ficheiros de código PIN ApkSignaturePin para usar com a biblioteca TrustedIntents. 5 | ícone 6 | Configurações 7 | Não foram encontradas aplicações 8 | Detalhes 9 | VirusTotal 10 | Nome do pacote 11 | Hash do APK 12 | Certificado de assinatura 13 | Abrir no navegador 14 | Partilhar 15 | Partilhar URL utilizando: 16 | Guardar… 17 | Guardar certificado utilizando: 18 | Gerar PIN 19 | Nome do pacote: 20 | Caminho do APK: 21 | Caminho do APK público: 22 | Diretório de dados: 23 | Tipo de chave: 24 | Tipo de assinatura: 25 | Versão SDK de alvo: 26 | Versão: 27 | Criado: 28 | Expira: 29 | Assunto: 30 | Emissor: 31 | Nº de série: 32 | 33 | Não foi possível criar a assinatura digital do certificado de assinatura! 34 | Não foi encontrada nenhuma entrada de app! 35 | -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey é um utilitário para obter informação sobre as APKs que estão instaladas no seu dispositivo. Começando com uma lista de todas as apps que estão instaladas no seu dispositivo. Esta irá mostrar-lhe a assinatura APK com um único toque, e proporciona hiperligações para virustotal.com e androidobservatory.org para aceder facilmente aos perfis dessa APK. Esta também irá deixá-lo exportar o certificado de assinatura e gerar os ficheiros de código PIN ApkSignaturePin para usar com a biblioteca TrustedIntents. 5 | ícone 6 | Configurações 7 | Não foram encontradas aplicações 8 | Detalhes 9 | VirusTotal 10 | Nome do pacote 11 | Hash do APK 12 | Certificado de assinatura 13 | Abrir no navegador 14 | Partilhar 15 | Partilhar URL utilizando: 16 | Guardar… 17 | Guardar certificado utilizando: 18 | Gerar PIN 19 | Nome do pacote: 20 | Caminho do APK: 21 | Caminho do APK público: 22 | Diretório de dados: 23 | Tipo de chave: 24 | Tipo de assinatura: 25 | Versão SDK de alvo: 26 | Versão: 27 | Criado: 28 | Expira: 29 | Assunto: 30 | Emissor: 31 | Nº de série: 32 | Não foi possível criar a assinatura digital do certificado de assinatura! 33 | Não foi encontrada nenhuma entrada de app! 34 | -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey это программа для получения информации относительно APK которые установлены 5 | на Вашем устройстве. Начиная со списка всех приложений установленых на Вашем устройстве она определит подписи 6 | APK по одному касанию и укажет ссылки на virustotal.com и androidabservatory.org для удобного доступа к 7 | профилям этих APK. Она так же поможет отправить номера сертификатов и создаст файлы номеров ApkSignaturePin 8 | для использование с библиотекой TrustedIntents. 9 | 10 | Ярлык 11 | Настройки 12 | Не обнаружено программ. 13 | VirusTotal 14 | Наименование пакета программ 15 | Хэш APK 16 | Код сертификата 17 | Открыть в браузере. 18 | Поделиться 19 | Поделиться веб-ссылкой: 20 | Сохранить… 21 | Сохранить сертификат используя: 22 | Создание номера 23 | Наименование пакета 24 | Расположение APK: 25 | Директория данных: 26 | Тип ключа: 27 | Тип подписи: 28 | Версия: 29 | Создан: 30 | Срок истекает: 31 | Объект: 32 | Источник: 33 | Серийный номер: 34 | 35 | Нет возможности получить отпечаток пальца или сертификат подписи. 36 | 37 | 38 | -------------------------------------------------------------------------------- /app/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey je orodje za pridobivanje informacij o APK paketih, ki so nameščeni na vaši 5 | napravi. Na začetnem zaslonu je prikazan seznam vseh, z dotikom posameznega pa se izpišejo: njegove zgoščene 6 | vrednosti, podatki o podpisu in povezavi do informacij na virustotal.com ter androidobservatory.org. Poleg 7 | tega omogoča še izvoz podpisnih potrdil in izdelavo ApkSignaturePin PIN datotek za uporabo s TrustedIntents 8 | knjižnico. 9 | 10 | ikona 11 | Nastavitve 12 | Ni bilo najdenih aplikacij 13 | VirusTotal 14 | Ime paketa 15 | Zgoščena vrednost APK 16 | Podpisno potrdilo 17 | Odpri v brskalniku 18 | Deli 19 | Deli URL z uporabo: 20 | Shrani … 21 | Shrani potrdilo z uporabo: 22 | Ustvari PIN 23 | Vrsta ključa: 24 | Vrsta podpisa: 25 | Različica: 26 | Ustvarjeno: 27 | Poteče: 28 | Naslov: 29 | Izdajatelj: 30 | Serijska št.: 31 | 32 | Prstni odtis podpisnega potrdila ne more biti ustvarjen! 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey telefonunuzda yüklü olan APK\'lar hakkında bilgi sahibi olmanıza yarayan 5 | bir araçtır. Telefonunuzda yüklü olan tüm uygulamaları içeren bir liste ile açılır, size tek tıklamayla APK 6 | imzasını gösterir bu APK\'nun profillerine ulaşabilmeniz için virustotal.com ve androidobservatory.org 7 | adreslerine bağlantılar sunar. Ayrıca TrustedIntents kütüphanesinde kullanabilmeniz için imzalama 8 | sertifikalarını dışa aktararak ApkSignaturePin pin dosyaları oluşturmanıza olanak sağlar. 9 | 10 | simge 11 | Ayarlar 12 | Hiç uygulama bulunamadı 13 | Ayrıntılar 14 | VirusTotal 15 | Paket İsmi 16 | APK Hash 17 | İmza Sertifikası 18 | Tarayıcıda aç 19 | Paylaş 20 | Bunu kullanarak URL paylaş: 21 | Kaydet… 22 | Bunu kullanarak sertifikayı kaydet: 23 | Pin Oluştur 24 | Paket İsmi: 25 | APK Yolu: 26 | Açık APK Yolu: 27 | Veri Dizini: 28 | Anahtar Tipi: 29 | İmza Tipi: 30 | Hedeflenen SDK Sürümü: 31 | Sürüm: 32 | Oluşturma: 33 | Son Kullanma: 34 | Konu: 35 | Gönderen: 36 | Seri Numarası: 37 | 38 | İmzalama sertifikası için parmak izi oluşturulamıyor! 39 | Uygulama girdisi bulunamadı! 40 | -------------------------------------------------------------------------------- /app/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Checkey 4 | Checkey 是一个获得已安装 APK 相关信息的实用工具。它从您的设备上已安装的所有应用开始,一键触摸即可显示 APK 的指纹,并且提供到达 5 | virustotal.com 和 androidobservatory.org 的快捷链接,让您方便地了解特定 APK 的档案。它还可以让您导出签名证书和生成 ApkSignaturePin Pin 文件供 6 | TrustedIntents 库使用。 7 | 8 | 图标 9 | 设置 10 | 未找到任何应用程序 11 | 详细信息 12 | VirusTotal 13 | 包名称 14 | APK 哈希值 15 | 签名证书 16 | 在浏览器中打开 17 | 分享 18 | 分享网址使用: 19 | 保存… 20 | 保存证书使用: 21 | 生成 PIN 22 | 包名称 23 | APK 路径: 24 | 公用 APK 路径: 25 | 数据目录: 26 | 密钥类型: 27 | 签名类型: 28 | 目标 SDK 版本: 29 | 版本: 30 | 创建时间: 31 | 过期时间: 32 | 主题: 33 | 签发者: 34 | 序列号: 35 | 36 | 无法取得签名证书的指纹! 37 | 没有找到应用的记录! 38 | 39 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Checkey 5 | Checkey is a utility for getting information about the APKs that are installed on 6 | your device. Starting with a list of all of the apps that you have installed on your device, it will show you 7 | the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to 8 | easily access the profiles of that APK. It will also let you export the signing certificate and generate 9 | ApkSignaturePin pin files for use with the TrustedIntents library. 10 | 11 | icon 12 | Settings 13 | No applications found 14 | Details 15 | VirusTotal 16 | Package Name 17 | APK Hash 18 | Signing Certificate 19 | Open in Browser 20 | Share 21 | Share URL using: 22 | Save… 23 | Save certificate using: 24 | Generate Pin 25 | Package Name: 26 | APK Path: 27 | Public APK Path: 28 | Data Directory: 29 | Key Type: 30 | Signature Type: 31 | Target SDK Version: 32 | Version: 33 | Created: 34 | Expires: 35 | Subject: 36 | Issuer: 37 | Serial: 38 | 39 | Cannot make fingerprint of signing certificate! 40 | No app entry found! 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | jcenter() 4 | } 5 | dependencies { 6 | // 2.2.2 is the version that is included in Debian/stretch 7 | classpath 'com.android.tools.build:gradle:2.2.2' 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- 1 | title: Checkey 2 | theme: fastlane-hugo-theme 3 | baseURL: http://localhost:1313 4 | 5 | contentDir: metadata 6 | 7 | staticDir: 8 | - app/src/main/res 9 | 10 | blackfriday: 11 | extensions: 12 | - hardLineBreak 13 | 14 | params: 15 | fastlaneDir: metadata 16 | googleplay: info.guardianproject.checkey 17 | fdroid: info.guardianproject.checkey 18 | github: guardianproject/checkey 19 | gitlab: guardianproject/checkey 20 | header_heading_color: "#ffa" 21 | section_headings_color: "#777" 22 | 23 | defaultContentLanguage: en 24 | defaultContentLanguageInSubdir: true 25 | languages: 26 | az: 27 | languageCode: az 28 | el: 29 | languageCode: el 30 | en: 31 | languageCode: en-US 32 | es: 33 | languageCode: es 34 | fi: 35 | languageCode: fi 36 | ja: 37 | languageCode: ja 38 | ko: 39 | languageCode: ko 40 | nb: 41 | languageCode: nb 42 | "no": 43 | languageCode: "no" 44 | pt: 45 | languageCode: pt-PT 46 | pt-BR: 47 | languageCode: pt-PT 48 | ru: 49 | languageCode: ru 50 | sl: 51 | languageCode: sl 52 | tr: 53 | languageCode: tr 54 | zh-CN: 55 | languageCode: zh-CN 56 | -------------------------------------------------------------------------------- /description/az.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | Checkey: tətbiqetmələr haqda 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | və alətinizə yüklənən alətlərin APK məlumatlarını əldə etmək üçündür 15 | This is limited by Google to 80 characters 16 | 17 | 18 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 19 | Checkey alətinizə yüklədiyiniz tətbiqetmələrinin APK-sı haqda məlumatları üzə çıxarmaq üçündür. Alətinizdəki tətbiqetmələrinin siyahısına baxmaqdan başlayaraq, bir toxunuşla APK imzalarını göstərəcək və virustotal.com və androidobservatory.org ilə o APK-lərin profillərini izləmək imkanı verəcək. O, həm də Trustedİntents kitabxanası vasitəsilə imzalanmış sertifikatları ixrac etmək və ApkSignaturePin pin fayllar yaratmağa imkan verəcək. 20 | 21 | 22 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 23 | ★ SİZİN DİLİNİZDƏ DANIŞIRIQ: bu dilləri bilən dostlar üçün əlçatımlıdır: 24 | 25 | 26 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 27 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 28 | Do not translate the names of the languages, leave them just like this. 29 | 30 | 31 | Don’t see your language? Join us and help translate the app: 32 | Öz dilinizi tapmadınız? Bizə qoşul və tətbiqetməni tərcümə et: 33 | 34 | 35 | https://www.transifex.com/projects/p/checkey 36 | https://www.transifex.com/projects/p/checkey 37 | Do not translate this. 38 | 39 | 40 | ***Learn More*** 41 | ***Ətraflı*** 42 | 43 | 44 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 45 | ★ HAQQIMIZDA: Guardian Project təhlükəsiz mobil tətbiqetmələr və açıq kodların yaxşı gələcək üçün yaradan proqramçılar qrupudur 46 | 47 | 48 | ★ OUR WEBSITE: https://GuardianProject.info 49 | ★ SAYTIMIZ: https://GuardianProject.info 50 | 51 | 52 | ★ ON TWITTER: https://twitter.com/guardianproject 53 | ★ TWITTER-də: https://twitter.com/guardianproject 54 | 55 | 56 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 57 | ★ PULSUZ PROQRAM: Checkey Pulsuz proqramdır. Siz mənbə kodumuza baxa bilər və ya Checkey-i daha yaxşı etmək üçün kömək edə bilərsiniz: 58 | 59 | 60 | https://github.com/guardianproject/checkey 61 | https://github.com/guardianproject/checkey 62 | Do not translate this. 63 | 64 | 65 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 66 | ★ BİZƏ YAZIN: İstədiyiniz imkanı tapa bilmədiniz? Zəhlətökən xəta tapdınız? Zəhmət olmasa, bizə deyin! Sizi eşitməkdən şad olarıq. Bizə email göndərin: support@guardianproject.info və ya çat otağında bizi tapın https://guardianproject.info/contact 67 | 68 | 69 |
70 |
-------------------------------------------------------------------------------- /description/de.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | Checkey: Info über lokale Apps 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | genutzt um Informationen über die APKs zu bekommen auf deinem Gerät installiert 15 | This is limited by Google to 80 characters 16 | 17 | 18 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 19 | Checkey ist eine öffentliche Dienstleistung um Informationen über Anwendungen die auf deinem Gerät installiert sind, zu bekommen. Beginne mit einer Liste mit allen Apps die du auf deinem Gerät installiert hast, es zeigt sich dir die Applikations Signatur mit einer einfachen Berührung und bietet Links zu virustotal.com und androidobservatery,org um einfachen Zugriff auf die Profile der Applikation zu bekommen. Es erlaubt dir außerdem das signierte Zertifikat zu exportieren und einen Applikations Signatur Pin zu erzeugen für die Verwendung mit der TrustedIntends Bücherei. 20 | 21 | 22 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 23 | Wir s 24 | 25 | 26 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 27 | Do not translate the names of the languages, leave them just like this. 28 | 29 | 30 | Don’t see your language? Join us and help translate the app: 31 | Du siehst deine Sprache nicht? Schließe dich uns an und übersetze die App: 32 | 33 | 34 | https://www.transifex.com/projects/p/checkey 35 | https://www.transifex.com/projects/p/checkey 36 | Do not translate this. 37 | 38 | 39 | ***Learn More*** 40 | ***Erfahren Sie mehr*** 41 | 42 | 43 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 44 | 45 | 46 | ★ OUR WEBSITE: https://GuardianProject.info 47 | ★ UNSERE WEBSEITE: https://GuardianProject.info 48 | 49 | 50 | ★ ON TWITTER: https://twitter.com/guardianproject 51 | ★ AUF TWITTER: https://twitter.com/guardianproject 52 | 53 | 54 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 55 | 56 | 57 | https://github.com/guardianproject/checkey 58 | https://github.com/guardianproject/checkey 59 | Do not translate this. 60 | 61 | 62 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 63 | 64 | 65 |
66 |
-------------------------------------------------------------------------------- /description/description-to-metadata: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import glob 4 | import inspect 5 | import os 6 | #import xml.dom.minidom 7 | import xml.etree.ElementTree 8 | 9 | project_dirname = os.path.realpath( 10 | os.path.join(os.path.dirname(inspect.getfile(inspect.currentframe())), '..')) 11 | 12 | for f in glob.glob(os.path.join(project_dirname, 'description', '*.xlf')): 13 | if f == 'source.xlf': 14 | locale = 'en-US' 15 | else: 16 | locale, _ = os.path.splitext(os.path.basename(f)) 17 | localedir = os.path.join(project_dirname, 'metadata', locale) 18 | os.makedirs(localedir, exist_ok=True) 19 | root = xml.etree.ElementTree.parse(f) 20 | full_description = "" 21 | for element in root.iter('trans-unit'): 22 | name = element.attrib['id'] 23 | target = element.find('target') 24 | if target is None: 25 | continue 26 | if name == 'title': 27 | path = os.path.join(localedir, 'title.txt') 28 | with open(path, 'w', encoding='utf-8') as fp: 29 | fp.write(target.text) 30 | elif name == 'shortdescription': 31 | path = os.path.join(localedir, 'short_description.txt') 32 | with open(path, 'w', encoding='utf-8') as fp: 33 | fp.write(target.text) 34 | else: 35 | if target.text.startswith('***'): 36 | full_description += '\n' 37 | full_description += target.text + '\n' 38 | if full_description: 39 | path = os.path.join(localedir, 'full_description.txt') 40 | with open(path, 'w', encoding='utf-8') as fp: 41 | fp.write(full_description) 42 | -------------------------------------------------------------------------------- /description/el.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | Checkey: πληροφορίες εφαρμογών 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | βοηθητικό πρόγραμμα για τη λήψη πληροφοριών σχετικά με τα εγκατεστημένα APK σας 15 | This is limited by Google to 80 characters 16 | 17 | 18 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 19 | Το Checkey είναι ένα βοηθητικό πρόγραμμα για τη λήψη πληροφοριών σχετικά με τα APK που είναι εγκατεστημένα στη συσκευή σας. Ξεκινώντας με μια λίστα όλων των εφαρμογών που έχετε εγκαταστήσει στη συσκευή σας, θα σας δείξει την υπογραφή του APK με ένα μόνο άγγιγμα και θα παρέχει συνδέσμους στο virustotal.com και το androidobservatory.org για εύκολη πρόσβαση στα προφίλ αυτού του APK. Θα σας επιτρέψει επίσης να εξάγετε το πιστοποιητικό υπογραφής και να δημιουργήσετε αρχεία pin ApkSignaturePin για χρήση με τη βιβλιοθήκη TrustedIntents. 20 | 21 | 22 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 23 | ★ MIΛAME TH ΓΛΩΣΣΑ σας: Το Checkey είναι διαθέσιμο για φίλους που μιλούν: 24 | 25 | 26 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 27 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 28 | Do not translate the names of the languages, leave them just like this. 29 | 30 | 31 | Don’t see your language? Join us and help translate the app: 32 | Δεν βλέπετε τη γλώσσα σας; Γίνετε μέλος και βοηθήστε στη μετάφραση της εφαρμογής: 33 | 34 | 35 | https://www.transifex.com/projects/p/checkey 36 | https://www.transifex.com/projects/p/checkey 37 | Do not translate this. 38 | 39 | 40 | ***Learn More*** 41 | ***Μάθετε Περισσότερα*** 42 | 43 | 44 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 45 | ★ ΣΧΕΤΙΚΑ ΜΕ ΕΜΑΣ: Το Guardian Project είναι μια ομάδα δημιουργών που κάνουν ασφαλείς εφαρμογές για κινητά και open-source κώδικα για ένα καλύτερο αύριο 46 | 47 | 48 | ★ OUR WEBSITE: https://GuardianProject.info 49 | ★ Η ΙΣΤΟΣΕΛΙΔΑ ΜΑΣ: https://GuardianProject.info 50 | 51 | 52 | ★ ON TWITTER: https://twitter.com/guardianproject 53 | ★ ΣΤΟ TWITTER: https://twitter.com/guardianproject 54 | 55 | 56 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 57 | ★ ΕΛΕΥΘΕΡΟ ΛΟΓΙΣΜΙΚΟ: Το Checkey είναι ελεύθερο λογισμικό. Μπορείτε να ρίξτε μια ματιά στον πηγαίο κώδικα μας ή γίνετε μέλος της κοινότητάς μας για να κάνουμε το Checkey ακόμα καλύτερο: 58 | 59 | 60 | https://github.com/guardianproject/checkey 61 | https://github.com/guardianproject/checkey 62 | Do not translate this. 63 | 64 | 65 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 66 | ★ ΣΤΕΙΛΤΕ ΜΑΣ ΜΗΝΥΜΑ: Μας λείπει το αγαπημένο σας χαρακτηριστικό; Βρήκατε ένα ενοχλητικό σφάλμα; Πείτε μας! Θα θέλαμε να σας ακούσουμε. Στείλτε μας ένα μήνυμα στο: support@guardianproject.info ή βρείτε μας στο chat room https://guardianproject.info/contact 67 | 68 | 69 |
70 |
-------------------------------------------------------------------------------- /description/es.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | This is limited by Google to 30 characters 10 | 11 | 12 | utility for getting information about the APKs that are installed on your device 13 | This is limited by Google to 80 characters 14 | 15 | 16 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 17 | 18 | 19 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 20 | 21 | 22 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 23 | Do not translate the names of the languages, leave them just like this. 24 | 25 | 26 | Don’t see your language? Join us and help translate the app: 27 | 28 | 29 | https://www.transifex.com/projects/p/checkey 30 | Do not translate this. 31 | 32 | 33 | ***Learn More*** 34 | 35 | 36 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 37 | 38 | 39 | ★ OUR WEBSITE: https://GuardianProject.info 40 | 41 | 42 | ★ ON TWITTER: https://twitter.com/guardianproject 43 | 44 | 45 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 46 | 47 | 48 | https://github.com/guardianproject/checkey 49 | Do not translate this. 50 | 51 | 52 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 53 | 54 | 55 |
56 |
-------------------------------------------------------------------------------- /description/fi.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | Checkey: tietoa sovelluksista 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | ohjelma tietojen hakemiseksi laitteeseesi asennetuista APK-pakkaustiedostoista 15 | This is limited by Google to 80 characters 16 | 17 | 18 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 19 | Checkey on apuohjelma, jolla saa tietoja laiteeseen asennetuista APK-pakkaustiedostoista. Ohjelma luettelee aluksi kaikki laitteeseen asennetut sovellukset ja näyttää APK-allekirjoituksen yhdellä kosketuksella sekä tarjoaa linkit virustotal.com- ja androidobservatory.com-sivuistoille, joilta saa helposti kyseisen APK-pakkaustiedoston profiilit. Ohjelma sallii sinun myös viedä allekirjoitusvarmenteen ja tuottaa ApkSignaturePin-pin-tieodostoja käytettäväksi TrustedIntents-kirjastossa. 20 | 21 | 22 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 23 | ★ PUHUMME KIELTÄSI: Checkey on saataville ystäville, jotka puhuvat seuraavia kieliä: 24 | 25 | 26 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 27 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 28 | Do not translate the names of the languages, leave them just like this. 29 | 30 | 31 | Don’t see your language? Join us and help translate the app: 32 | Etkö näe kieltäsi? Liity meihin ja auta sovelluksen kotoistamisessa: 33 | 34 | 35 | https://www.transifex.com/projects/p/checkey 36 | https://www.transifex.com/projects/p/checkey 37 | Do not translate this. 38 | 39 | 40 | ***Learn More*** 41 | ***Opi lisää*** 42 | 43 | 44 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 45 | ★ TIETOA MEISTÄ: Guardian Project on kehittäjien ryhmä, joka tekee turvallisia mobiilisovelluksia ja avointa lähdekoodia parempaa huomista varten 46 | 47 | 48 | ★ OUR WEBSITE: https://GuardianProject.info 49 | ★ WEBBISIVUMME: https://GuardianProject.info 50 | 51 | 52 | ★ ON TWITTER: https://twitter.com/guardianproject 53 | ★ TWITTERISSÄ: https://twitter.com/guardianproject 54 | 55 | 56 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 57 | ★ ILMAINEN OHJELMA: Checkey on ilmainen ohjelma. Voit vilkaista lähdekoodia tai avustaa Checkey-ohjelman tekemiseksi vielä paremmaksi: 58 | 59 | 60 | https://github.com/guardianproject/checkey 61 | https://github.com/guardianproject/checkey 62 | Do not translate this. 63 | 64 | 65 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 66 | ★ VIESTITÄ MEILLE: Kaipaatko suosikkiominaisuuttasi? Löysitkö harmillisen ohjelmointivirheen? Kerro meille! Kuulemme sinusta mielellään. Lähetä meille sähköpostia: support@guardianproject.info tai etsi meidät juttelukanavalla https://guardianproject.info/contact 67 | 68 | 69 |
70 |
-------------------------------------------------------------------------------- /description/ja.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | Checkey: ローカルアプリの情報 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | お使いのデバイスにインストールされている APK の情報を取得するユーティリティ 15 | This is limited by Google to 80 characters 16 | 17 | 18 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 19 | Checkey は、お使いのデバイスにインストールされている APK の情報を取得するユーティリティです。お使いのデバイスにインストールされたすべてのアプリのリストをはじめ、ワンタッチで APK シグネチャを表示したり、virustotal.com と androidobservatory.org へのリンクを提供して、簡単に APK のプロファイルにアクセスすることができます。また、署名証明書のエクスポート、TrustedIntents ライブラリで使用する ApkSignaturePin ピンファイルの生成ができます。 20 | 21 | 22 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 23 | ★ あなたの言語でお使いいただけます: Checkey は次の言語を話す友だちが利用できます: 24 | 25 | 26 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 27 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 28 | Do not translate the names of the languages, leave them just like this. 29 | 30 | 31 | Don’t see your language? Join us and help translate the app: 32 | あなたの言語が見つかりませんか? 私たちに参加して、アプリの翻訳を支援してください: 33 | 34 | 35 | https://www.transifex.com/projects/p/checkey 36 | https://www.transifex.com/projects/p/checkey 37 | Do not translate this. 38 | 39 | 40 | ***Learn More*** 41 | ***さらに詳しく*** 42 | 43 | 44 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 45 | ★ 私たちについて: Guardian Project は、より良い明日のために、安全なモバイル アプリやオープン ソース コードを作る開発者のグループです 46 | 47 | 48 | ★ OUR WEBSITE: https://GuardianProject.info 49 | ★ WEBサイト: https://GuardianProject.info 50 | 51 | 52 | ★ ON TWITTER: https://twitter.com/guardianproject 53 | ★ TWITTER: https://twitter.com/guardianproject 54 | 55 | 56 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 57 | ★ フリーソフトウェア: Checkey はフリーソフトウェアです。私たちのソースコードを見たり、Checkey をさらに良くする手助けに貢献することができます: 58 | 59 | 60 | https://github.com/guardianproject/checkey 61 | https://github.com/guardianproject/checkey 62 | Do not translate this. 63 | 64 | 65 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 66 | ★ 私たちにメッセージをお送りください: あなたのお気に入りの機能が不足していませんか? 迷惑なバグを発見されましたか? ご連絡ください! 私たちはあなたのご意見をお待ちしています。私たちにメールをお送りください: support@guardianproject.info または私たちのチャットルーム https://guardianproject.info/contact から 67 | 68 | 69 |
70 |
-------------------------------------------------------------------------------- /description/ko.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | This is limited by Google to 30 characters 10 | 11 | 12 | utility for getting information about the APKs that are installed on your device 13 | This is limited by Google to 80 characters 14 | 15 | 16 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 17 | Checkey은 장치에 설치된 APK에 대한 정보를 얻기위한 유틸리티입니다. 시작하게되면 장치에 설치한 모든 앱 목록을 보여주고, 한번의 터치로 APK 서명을 보여주고, APK의 프로파일에 쉽게 접근하여 virustotal.com 및 androidobservatory.org에 대한 링크를 제공합니다. 서명 인증서를 내보내고 TrustedIntents 라이브러리를 사용하여 ApkSignaturePin 핀 파일을 생성할 수 있습니다. 18 | 19 | 20 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 21 | 22 | 23 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 24 | Do not translate the names of the languages, leave them just like this. 25 | 26 | 27 | Don’t see your language? Join us and help translate the app: 28 | 29 | 30 | https://www.transifex.com/projects/p/checkey 31 | Do not translate this. 32 | 33 | 34 | ***Learn More*** 35 | ***더 자세히 알기*** 36 | 37 | 38 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 39 | 40 | 41 | ★ OUR WEBSITE: https://GuardianProject.info 42 | ★ 우리 웹사이트: https://GuardianProject.info 43 | 44 | 45 | ★ ON TWITTER: https://twitter.com/guardianproject 46 | ★ 트위터: https://twitter.com/guardianproject 47 | 48 | 49 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 50 | 51 | 52 | https://github.com/guardianproject/checkey 53 | Do not translate this. 54 | 55 | 56 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 57 | 58 | 59 |
60 |
-------------------------------------------------------------------------------- /description/nb.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | Checkey: Info om lokale apper 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | verktøy for innhenting av informasjon om APK-ene som er installert på din enhet 15 | This is limited by Google to 80 characters 16 | 17 | 18 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 19 | Checkey er et verktøy for innhenting av informasjon om APK-er installert på din enhet. I førstningen en liste over installerte program, hvis APK-signatur er ett trykk unna. Dernest lenker til virustotal.com og androidobservatory.org for profilering av valgt APK. Programmet lar deg også eksportere signeringssertifikatet og generere ApkSignaturePin pin-kodefiler for bruk med TrustedIntents-biblioteket. 20 | 21 | 22 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 23 | ★ VI SNAKKER DITT SPRÅK: Checkeys vennegjeng omfatter: 24 | 25 | 26 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 27 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk bokmål, português (Portugal), Русский, Slovenščina, Türkçe 28 | 29 | (Tysk, Engelsk, Spansk, Finsk, Japansk, Koreansk, Norsk bokmål, Portugisisk (Portugal), Russisk, Slovensk, Tyrkisk) 30 | Do not translate the names of the languages, leave them just like this. 31 | 32 | 33 | Don’t see your language? Join us and help translate the app: 34 | Mangler ditt språk? Hjelp oss å oversette programmet: 35 | 36 | 37 | https://www.transifex.com/projects/p/checkey 38 | https://www.transifex.com/projects/p/checkey 39 | Do not translate this. 40 | 41 | 42 | ***Learn More*** 43 | ***Lær mer*** 44 | 45 | 46 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 47 | ★ OM OSS: Guardianprosjektet er en gruppe utviklere som lager sikre mobilprogrammer og friprog-kode for en bedre fremtid. 48 | 49 | 50 | ★ OUR WEBSITE: https://GuardianProject.info 51 | ★ VÅR NETTSIDE: https://GuardianProject.info 52 | 53 | 54 | ★ ON TWITTER: https://twitter.com/guardianproject 55 | ★ DESVERRE PÅ TWITTER: https://twitter.com/guardianproject 56 | 57 | 58 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 59 | ★ FRI PROGRAMVARE: Checkey er fri programvare. Du kan sjekke ut vår programkode, og bidra til den for å gjøre Checkey enda bedre: 60 | 61 | 62 | https://github.com/guardianproject/checkey 63 | https://github.com/guardianproject/checkey 64 | Do not translate this. 65 | 66 | 67 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 68 | ★ TILBAKEMELDINGER: Mangler vi din favorittfunksjonalitet? Har du funnet en irriterende feil. Fortell oss om det! Vi elsker å lytte til god kritikk. Send oss en e-post support@guardianproject.info eller finn oss i vår sludrekanal https://guardianproject.info/contact 69 | 70 | 71 |
72 |
-------------------------------------------------------------------------------- /description/pl.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | Checkey: info o aplikacjach 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | narzędzie do pozyskiwania informacji o APK które masz zainstalowane 15 | This is limited by Google to 80 characters 16 | 17 | 18 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 19 | Checkey to narzędzie do zbierania informacji o plikach APK które są zainstalowane na Twoim urządzeniu. Wystarczy jedno kliknięcie w APK na liście aplikacji aby wyświetlić podpis oraz link do virustotal.com i androidobservatory.org aby mieć łatwy dostęp do profili danego pliku APK. Aplikacja również pozwoli na export certyfikatu oraz generowanie pinów ApkSignaturePin dla użytku z biblioteką TrustedIntents. 20 | 21 | 22 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 23 | ★ MÓWIMY W TWOIM JĘZYKU: Checkey jest dostępny dla ludzi którzy mówią w tych językach: 24 | 25 | 26 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 27 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), polski (Polish), Русский, Slovenščina, Türkçe 28 | Do not translate the names of the languages, leave them just like this. 29 | 30 | 31 | Don’t see your language? Join us and help translate the app: 32 | Nie widzisz swojego języka? Dołącz do nas i pomóż tłumaczyć aplikację: 33 | 34 | 35 | https://www.transifex.com/projects/p/checkey 36 | https://www.transifex.com/projects/p/checkey 37 | Do not translate this. 38 | 39 | 40 | ***Learn More*** 41 | ***Dowiedz się więcej*** 42 | 43 | 44 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 45 | ★ O NAS: Projekt Guardian to grupa deweloperów, którzy tworzą bezpieczne aplikacje mobilne i otwartoźródłowy kod dla lepszego jutra 46 | 47 | 48 | ★ OUR WEBSITE: https://GuardianProject.info 49 | ★ NASZA STRONA: https://GuardianProject.info 50 | 51 | 52 | ★ ON TWITTER: https://twitter.com/guardianproject 53 | ★ NA TWITTERZE: https://twitter.com/guardianproject 54 | 55 | 56 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 57 | ★ WOLNE OPROGRAMOWANIE: Checkey jest wolnym oprogramowanie. Możesz zobaczyć kod źródłowy, lub wspomóc nas aby uczynić Checkey jeszcze lepszym: 58 | 59 | 60 | https://github.com/guardianproject/checkey 61 | https://github.com/guardianproject/checkey 62 | Do not translate this. 63 | 64 | 65 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 66 | ★★ NAPISZ DO NAS: Brakuje Ci czegoś? Znalazłeś uciążliwy błąd? Proszę powiedz nam o tym! Chcielibyśmy o tym wiedzieć. Wyślij nam email: support@guardianproject.info lub napisz na stronie https://guardianproject.info/contact 67 | 68 | 69 |
70 |
-------------------------------------------------------------------------------- /description/pt-rPT.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | Checkey: inform. apps locais 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | Utilitário para obter informação sobre as APKs instaladas no seu dispositivo 15 | This is limited by Google to 80 characters 16 | 17 | 18 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 19 | Checkey é um utilitário para obter informação sobre as APKs que estão instaladas no seu dispositivo. Começando com uma lista de todas as apps que estão instaladas no seu dispositivo. Esta irá mostrar-lhe a assinatura APK com um único toque, e proporciona hiperligações para virustotal.com e androidobservatory.org para aceder facilmente aos perfis dessa APK. Esta também irá deixá-lo exportar o certificado de assinatura e gerar os ficheiros código ApkSignaturePin para usar com a biblioteca TrustedIntents. 20 | 21 | 22 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 23 | ★ NÓS FALAMOS O SEU IDIOMA: Checkey está disponível para os amigos que falam:: 24 | 25 | 26 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 27 | Alemão, Coreano, Eslovaco, Espanhol, Finlandês, Inglês, Japonês, Norueguês, Português (Portugal), Russo, Turco 28 | Do not translate the names of the languages, leave them just like this. 29 | 30 | 31 | Don’t see your language? Join us and help translate the app: 32 | Não vê o seu idioma? Junte-se a nós e ajude a traduzir a app: 33 | 34 | 35 | https://www.transifex.com/projects/p/checkey 36 | https://www.transifex.com/projects/p/checkey 37 | Do not translate this. 38 | 39 | 40 | ***Learn More*** 41 | ***Saber Mais*** 42 | 43 | 44 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 45 | ★ SOBRE NÓS: Guardian Project é um grupo de responsáveis pelo desenvolvimento que cria apps móveis seguras e de código aberto para um futuro melhor. 46 | 47 | 48 | ★ OUR WEBSITE: https://GuardianProject.info 49 | ★ O NOSSO SÍTIO DA WEB: https://GuardianProject.info 50 | 51 | 52 | ★ ON TWITTER: https://twitter.com/guardianproject 53 | ★ NO TWITTER: https://twitter.com/guardianproject 54 | 55 | 56 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 57 | ★ PROGRAMA LIVRE: Checkey é um programa gratuito. Pode dar uma vista de olhos no nosso código aberto, ou contribuir para ajudar a tornar Checkey ainda melhor: 58 | 59 | 60 | https://github.com/guardianproject/checkey 61 | https://github.com/guardianproject/checkey 62 | Do not translate this. 63 | 64 | 65 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 66 | ★ ENVIE-NOS UMA MENSAGEM: Nós estamos a perder a sua função favorita? Encontrou um bug aborrecido? Por favor, diga-nos! Nós gostaríamos de o ouvir. Envie-nos uma mensagem: support@guardianproject.info ou encontre-nos na nossa sala de conversação em https://guardianproject.info/contact 67 | 68 | 69 |
70 |
-------------------------------------------------------------------------------- /description/ru.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | Checkey: имеются программы 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | Программа для сбора информации об APK КОТОРЫЕ установлены на Вашем устройстве 15 | This is limited by Google to 80 characters 16 | 17 | 18 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 19 | Checkey это программа для получения информации относительно APK которые установлены на Вашем устройстве. Начиная со списка всех приложений установленых на Вашем устройстве она определит подписи APK по одному касанию и укажет ссылки на virustotal.com и androidabservatory.org для удобного доступа к профилям этих APK. Она так же поможет отправить номера сертификатов и создаст файлы номеров ApkSignaturePin для использование с библиотекой TrustedIntents. 20 | 21 | 22 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 23 | * МЫ ГОВОРИМ НА ВАШЕМ ЯЗЫКЕ: Checkey доступна для друзей говорящих на: 24 | 25 | 26 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 27 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 28 | Do not translate the names of the languages, leave them just like this. 29 | 30 | 31 | Don’t see your language? Join us and help translate the app: 32 | Не видите вашего языка? Свяжитесь с нами и помогите перевести приложение: 33 | 34 | 35 | https://www.transifex.com/projects/p/checkey 36 | https://www.transifex.com/projects/p/checkey 37 | Do not translate this. 38 | 39 | 40 | ***Learn More*** 41 | ***Узнать больше*** 42 | 43 | 44 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 45 | * О НАС: Guardian Project это группа разработчиков делающая мобильные приложения безопаснее используя открытый исходный код для лучшего будущего. 46 | 47 | 48 | ★ OUR WEBSITE: https://GuardianProject.info 49 | ★ НАШ WEBSITE: https://GuardianProject.info 50 | 51 | 52 | ★ ON TWITTER: https://twitter.com/guardianproject 53 | ★ В TWITTER: https://twitter.com/guardianproject 54 | 55 | 56 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 57 | ★ ПРОГРАММНОЕ ОБЕСПЕЧЕНИЕ С ОТКРЫТЫМ ИСХОДНЫМ КОДОМ: Checkey является программным обеспечением с открытым исходным кодом. Вы можете проверить наш исходный код или помочь сделать Checkey ещё лучше: 58 | 59 | 60 | https://github.com/guardianproject/checkey 61 | https://github.com/guardianproject/checkey 62 | Do not translate this. 63 | 64 | 65 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 66 | ★ ДАЙТЕ НАМ ЗНАТЬ: Мы отключили необходимые Вам возможности программы? Вы обнаружили ошибку? Пожалуйста, дайте нам знать! Мы не хотели расстроить Вас. Пришлите нам сообщение на почту: support@guardianproject.info или наберите нас в чате на странице https://guardianproject.info/contact 67 | 68 | 69 |
70 |
-------------------------------------------------------------------------------- /description/sl.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | Checkey: info o aplikacijah 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | orodje za pridobivanje informacij o APK paketih, ki so nameščeni na vaši napravi 15 | This is limited by Google to 80 characters 16 | 17 | 18 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 19 | Checkey je orodje za pridobivanje informacij o APK paketih, ki so nameščeni na vaši napravi. Na začetnem zaslonu je prikazan seznam vseh, z dotikom posameznega pa se izpišejo: njegove zgoščene vrednosti, podatki o podpisu in povezavi do informacij na virustotal.com ter androidobservatory.org. Poleg tega omogoča še izvoz podpisnih potrdil in izdelavo ApkSignaturePin PIN datotek za uporabo s TrustedIntents knjižnico. 20 | 21 | 22 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 23 | ★ GOVORIMO VAŠ JEZIK: Checkey je na voljo za prijatelje, ki govorijo: 24 | 25 | 26 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 27 | Do not translate the names of the languages, leave them just like this. 28 | 29 | 30 | Don’t see your language? Join us and help translate the app: 31 | Ali vaš jezik ni na voljo? Pridružite se nam in nam pomagajte prevesti to aplikacijo: 32 | 33 | 34 | https://www.transifex.com/projects/p/checkey 35 | https://www.transifex.com/projects/p/checkey 36 | Do not translate this. 37 | 38 | 39 | ***Learn More*** 40 | ***Izvedite več*** 41 | 42 | 43 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 44 | ★ O NAS: Guardian Project smo skupina razvijalcev, ki ustvarjamo varne in odprtokodne mobilne aplikacije za boljši jutri 45 | 46 | 47 | ★ OUR WEBSITE: https://GuardianProject.info 48 | ★ SPLETNA STRAN: https://GuardianProject.info 49 | 50 | 51 | ★ ON TWITTER: https://twitter.com/guardianproject 52 | ★ NA TWITTERJU: https://twitter.com/guardianproject 53 | 54 | 55 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 56 | ★ BREZPLAČNO PROGRAMJE: Checkey je brezplačen. Lahko si tudi ogledate njegovo izvorno kodo ali pa doprinesete k njegovemu razvoju, da bi postal še boljši: 57 | 58 | 59 | https://github.com/guardianproject/checkey 60 | https://github.com/guardianproject/checkey 61 | Do not translate this. 62 | 63 | 64 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 65 | ★ OBVESTITE NAS: Ali pogrešate kakšno funkcionalnost? Ste našli hrošča? Veseli bomo vašega sporočila. Pošljite nam e-pošto na: support@guardianproject.info ali nas poiščite v naši klepetalnici na: https://guardianproject.info/contact 66 | 67 | 68 |
69 |
-------------------------------------------------------------------------------- /description/source.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 6 |
7 | 8 | 9 | Checkey: info on local apps 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | This is limited by Google to 80 characters 15 | 16 | 17 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 18 | 19 | 20 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 21 | 22 | 23 | Deutsch, English, español, فارسی, suomi, français, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe, 中文(简体) 24 | Do not translate the names of the languages, leave them just like this. 25 | 26 | 27 | Don’t see your language? Join us and help translate the app: 28 | 29 | 30 | https://www.transifex.com/projects/p/checkey 31 | Do not translate this. 32 | 33 | 34 | ***Learn More*** 35 | 36 | 37 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 38 | 39 | 40 | ★ OUR WEBSITE: https://GuardianProject.info 41 | 42 | 43 | ★ ON TWITTER: https://twitter.com/guardianproject 44 | 45 | 46 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 47 | 48 | 49 | https://github.com/guardianproject/checkey 50 | Do not translate this. 51 | 52 | 53 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 54 | 55 | 56 |
57 |
58 | -------------------------------------------------------------------------------- /description/tr.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | Checkey: yerel uyg. bilgileri 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | cihazınızda yüklü olan APKlar hakkında bilgi almaya yarayan bir araç 15 | This is limited by Google to 80 characters 16 | 17 | 18 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 19 | Checkey telefonunuzda yüklü olan APK'lar hakkında bilgi sahibi olmanıza yarayan bir araçtır. Telefonunuzda yüklü olan tüm uygulamaları içeren bir liste ile açılır, size tek tıklamayla APK imzasını gösterir bu APK'nun profillerine ulaşabilmeniz için virustotal.com ve androidobservatory.org adreslerine bağlantılar sunar. Ayrıca TrustedIntents kütüphanesinde kullanabilmeniz için imzalama sertifikalarını dışa aktararak ApkSignaturePin pin dosyaları oluşturmanıza olanak sağlar. 20 | 21 | 22 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 23 | ★ DİLİNİZİ BİLİYORUZ: Checkey artık şu dilleri bilen arkadaşlar için hazır: 24 | 25 | 26 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 27 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 28 | Do not translate the names of the languages, leave them just like this. 29 | 30 | 31 | Don’t see your language? Join us and help translate the app: 32 | Sizin diliniz yok mu? Bize katılın ve çeviri için yardım edin: 33 | 34 | 35 | https://www.transifex.com/projects/p/checkey 36 | https://www.transifex.com/projects/p/checkey 37 | Do not translate this. 38 | 39 | 40 | ***Learn More*** 41 | ***Daha Fazla*** 42 | 43 | 44 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 45 | ★ HAKKIMIZDA: Guardian Project, daha iyi bir yarın için güvenli mobil uygulamalar ve açık-kaynak kodlar yazan bir geliştirici grubudur 46 | 47 | 48 | ★ OUR WEBSITE: https://GuardianProject.info 49 | ★ WEB SAYFAMIZ: https://GuardianProject.info 50 | 51 | 52 | ★ ON TWITTER: https://twitter.com/guardianproject 53 | ★ TWITTER: https://twitter.com/guardianproject 54 | 55 | 56 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 57 | ★ ÜCRETSİZ YAZILIM: Checkey ücretsiz bir yazılımdır. Kaynak kodumuza bakabilir veya Checkey'i daha iyi yapabilmemiz için yardım edebilirsiniz: 58 | 59 | 60 | https://github.com/guardianproject/checkey 61 | https://github.com/guardianproject/checkey 62 | Do not translate this. 63 | 64 | 65 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 66 | ★ BİZE YAZIN: En sevdiğiniz özellikleri unutmuş muyuz? Sinir bozucu bir hata mı keşfettiniz? Lütfen bize bildirin! Bize support@guardianproject.info adresinden bir e-posta gönderebilirsiniz veya bizi sohbet odamızda bulabilirsiniz: https://guardianproject.info/contact 67 | 68 | 69 |
70 |
-------------------------------------------------------------------------------- /description/zh-rCN.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. 5 |
6 | 7 | 8 | Checkey: info on local apps 9 | Checkey:本地应用的信息 10 | This is limited by Google to 30 characters 11 | 12 | 13 | utility for getting information about the APKs that are installed on your device 14 | 一个实用工具,获取已安装在您的设备上的应用的有关信息 15 | This is limited by Google to 80 characters 16 | 17 | 18 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 19 | Checkey 是一个获得已安装 APK 相关信息的实用工具。它从您的设备上已安装的所有应用开始,一键触摸即可显示 APK 的指纹,并且提供到达 virustotal.com 和 androidobservatory.org 的快捷链接,让您方便地了解特定 APK 的档案。它还可以让您导出签名证书和生成 ApkSignaturePin Pin 文件供 TrustedIntents 库使用。 20 | 21 | 22 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: 23 | ★ Checkey 支持下列语言: 24 | 25 | 26 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 27 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 28 | Do not translate the names of the languages, leave them just like this. 29 | 30 | 31 | Don’t see your language? Join us and help translate the app: 32 | 没看到您的语言?帮忙翻译本应用吧: 33 | 34 | 35 | https://www.transifex.com/projects/p/checkey 36 | https://www.transifex.com/projects/p/checkey 37 | Do not translate this. 38 | 39 | 40 | ***Learn More*** 41 | ***详细了解*** 42 | 43 | 44 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 45 | ★ 关于我们:Guardian 项目是一个开发者小组,致力于创造移动应用和开源代码的美好明天 46 | 47 | 48 | ★ OUR WEBSITE: https://GuardianProject.info 49 | ★ 我们的网站: https://GuardianProject.info 50 | 51 | 52 | ★ ON TWITTER: https://twitter.com/guardianproject 53 | ★ 我们的 Twitter: https://twitter.com/guardianproject 54 | 55 | 56 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: 57 | ★ 自由软件:Checkey 是自由软件。您可以查看我们的源代码,还可以帮助我们让 Checkey 变得更好: 58 | 59 | 60 | https://github.com/guardianproject/checkey 61 | https://github.com/guardianproject/checkey 62 | Do not translate this. 63 | 64 | 65 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 66 | ★ 致用户:我们还缺少你喜欢的功能?发现了一个 bug?请告诉我们!我们乐于听取您的意见。请发送电子邮件至: support@guardianproject.info 或者加入我们的聊天室 https://guardianproject.info/contact 67 | 68 | 69 |
70 |
-------------------------------------------------------------------------------- /make-release-build: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # bash is required because we need bash's printf to guarantee a cross-platform 3 | # timestamp format. 4 | 5 | set -e 6 | set -x 7 | 8 | # make sure we're on a signed tag that matches the version name 9 | versionName=`sed -n 's,.*versionName="\([^"]*\)".*,\1,p' AndroidManifest.xml` 10 | describe=`git describe` 11 | if [ $versionName != $describe ]; then 12 | echo "WARNING: building $describe, which is not the latest release ($versionName)" 13 | else 14 | # make a clearer warning above by putting this here 15 | set +x 16 | echo "" 17 | echo "" 18 | echo "Checking git tag signature for release build:" 19 | git tag -v $versionName 20 | echo "" 21 | echo "" 22 | set -x 23 | fi 24 | 25 | 26 | if [ -z $ANDROID_HOME ]; then 27 | if [ -e ~/.android/bashrc ]; then 28 | . ~/.android/bashrc 29 | else 30 | echo "ANDROID_HOME must be set!" 31 | exit 32 | fi 33 | fi 34 | 35 | projectroot=`pwd` 36 | projectname=`sed -n 's,.*name="app_name">\(.*\)<.*,\1,p' res/values/strings.xml` 37 | 38 | # standardize timezone to reduce build differences 39 | export TZ=UTC 40 | # run the clock at 5% speed, ant requires a moving clock 41 | TIMESTAMP=`printf '@%(%Y-%m-%d %H:%M:%S)T x0.05' \ 42 | $(git log -n1 --format=format:%at)` 43 | 44 | git reset --hard 45 | git clean -fdx 46 | git submodule foreach --recursive git reset --hard 47 | git submodule foreach --recursive git clean -fdx 48 | git submodule sync --recursive 49 | git submodule foreach --recursive git submodule sync 50 | git submodule update --init --recursive 51 | 52 | 53 | if [ -e ~/.android/ant.properties ]; then 54 | cp ~/.android/ant.properties $projectroot/ 55 | else 56 | echo "skipping release ant.properties" 57 | fi 58 | 59 | ./setup-ant 60 | faketime -f "$TIMESTAMP" ant release 61 | 62 | apk=$projectroot/bin/$projectname-$versionName-unsigned.apk 63 | if which gpg > /dev/null; then 64 | if [ -z "`gpg --list-secret-keys`" ]; then 65 | echo "No GPG secret keys found, not signing APK" 66 | else 67 | gpg --detach-sign $apk 68 | fi 69 | else 70 | echo "gpg not found, not signing APK" 71 | fi 72 | -------------------------------------------------------------------------------- /metadata/af/short_description.txt: -------------------------------------------------------------------------------- 1 | nut om inligting oor die APKs wat op jou toestel geïnstalleer is 2 | -------------------------------------------------------------------------------- /metadata/ar/short_description.txt: -------------------------------------------------------------------------------- 1 | أداة للحصول على معلومات حول ملفات APK التي تم تثبيتها على جهازك 2 | -------------------------------------------------------------------------------- /metadata/az/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey alətinizə yüklədiyiniz tətbiqetmələrinin APK-sı haqda məlumatları üzə çıxarmaq üçündür. Alətinizdəki tətbiqetmələrinin siyahısına baxmaqdan başlayaraq, bir toxunuşla APK imzalarını göstərəcək və virustotal.com və androidobservatory.org ilə o APK-lərin profillərini izləmək imkanı verəcək. O, həm də Trustedİntents kitabxanası vasitəsilə imzalanmış sertifikatları ixrac etmək və ApkSignaturePin pin fayllar yaratmağa imkan verəcək. 2 | ★ SİZİN DİLİNİZDƏ DANIŞIRIQ: bu dilləri bilən dostlar üçün əlçatımlıdır: 3 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 4 | Öz dilinizi tapmadınız? Bizə qoşul və tətbiqetməni tərcümə et: 5 | https://hosted.weblate.org/projects/guardianproject/checkey/ 6 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 7 | 8 | ***Ətraflı*** 9 | ★ HAQQIMIZDA: Guardian Project təhlükəsiz mobil tətbiqetmələr və açıq kodların yaxşı gələcək üçün yaradan proqramçılar qrupudur 10 | ★ SAYTIMIZ: https://GuardianProject.info 11 | ★ TWITTER-də: https://twitter.com/guardianproject 12 | ★ PULSUZ PROQRAM: Checkey Pulsuz proqramdır. Siz mənbə kodumuza baxa bilər və ya Checkey-i daha yaxşı etmək üçün kömək edə bilərsiniz: 13 | https://gitlab.com/guardianproject/checkey 14 | ★ BİZƏ YAZIN: İstədiyiniz imkanı tapa bilmədiniz? Zəhlətökən xəta tapdınız? Zəhmət olmasa, bizə deyin! Sizi eşitməkdən şad olarıq. Bizə email göndərin: support@guardianproject.info və ya çat otağında bizi tapın https://guardianproject.info/contact 15 | -------------------------------------------------------------------------------- /metadata/az/short_description.txt: -------------------------------------------------------------------------------- 1 | və alətinizə yüklənən alətlərin APK məlumatlarını əldə etmək üçündür 2 | -------------------------------------------------------------------------------- /metadata/az/title.txt: -------------------------------------------------------------------------------- 1 | Checkey: tətbiqetmələr haqda 2 | -------------------------------------------------------------------------------- /metadata/bg/short_description.txt: -------------------------------------------------------------------------------- 1 | помощна програма за осигуряване на информация за APK файлове, които са инсталирани на вашето устройство 2 | -------------------------------------------------------------------------------- /metadata/ca/short_description.txt: -------------------------------------------------------------------------------- 1 | utilitat per obtenir informació sobre els arxius APK que estan instal·lades al dispositiu 2 | -------------------------------------------------------------------------------- /metadata/cs/short_description.txt: -------------------------------------------------------------------------------- 1 | nástroj pro získávání informací o APKs, které jsou nainstalovány na vašem zařízení 2 | -------------------------------------------------------------------------------- /metadata/da/short_description.txt: -------------------------------------------------------------------------------- 1 | hjælpeprogram til at få oplysninger om APK'er der er installeret på din enhed 2 | -------------------------------------------------------------------------------- /metadata/de/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey ist eine öffentliche Dienstleistung um Informationen über Anwendungen die auf deinem Gerät installiert sind, zu bekommen. Beginne mit einer Liste mit allen Apps die du auf deinem Gerät installiert hast, es zeigt sich dir die Applikations Signatur mit einer einfachen Berührung und bietet Links zu virustotal.com und androidobservatery,org um einfachen Zugriff auf die Profile der Applikation zu bekommen. Es erlaubt dir außerdem das signierte Zertifikat zu exportieren und einen Applikations Signatur Pin zu erzeugen für die Verwendung mit der TrustedIntends Bücherei. 2 | Wir s 3 | Du siehst deine Sprache nicht? Schließe dich uns an und übersetze die App: 4 | https://hosted.weblate.org/projects/guardianproject/checkey/ 5 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 6 | 7 | ***Erfahren Sie mehr*** 8 | ★ UNSERE WEBSEITE: https://GuardianProject.info 9 | ★ AUF TWITTER: https://twitter.com/guardianproject 10 | https://gitlab.com/guardianproject/checkey 11 | -------------------------------------------------------------------------------- /metadata/de/short_description.txt: -------------------------------------------------------------------------------- 1 | genutzt um Informationen über die APKs zu bekommen auf deinem Gerät installiert 2 | -------------------------------------------------------------------------------- /metadata/de/title.txt: -------------------------------------------------------------------------------- 1 | Checkey: Info über lokale Apps 2 | -------------------------------------------------------------------------------- /metadata/el/full_description.txt: -------------------------------------------------------------------------------- 1 | Το Checkey είναι ένα βοηθητικό πρόγραμμα για τη λήψη πληροφοριών σχετικά με τα APK που είναι εγκατεστημένα στη συσκευή σας. Ξεκινώντας με μια λίστα όλων των εφαρμογών που έχετε εγκαταστήσει στη συσκευή σας, θα σας δείξει την υπογραφή του APK με ένα μόνο άγγιγμα και θα παρέχει συνδέσμους στο virustotal.com και το androidobservatory.org για εύκολη πρόσβαση στα προφίλ αυτού του APK. Θα σας επιτρέψει επίσης να εξάγετε το πιστοποιητικό υπογραφής και να δημιουργήσετε αρχεία pin ApkSignaturePin για χρήση με τη βιβλιοθήκη TrustedIntents. 2 | ★ MIΛAME TH ΓΛΩΣΣΑ σας: Το Checkey είναι διαθέσιμο για φίλους που μιλούν: 3 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 4 | Δεν βλέπετε τη γλώσσα σας; Γίνετε μέλος και βοηθήστε στη μετάφραση της εφαρμογής: 5 | https://hosted.weblate.org/projects/guardianproject/checkey/ 6 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 7 | 8 | ***Μάθετε Περισσότερα*** 9 | ★ ΣΧΕΤΙΚΑ ΜΕ ΕΜΑΣ: Το Guardian Project είναι μια ομάδα δημιουργών που κάνουν ασφαλείς εφαρμογές για κινητά και open-source κώδικα για ένα καλύτερο αύριο 10 | ★ Η ΙΣΤΟΣΕΛΙΔΑ ΜΑΣ: https://GuardianProject.info 11 | ★ ΣΤΟ TWITTER: https://twitter.com/guardianproject 12 | ★ ΕΛΕΥΘΕΡΟ ΛΟΓΙΣΜΙΚΟ: Το Checkey είναι ελεύθερο λογισμικό. Μπορείτε να ρίξτε μια ματιά στον πηγαίο κώδικα μας ή γίνετε μέλος της κοινότητάς μας για να κάνουμε το Checkey ακόμα καλύτερο: 13 | https://gitlab.com/guardianproject/checkey 14 | ★ ΣΤΕΙΛΤΕ ΜΑΣ ΜΗΝΥΜΑ: Μας λείπει το αγαπημένο σας χαρακτηριστικό; Βρήκατε ένα ενοχλητικό σφάλμα; Πείτε μας! Θα θέλαμε να σας ακούσουμε. Στείλτε μας ένα μήνυμα στο: support@guardianproject.info ή βρείτε μας στο chat room https://guardianproject.info/contact 15 | -------------------------------------------------------------------------------- /metadata/el/short_description.txt: -------------------------------------------------------------------------------- 1 | βοηθητικό πρόγραμμα για τη λήψη πληροφοριών σχετικά με τα εγκατεστημένα APK σας 2 | -------------------------------------------------------------------------------- /metadata/el/title.txt: -------------------------------------------------------------------------------- 1 | Checkey: πληροφορίες εφαρμογών 2 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/101.txt: -------------------------------------------------------------------------------- 1 | + add translations: de es fi ja ko nb tr 2 | + reproducible build process 3 | + add latest Android Support v7 to fix crashes 4 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/102.txt: -------------------------------------------------------------------------------- 1 | + simplify overview and add "detail view" 2 | + fix all known crasher bugs 3 | + add translations: pt_PT ru sl 4 | + update translations: de fi ja nb 5 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/103.txt: -------------------------------------------------------------------------------- 1 | + reproducible build 2 | + add translations: fa fr zh-CN 3 | + update translations: de pt_PT tr 4 | -------------------------------------------------------------------------------- /metadata/en-US/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey is a utility for getting information about the APKs that are installed on your device. Starting with a list of all of the apps that you have installed on your device, it will show you the APK signature with a single touch, and provides links to virustotal.com and androidobservatory.org to easily access the profiles of that APK. It will also let you export the signing certificate and generate ApkSignaturePin pin files for use with the TrustedIntents library. 2 | 3 | ★ OPEN-SOURCE: Our code is transparent. You can take a look or join the community to help make Checkey even better: https://gitlab.com/guardianproject/checkey 4 | ★ WE SPEAK YOUR LANGUAGE: Checkey is available for friends who speak: Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 5 | 6 | Don’t see your language? Join us and help translate the app: 7 | https://hosted.weblate.org/projects/guardianproject/checkey/ 8 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 9 | 10 | 11 | ***Learn More*** 12 | ★ ABOUT US: Guardian Project is a group of developers that make secure mobile apps and open-source code for a better tomorrow 13 | ★ OUR WEBSITE: https://GuardianProject.info to learn more about us 14 | ★ ON TWITTER: https://twitter.com/guardianproject 15 | ★ FREE SOFTWARE: Checkey is free software. You can take a look at our source code, or contribute to help make Checkey even better: https://gitlab.com/guardianproject/checkey 16 | ★ MESSAGE US: Are we missing your favorite feature? Found an annoying bug? Please tell us! We’d love to hear from you. Send us an email: support@guardianproject.info or find us in our chat room https://guardianproject.info/contact 17 | -------------------------------------------------------------------------------- /metadata/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/metadata/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/metadata/en-US/images/icon.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/checkey-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/metadata/en-US/images/phoneScreenshots/checkey-phone.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/checkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/metadata/en-US/images/phoneScreenshots/checkey.png -------------------------------------------------------------------------------- /metadata/en-US/images/sevenInchScreenshots/checkey-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/checkey/5e1f82b8bfb26393bdb96d80014dc3936e41f2e4/metadata/en-US/images/sevenInchScreenshots/checkey-tablet.png -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | utility for getting information about the APKs that are installed on your device 2 | -------------------------------------------------------------------------------- /metadata/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Checkey: info on local apps 2 | -------------------------------------------------------------------------------- /metadata/es/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey es una utilidad para obtener información acerca de los APKs que 2 | están instalados en su dispositivo. Comenzando por una lista de todas las 3 | aplicaciones que ha instalado en su dispositivo, le mostrará la firma del 4 | APK con una simple pulsación, y proporciona enlaces a virustotal.com y 5 | androidobservatory.org para facilitar el acceso a los perfiles de ese APK. 6 | Además esto le permite exportar el certificado firmante y generar ficheros 7 | pin de ApkSignaturePin para su uso con la librería TrustedIntents. 8 | 9 | ★ HABLAMOS SU IDIOMA: Checkey está disponible para los amigos que hablan: Deutsch, English, español, suomi, 日本語, 한국어, Norsk, Türkçe 10 | 11 | ¿No ve su idioma? Únase a nosotros y ayude a traducir la aplicación: 12 | https://hosted.weblate.org/projects/guardianproject/checkey/ 13 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 14 | 15 | 16 | ***Aprenda más*** 17 | 18 | ★ ABOUT US: Guardian Project is a group of developers that make secure 19 | mobile apps and open-source code for a better tomorrow 20 | 21 | ★ ACERCA DE NOSOTROS: Guardian Project es un grupo de desarrolladores que 22 | elaboran aplicaciones móviles seguras y de código abierto para un mejor 23 | mañana 24 | 25 | ★ NUESTRO SITIO WEB: https://GuardianProject.info 26 | 27 | ★ EN TWITTER: https://twitter.com/guardianproject 28 | 29 | ★ SOFTWARE LIBRE: Checkey es software libre. Puede echar un vistazo a 30 | nuestro código fuente, o contribuir a hacer Checkey incluso mejor: 31 | https://gitlab.com/guardianproject/checkey 32 | 33 | ★ ENVÍENOS UN MENSAJE: ¿Nos hemos olvidado de su característica favorita? 34 | ¿Encontró algún fallo molesto? ¡Por favor cuéntenoslo! Nos encantará 35 | escucharlo de usted. Envíenos un correo electrónico: 36 | support@guardianproject.info o encuéntrenos en nuestra sala de chat 37 | https://guardianproject.info/contact 38 | -------------------------------------------------------------------------------- /metadata/es/short_description.txt: -------------------------------------------------------------------------------- 1 | utilidad para obtener información sobre los APKs instalados en su dispositivo 2 | -------------------------------------------------------------------------------- /metadata/et/short_description.txt: -------------------------------------------------------------------------------- 1 | kasuliku info saamine APK-d, mis on seadmesse installitud 2 | -------------------------------------------------------------------------------- /metadata/fi/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey on apuohjelma, jolla saa tietoja laiteeseen asennetuista APK-pakkaustiedostoista. Ohjelma luettelee aluksi kaikki laitteeseen asennetut sovellukset ja näyttää APK-allekirjoituksen yhdellä kosketuksella sekä tarjoaa linkit virustotal.com- ja androidobservatory.com-sivuistoille, joilta saa helposti kyseisen APK-pakkaustiedoston profiilit. Ohjelma sallii sinun myös viedä allekirjoitusvarmenteen ja tuottaa ApkSignaturePin-pin-tieodostoja käytettäväksi TrustedIntents-kirjastossa. 2 | ★ PUHUMME KIELTÄSI: Checkey on saataville ystäville, jotka puhuvat seuraavia kieliä: 3 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 4 | Etkö näe kieltäsi? Liity meihin ja auta sovelluksen kotoistamisessa: 5 | https://hosted.weblate.org/projects/guardianproject/checkey/ 6 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 7 | 8 | ***Opi lisää*** 9 | ★ TIETOA MEISTÄ: Guardian Project on kehittäjien ryhmä, joka tekee turvallisia mobiilisovelluksia ja avointa lähdekoodia parempaa huomista varten 10 | ★ WEBBISIVUMME: https://GuardianProject.info 11 | ★ TWITTERISSÄ: https://twitter.com/guardianproject 12 | ★ ILMAINEN OHJELMA: Checkey on ilmainen ohjelma. Voit vilkaista lähdekoodia tai avustaa Checkey-ohjelman tekemiseksi vielä paremmaksi: 13 | https://gitlab.com/guardianproject/checkey 14 | ★ VIESTITÄ MEILLE: Kaipaatko suosikkiominaisuuttasi? Löysitkö harmillisen ohjelmointivirheen? Kerro meille! Kuulemme sinusta mielellään. Lähetä meille sähköpostia: support@guardianproject.info tai etsi meidät juttelukanavalla https://guardianproject.info/contact 15 | -------------------------------------------------------------------------------- /metadata/fi/short_description.txt: -------------------------------------------------------------------------------- 1 | ohjelma tietojen hakemiseksi laitteeseesi asennetuista APK-pakkaustiedostoista 2 | -------------------------------------------------------------------------------- /metadata/fi/title.txt: -------------------------------------------------------------------------------- 1 | Checkey: tietoa sovelluksista 2 | -------------------------------------------------------------------------------- /metadata/fr/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey est un utilitaire permettant de recueillir des informations sur les APK installés sur votre appareil. En partant d'une liste de toutes les applis installées sur votre appareil, Vériclé vous présentera la signature de l'APK en un seul toucher, et vous offrira des liens vers virustotal.com et androidobservatory.org afin d'accéder aisément aux profils de cet APK. Il vous permettra aussi d'exporter le certificat de signature et de générer des fichiers NIP ApkSignaturePin pour les utiliser avec la bibliothèque TrustedIntents. 2 | ★ NOUS PARLONS VOTRE LANGUE : Checkey est proposé à nos amis parlant : 3 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk bokmål, português (Portugal), Русский, Slovenščina, Türkçe, français 4 | Vous ne voyez pas votre langue ? Rejoignez-nous et aidez-nous à traduire l'appli : 5 | https://hosted.weblate.org/projects/guardianproject/checkey/ 6 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 7 | 8 | ***En apprendre davantage*** 9 | ★ À PROPOS DE NOUS : le Projet Guardian est un groupe de développeurs créant des applis mobiles sécurisées et du code ouvert pour des lendemains meilleurs. 10 | ★ NOTRE SITE WEB : https://GuardianProject.info 11 | ★ SUR TWITTER: https://twitter.com/guardianproject 12 | ★ LOGICIEL LIBRE : Checkey est un logiciel libre. Vous pouvez regarder notre code source, ou contribuer en aidant à encore améliorer Checkey : 13 | https://gitlab.com/guardianproject/checkey 14 | ★ CONTACTEZ-NOUS : votre fonction favorite est-elle absente ? Avez-vous avez trouvé un bogue gênant ? Nous aimerions que vous nous en fassiez part ! Envoyez-nous un courriel : support@guardianproject.info ou trouvez-nous dans notre salon de discussion https://guardianproject.info/contact 15 | -------------------------------------------------------------------------------- /metadata/fr/short_description.txt: -------------------------------------------------------------------------------- 1 | utilitaire pour obtenir des informations sur les APKs qui sont installés sur votre appareil 2 | -------------------------------------------------------------------------------- /metadata/fr/title.txt: -------------------------------------------------------------------------------- 1 | Checkey : infos applis locales 2 | -------------------------------------------------------------------------------- /metadata/hi/short_description.txt: -------------------------------------------------------------------------------- 1 | आपके डिवाइस पर स्थापित कर रहे हैं कि APKs के बारे में जानकारी प्राप्त करने के लिए उपयोगिता 2 | -------------------------------------------------------------------------------- /metadata/hr/short_description.txt: -------------------------------------------------------------------------------- 1 | alat za dobivanje informacija o APK-ovi koji su instalirani na vašem uređaju 2 | -------------------------------------------------------------------------------- /metadata/hu/short_description.txt: -------------------------------------------------------------------------------- 1 | segédprogram egyre információt APK, hogy telepítve van a készüléken 2 | -------------------------------------------------------------------------------- /metadata/id/short_description.txt: -------------------------------------------------------------------------------- 1 | utilitas untuk mendapatkan informasi tentang APK yang diinstal pada perangkat Anda 2 | -------------------------------------------------------------------------------- /metadata/it/short_description.txt: -------------------------------------------------------------------------------- 1 | utility per ottenere informazioni sulle APKs installati sul dispositivo 2 | -------------------------------------------------------------------------------- /metadata/ja/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey は、お使いのデバイスにインストールされている APK の情報を取得するユーティリティです。お使いのデバイスにインストールされたすべてのアプリのリストをはじめ、ワンタッチで APK シグネチャを表示したり、virustotal.com と androidobservatory.org へのリンクを提供して、簡単に APK のプロファイルにアクセスすることができます。また、署名証明書のエクスポート、TrustedIntents ライブラリで使用する ApkSignaturePin ピンファイルの生成ができます。 2 | ★ あなたの言語でお使いいただけます: Checkey は次の言語を話す友だちが利用できます: 3 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 4 | あなたの言語が見つかりませんか? 私たちに参加して、アプリの翻訳を支援してください: 5 | https://hosted.weblate.org/projects/guardianproject/checkey/ 6 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 7 | 8 | ***さらに詳しく*** 9 | ★ 私たちについて: Guardian Project は、より良い明日のために、安全なモバイル アプリやオープン ソース コードを作る開発者のグループです 10 | ★ WEBサイト: https://GuardianProject.info 11 | ★ TWITTER: https://twitter.com/guardianproject 12 | ★ フリーソフトウェア: Checkey はフリーソフトウェアです。私たちのソースコードを見たり、Checkey をさらに良くする手助けに貢献することができます: 13 | https://gitlab.com/guardianproject/checkey 14 | ★ 私たちにメッセージをお送りください: あなたのお気に入りの機能が不足していませんか? 迷惑なバグを発見されましたか? ご連絡ください! 私たちはあなたのご意見をお待ちしています。私たちにメールをお送りください: support@guardianproject.info または私たちのチャットルーム https://guardianproject.info/contact から 15 | -------------------------------------------------------------------------------- /metadata/ja/short_description.txt: -------------------------------------------------------------------------------- 1 | お使いのデバイスにインストールされている APK の情報を取得するユーティリティ 2 | -------------------------------------------------------------------------------- /metadata/ja/title.txt: -------------------------------------------------------------------------------- 1 | Checkey: ローカルアプリの情報 2 | -------------------------------------------------------------------------------- /metadata/ko/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey은 장치에 설치된 APK에 대한 정보를 얻기위한 유틸리티입니다. 시작하게되면 장치에 설치한 모든 앱 목록을 보여주고, 한번의 터치로 APK 서명을 보여주고, APK의 프로파일에 쉽게 접근하여 virustotal.com 및 androidobservatory.org에 대한 링크를 제공합니다. 서명 인증서를 내보내고 TrustedIntents 라이브러리를 사용하여 ApkSignaturePin 핀 파일을 생성할 수 있습니다. 2 | 3 | ***더 자세히 알기*** 4 | ★ 우리 웹사이트: https://GuardianProject.info 5 | ★ 트위터: https://twitter.com/guardianproject 6 | -------------------------------------------------------------------------------- /metadata/ko/short_description.txt: -------------------------------------------------------------------------------- 1 | 당신의 장치에 설치되어있는 APK가에 대한 정보를 취득하기위한 유틸리티 2 | -------------------------------------------------------------------------------- /metadata/lt/short_description.txt: -------------------------------------------------------------------------------- 1 | įrankis gauti informaciją apie APK, kad yra įdiegtas jūsų prietaise 2 | -------------------------------------------------------------------------------- /metadata/lv/short_description.txt: -------------------------------------------------------------------------------- 1 | lietderība, lai iegūtu informāciju par APKs kas ir instalēti jūsu ierīcē 2 | -------------------------------------------------------------------------------- /metadata/nb/changelogs/101.txt: -------------------------------------------------------------------------------- 1 | + Oversettelser lagt til: de es fi ja ko nb tr 2 | + Gjentagbar byggeprosess 3 | + Støtte for Android 7 fikser kræsj 4 | -------------------------------------------------------------------------------- /metadata/nb/changelogs/102.txt: -------------------------------------------------------------------------------- 1 | + Forenklet oversikt og "detaljvisning" lagt til 2 | + Fiks for alle kjente kræsj 3 | + Oversettelser lagt til: pt_PT ru sl 4 | + Oppdaterte oversettelser: de fi ja nb 5 | -------------------------------------------------------------------------------- /metadata/nb/changelogs/103.txt: -------------------------------------------------------------------------------- 1 | + Gjentagbar byggeprosess 2 | + Oversettelser lagt til: fa fr zh-CN 3 | + Oppdaterte oversettelser: de pt_PT tr 4 | -------------------------------------------------------------------------------- /metadata/nb/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey er et verktøy for innhenting av informasjon om APK-er installert på din enhet. I førstningen en liste over installerte program, hvis APK-signatur er ett trykk unna. Dernest lenker til virustotal.com og androidobservatory.org for profilering av valgt APK. Programmet lar deg også eksportere signeringssertifikatet og generere ApkSignaturePin pin-kodefiler for bruk med TrustedIntents-biblioteket. 2 | ★ VI SNAKKER DITT SPRÅK: Checkeys vennegjeng omfatter: 3 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk bokmål, português (Portugal), Русский, Slovenščina, Türkçe 4 | 5 | (Tysk, Engelsk, Spansk, Finsk, Japansk, Koreansk, Norsk bokmål, Portugisisk (Portugal), Russisk, Slovensk, Tyrkisk) 6 | Mangler ditt språk? Hjelp oss å oversette programmet: 7 | https://hosted.weblate.org/projects/guardianproject/checkey/ 8 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 9 | 10 | ***Lær mer*** 11 | ★ OM OSS: Guardianprosjektet er en gruppe utviklere som lager sikre mobilprogrammer og friprog-kode for en bedre fremtid. 12 | ★ VÅR NETTSIDE: https://GuardianProject.info 13 | ★ DESSVERRE PÅ TWITTER: https://twitter.com/guardianproject 14 | ★ FRI PROGRAMVARE: Checkey er fri programvare. Du kan sjekke ut vår programkode, og bidra til den for å gjøre Checkey enda bedre: 15 | https://gitlab.com/guardianproject/checkey 16 | ★ TILBAKEMELDINGER: Mangler vi din favorittfunksjonalitet? Har du funnet en irriterende feil. Fortell oss om det! Vi elsker å lytte til god kritikk. Send oss en e-post support@guardianproject.info eller finn oss i vår sludrekanal https://guardianproject.info/contact 17 | -------------------------------------------------------------------------------- /metadata/nb/short_description.txt: -------------------------------------------------------------------------------- 1 | verktøy for innhenting av informasjon om APK-ene som er installert på din enhet 2 | -------------------------------------------------------------------------------- /metadata/nb/title.txt: -------------------------------------------------------------------------------- 1 | Checkey: Info om lokale apper 2 | -------------------------------------------------------------------------------- /metadata/nl/short_description.txt: -------------------------------------------------------------------------------- 1 | hulpprogramma voor het verkrijgen van informatie over de APK die zijn geïnstalleerd op uw apparaat 2 | -------------------------------------------------------------------------------- /metadata/no/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey er et verktøy for innhenting av informasjon om APK-er installert på din enhet. I førstningen en liste over installerte program, hvis APK-signatur er ett trykk unna. Dernest lenker til virustotal.com og androidobservatory.org for profilering av valgt APK. Programmet lar deg også eksportere signeringssertifikatet og generere ApkSignaturePin pin-kodefiler for bruk med TrustedIntents-biblioteket. 2 | ★ VI SNAKKER DITT SPRÅK: Checkeys vennegjeng omfatter: Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 3 | Mangler ditt språk? Hjelp oss å oversette programmet: 4 | https://hosted.weblate.org/projects/guardianproject/checkey/ 5 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 6 | 7 | ***Lær mer*** 8 | ★ OM OSS: Guardianprosjektet er en gruppe utviklere som lager sikre mobilprogrammer og friprog-kode for en bedre fremtid. 9 | ★ VÅR NETTSIDE: https://GuardianProject.info 10 | ★ DESVERRE PÅ TWITTER: https://twitter.com/guardianproject 11 | ★ FRI PROGRAMVARE: Checkey er fri programvare. Du kan sjekke ut vår programkode, og bidra til den for å gjøre Checkey enda bedre: 12 | https://gitlab.com/guardianproject/checkey 13 | ★ TILBAKEMELDINGER: Mangler vi din favorittfunksjonalitet? Har du funnet en irriterende feil. Fortell oss om det! Vi elsker å lytte til god kritikk. Send oss en e-post support@guardianproject.info eller finn oss i vår sludrekanal https://guardianproject.info/contact 14 | -------------------------------------------------------------------------------- /metadata/no/short_description.txt: -------------------------------------------------------------------------------- 1 | verktøy for innhenting av informasjon om APK-ene som er installert på din enhet 2 | -------------------------------------------------------------------------------- /metadata/pl/short_description.txt: -------------------------------------------------------------------------------- 1 | narzędzie do uzyskiwania informacji o APKs, które są zainstalowane w urządzeniu 2 | -------------------------------------------------------------------------------- /metadata/pt-BR/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey é um utilitário para obter informação sobre as APKs que estão instaladas no seu dispositivo. Começando com uma lista de todas as apps que estão instaladas no seu dispositivo. Esta irá mostrar-lhe a assinatura APK com um único toque, e proporciona hiperligações para virustotal.com e androidobservatory.org para aceder facilmente aos perfis dessa APK. Esta também irá deixá-lo exportar o certificado de assinatura e gerar os ficheiros código ApkSignaturePin para usar com a biblioteca TrustedIntents. 2 | 3 | ★ NÓS FALAMOS O SEU IDIOMA: Checkey está disponível para os amigos que falam: Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 4 | Não vê o seu idioma? Junte-se a nós e ajude a traduzir a app: 5 | https://hosted.weblate.org/translate/guardianproject/ 6 | 7 | ***Saiba Mais*** 8 | ★ SOBRE NÓS: Guardian Project é um grupo de responsáveis pelo desenvolvimento que cria apps móveis seguras e de código aberto para um futuro melhor. 9 | ★ O NOSSO SÍTIO DA WEB: https://GuardianProject.info 10 | ★ NO TWITTER: https://twitter.com/guardianproject 11 | ★ PROGRAMA LIVRE: Checkey é um programa gratuito. Pode dar uma vista de olhos no nosso código aberto, ou contribuir para ajudar a tornar Checkey ainda melhor: 12 | https://gitlab.com/guardianproject/checkey 13 | ★ ENVIE-NOS UMA MENSAGEM: Nós estamos a perder a sua função favorita? Encontrou um bug aborrecido? Por favor, diga-nos! Nós gostaríamos de o ouvir. Envie-nos uma mensagem: support@guardianproject.info ou encontre-nos na nossa sala de conversação em https://guardianproject.info/contact 14 | -------------------------------------------------------------------------------- /metadata/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | Utilitário para obter informação sobre as APKs instaladas no seu dispositivo 2 | -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/101.txt: -------------------------------------------------------------------------------- 1 | + adicionar traduções: de es fi ja ko nb tr 2 | + processo de compilação reprodutível 3 | + adicionado suporte ao último Android v7 para corrigir craches 4 | -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/102.txt: -------------------------------------------------------------------------------- 1 | + simplificar visão geral e "vista detalhada" 2 | + correção de todos os erros de crachar 3 | + adicionar traduções: pt_PT ru sl 4 | + atualizar traduções: de fi ja nb 5 | -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/103.txt: -------------------------------------------------------------------------------- 1 | + compilação reprodutível 2 | + adicionar traduções: fa fr zh-CN 3 | + atualizar traduções: de pt_PT tr 4 | -------------------------------------------------------------------------------- /metadata/pt-PT/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey é um utilitário para obter informação sobre as APKs que estão instaladas no seu dispositivo. Começando com uma lista de todas as apps que estão instaladas no seu dispositivo, esta irá mostrar-lhe a assinatura APK com um único toque, e proporciona hiperligações para virustotal.com e androidobservatory.org para aceder facilmente aos perfis dessa APK. Também permite exportar o certificado de assinatura e gerar os ficheiros de código PIN ApkSignaturePin para usar com a biblioteca TrustedIntents. 2 | 3 | ★ CÓDIGO-FONTE ABERTO: o nosso código é transparente. Pode dar uma vista de olhos ou juntar-se à comunidade para tornar o Checkey ainda melhor: https://gitlab.com/guardianproject/checkey 4 | ★ NÓS FALAMOS O SEU IDIOMA: o Checkey está disponível para as pessoas que falam: alemão, inglês, espanhol, finlandês, japonês, coreano, norueguês, português, português (Brasil), russo, esloveno, turco. 5 | 6 | Não vê o seu idioma? Junte-se a nós e ajude a traduzir a app: https://hosted.weblate.org/translate/guardianproject/ 7 | 8 | ***Saiba mais*** 9 | ★ SOBRE NÓS: Guardian Project é um grupo de responsáveis pelo desenvolvimento que cria apps móveis seguras e de código aberto para um futuro melhor. 10 | ★ O NOSSO SÍTIO DA WEB: https://GuardianProject.info 11 | ★ NO TWITTER: https://twitter.com/guardianproject 12 | ★ PROGRAMA LIVRE: Checkey é um programa gratuito. Pode dar uma vista de olhos no nosso código-fonte aberto, ou contribuir para ajudar a tornar o Checkey ainda melhor: 13 | https://gitlab.com/guardianproject/checkey 14 | ★ ENVIE-NOS UMA MENSAGEM: nós estamos a perder a sua funcionalidade favorita? Encontrou um erro chato? Por favor, diga-nos! Nós gostaríamos de o ouvir. Envie-nos uma mensagem: support@guardianproject.info ou encontre-nos na nossa sala de conversação em https://guardianproject.info/contact 15 | -------------------------------------------------------------------------------- /metadata/pt-PT/short_description.txt: -------------------------------------------------------------------------------- 1 | Utilitário para obter informação sobre as APKs instaladas no seu dispositivo 2 | -------------------------------------------------------------------------------- /metadata/pt/changelogs/101.txt: -------------------------------------------------------------------------------- 1 | + adicionar traduções: de es fi ja ko nb tr 2 | + processo de compilação reprodutível 3 | + adicionado suporte ao último Android v7 para corrigir craches 4 | -------------------------------------------------------------------------------- /metadata/pt/changelogs/102.txt: -------------------------------------------------------------------------------- 1 | + simplificar visão geral e "vista detalhada" 2 | + correção de todos os erros de crachar 3 | + adicionar traduções: pt_PT ru sl 4 | + atualizar traduções: de fi ja nb 5 | -------------------------------------------------------------------------------- /metadata/pt/changelogs/103.txt: -------------------------------------------------------------------------------- 1 | + compilação reprodutível 2 | + adicionar traduções: fa fr zh-CN 3 | + atualizar traduções: de pt_PT tr 4 | -------------------------------------------------------------------------------- /metadata/pt/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey é um utilitário para obter informação sobre as APKs que estão instaladas no seu dispositivo. Começando com uma lista de todas as apps que estão instaladas no seu dispositivo, esta irá mostrar-lhe a assinatura APK com um único toque, e proporciona hiperligações para virustotal.com e androidobservatory.org para aceder facilmente aos perfis dessa APK. Também permite exportar o certificado de assinatura e gerar os ficheiros de código PIN ApkSignaturePin para usar com a biblioteca TrustedIntents. 2 | 3 | ★ CÓDIGO-FONTE ABERTO: o nosso código é transparente. Pode dar uma vista de olhos ou juntar-se à comunidade para tornar o Checkey ainda melhor: https://gitlab.com/guardianproject/checkey 4 | ★ NÓS FALAMOS O SEU IDIOMA: o Checkey está disponível para as pessoas que falam: alemão, inglês, espanhol, finlandês, japonês, coreano, norueguês, português, português (Brasil), russo, esloveno, turco. 5 | 6 | Não vê o seu idioma? Junte-se a nós e ajude a traduzir a app: https://hosted.weblate.org/translate/guardianproject/ 7 | 8 | ***Saiba mais*** 9 | ★ SOBRE NÓS: Guardian Project é um grupo de responsáveis pelo desenvolvimento que cria apps móveis seguras e de código aberto para um futuro melhor. 10 | ★ O NOSSO SÍTIO DA WEB: https://GuardianProject.info 11 | ★ NO TWITTER: https://twitter.com/guardianproject 12 | ★ PROGRAMA LIVRE: Checkey é um programa gratuito. Pode dar uma vista de olhos no nosso código-fonte aberto, ou contribuir para ajudar a tornar o Checkey ainda melhor: 13 | https://gitlab.com/guardianproject/checkey 14 | ★ ENVIE-NOS UMA MENSAGEM: nós estamos a perder a sua funcionalidade favorita? Encontrou um erro chato? Por favor, diga-nos! Nós gostaríamos de o ouvir. Envie-nos uma mensagem: support@guardianproject.info ou encontre-nos na nossa sala de conversação em https://guardianproject.info/contact 15 | -------------------------------------------------------------------------------- /metadata/pt/short_description.txt: -------------------------------------------------------------------------------- 1 | Utilitário para obter informação sobre as APKs instaladas no seu dispositivo 2 | -------------------------------------------------------------------------------- /metadata/ro/short_description.txt: -------------------------------------------------------------------------------- 1 | utilitate pentru a obține informații despre fișiere APK care sunt instalate pe dispozitiv 2 | -------------------------------------------------------------------------------- /metadata/ru/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey это программа для получения информации относительно APK которые установлены на Вашем устройстве. Начиная со списка всех приложений установленых на Вашем устройстве она определит подписи APK по одному касанию и укажет ссылки на virustotal.com и androidabservatory.org для удобного доступа к профилям этих APK. Она так же поможет отправить номера сертификатов и создаст файлы номеров ApkSignaturePin для использование с библиотекой TrustedIntents. 2 | * МЫ ГОВОРИМ НА ВАШЕМ ЯЗЫКЕ: Checkey доступна для друзей говорящих на: 3 | Не видите вашего языка? Свяжитесь с нами и помогите перевести приложение: 4 | https://hosted.weblate.org/projects/guardianproject/checkey/ 5 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 6 | 7 | ***Узнать больше*** 8 | * О НАС: Guardian Project это группа разработчиков делающая мобильные приложения безопаснее используя открытый исходный код для лучшего будущего. 9 | ★ НАШ WEBSITE: https://GuardianProject.info 10 | ★ В TWITTER: https://twitter.com/guardianproject 11 | ★ ПРОГРАММНОЕ ОБЕСПЕЧЕНИЕ С ОТКРЫТЫМ ИСХОДНЫМ КОДОМ: Checkey является программным обеспечением с открытым исходным кодом. Вы можете проверить наш исходный код или помочь сделать Checkey ещё лучше: 12 | https://gitlab.com/guardianproject/checkey 13 | ★ ДАЙТЕ НАМ ЗНАТЬ: Мы отключили необходимые Вам возможности программы? Вы обнаружили ошибку? Пожалуйста, дайте нам знать! Мы не хотели расстроить Вас. Пришлите нам сообщение на почту: support@guardianproject.info или наберите нас в чате на странице https://guardianproject.info/contact 14 | -------------------------------------------------------------------------------- /metadata/ru/short_description.txt: -------------------------------------------------------------------------------- 1 | Программа для сбора информации об APK КОТОРЫЕ установлены на Вашем устройстве 2 | -------------------------------------------------------------------------------- /metadata/ru/title.txt: -------------------------------------------------------------------------------- 1 | Checkey: имеются программы 2 | -------------------------------------------------------------------------------- /metadata/sk/short_description.txt: -------------------------------------------------------------------------------- 1 | nástroj pre získavanie informácií o APKs, ktoré sú nainštalované na vašom zariadení 2 | -------------------------------------------------------------------------------- /metadata/sl/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey je orodje za pridobivanje informacij o APK paketih, ki so nameščeni na vaši napravi. Na začetnem zaslonu je prikazan seznam vseh, z dotikom posameznega pa se izpišejo: njegove zgoščene vrednosti, podatki o podpisu in povezavi do informacij na virustotal.com ter androidobservatory.org. Poleg tega omogoča še izvoz podpisnih potrdil in izdelavo ApkSignaturePin PIN datotek za uporabo s TrustedIntents knjižnico. 2 | 3 | ★ GOVORIMO VAŠ JEZIK: Checkey je na voljo za prijatelje, ki govorijo: Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 4 | Ali vaš jezik ni na voljo? Pridružite se nam in nam pomagajte prevesti to aplikacijo: 5 | https://hosted.weblate.org/projects/guardianproject/checkey/ 6 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 7 | 8 | ***Izvedite več*** 9 | ★ O NAS: Guardian Project smo skupina razvijalcev, ki ustvarjamo varne in odprtokodne mobilne aplikacije za boljši jutri 10 | ★ SPLETNA STRAN: https://GuardianProject.info 11 | ★ NA TWITTERJU: https://twitter.com/guardianproject 12 | ★ BREZPLAČNO PROGRAMJE: Checkey je brezplačen. Lahko si tudi ogledate njegovo izvorno kodo ali pa doprinesete k njegovemu razvoju, da bi postal še boljši: 13 | https://gitlab.com/guardianproject/checkey 14 | ★ OBVESTITE NAS: Ali pogrešate kakšno funkcionalnost? Ste našli hrošča? Veseli bomo vašega sporočila. Pošljite nam e-pošto na: support@guardianproject.info ali nas poiščite v naši klepetalnici na: https://guardianproject.info/contact 15 | -------------------------------------------------------------------------------- /metadata/sl/short_description.txt: -------------------------------------------------------------------------------- 1 | orodje za pridobivanje informacij o APK paketih, ki so nameščeni na vaši napravi 2 | -------------------------------------------------------------------------------- /metadata/sl/title.txt: -------------------------------------------------------------------------------- 1 | Checkey: info o aplikacijah 2 | -------------------------------------------------------------------------------- /metadata/sv/short_description.txt: -------------------------------------------------------------------------------- 1 | verktyg för att få information om de APKs som är installerade på din enhet 2 | -------------------------------------------------------------------------------- /metadata/sw/short_description.txt: -------------------------------------------------------------------------------- 1 | shirika kwa ajili ya kupata taarifa kuhusu APK ambayo imewekwa kwenye kifaa chako 2 | -------------------------------------------------------------------------------- /metadata/th/short_description.txt: -------------------------------------------------------------------------------- 1 | ยูทิลิตี้สำหรับการรับข้อมูลเกี่ยวกับ APKs ที่ติดตั้งอยู่บนอุปกรณ์ของคุณ 2 | -------------------------------------------------------------------------------- /metadata/tr/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey telefonunuzda yüklü olan APK'lar hakkında bilgi sahibi olmanıza yarayan bir araçtır. Telefonunuzda yüklü olan tüm uygulamaları içeren bir liste ile açılır, size tek tıklamayla APK imzasını gösterir bu APK'nun profillerine ulaşabilmeniz için virustotal.com ve androidobservatory.org adreslerine bağlantılar sunar. Ayrıca TrustedIntents kütüphanesinde kullanabilmeniz için imzalama sertifikalarını dışa aktararak ApkSignaturePin pin dosyaları oluşturmanıza olanak sağlar. 2 | ★ DİLİNİZİ BİLİYORUZ: Checkey artık şu dilleri bilen arkadaşlar için hazır: 3 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 4 | Sizin diliniz yok mu? Bize katılın ve çeviri için yardım edin: 5 | https://hosted.weblate.org/projects/guardianproject/checkey/ 6 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 7 | 8 | ***Daha Fazla*** 9 | ★ HAKKIMIZDA: Guardian Project, daha iyi bir yarın için güvenli mobil uygulamalar ve açık-kaynak kodlar yazan bir geliştirici grubudur 10 | ★ WEB SAYFAMIZ: https://GuardianProject.info 11 | ★ TWITTER: https://twitter.com/guardianproject 12 | ★ ÜCRETSİZ YAZILIM: Checkey ücretsiz bir yazılımdır. Kaynak kodumuza bakabilir veya Checkey'i daha iyi yapabilmemiz için yardım edebilirsiniz: 13 | https://gitlab.com/guardianproject/checkey 14 | ★ BİZE YAZIN: En sevdiğiniz özellikleri unutmuş muyuz? Sinir bozucu bir hata mı keşfettiniz? Lütfen bize bildirin! Bize support@guardianproject.info adresinden bir e-posta gönderebilirsiniz veya bizi sohbet odamızda bulabilirsiniz: https://guardianproject.info/contact 15 | -------------------------------------------------------------------------------- /metadata/tr/short_description.txt: -------------------------------------------------------------------------------- 1 | cihazınızda yüklü olan APKlar hakkında bilgi almaya yarayan bir araç 2 | -------------------------------------------------------------------------------- /metadata/tr/title.txt: -------------------------------------------------------------------------------- 1 | Checkey: yerel uyg. bilgileri 2 | -------------------------------------------------------------------------------- /metadata/uk/changelogs/101.txt: -------------------------------------------------------------------------------- 1 | + додано переклади: de es fi ja ko nb tr 2 | + забезпечення відтворюваності збірки 3 | + додано підтримку Android v7 для виправлення падінь додатку 4 | -------------------------------------------------------------------------------- /metadata/uk/changelogs/102.txt: -------------------------------------------------------------------------------- 1 | + спрощено огляд та додано "детальний перегляд" 2 | + виправлено всі відомі вади, які призводили до падіння 3 | + додано переклади: pt_PT ru sl 4 | + оновлено переклади: de fi ja nb 5 | -------------------------------------------------------------------------------- /metadata/uk/changelogs/103.txt: -------------------------------------------------------------------------------- 1 | + відтворювані збірки 2 | + додано переклади: fa fr zh-CN 3 | + оновлено переклади: de pt_PT tr 4 | -------------------------------------------------------------------------------- /metadata/uk/short_description.txt: -------------------------------------------------------------------------------- 1 | утиліта для отримання інформації про APKs, встановлених на вашому пристрої 2 | -------------------------------------------------------------------------------- /metadata/vi/short_description.txt: -------------------------------------------------------------------------------- 1 | tiện ích để nhận thông tin về các APK được cài đặt trên thiết bị của bạn 2 | -------------------------------------------------------------------------------- /metadata/zh-CN/full_description.txt: -------------------------------------------------------------------------------- 1 | Checkey 是一个获得已安装 APK 相关信息的实用工具。它从您的设备上已安装的所有应用开始,一键触摸即可显示 APK 的指纹,并且提供到达 virustotal.com 和 androidobservatory.org 的快捷链接,让您方便地了解特定 APK 的档案。它还可以让您导出签名证书和生成 ApkSignaturePin Pin 文件供 TrustedIntents 库使用。 2 | ★ Checkey 支持下列语言: 3 | Deutsch, English, español, suomi, 日本語, 한국어, Norsk, português (Portugal), Русский, Slovenščina, Türkçe 4 | 没看到您的语言?帮忙翻译本应用吧: 5 | https://hosted.weblate.org/projects/guardianproject/checkey/ 6 | https://hosted.weblate.org/projects/guardianproject/checkey-metadata/ 7 | 8 | ***详细了解*** 9 | ★ 关于我们:Guardian 项目是一个开发者小组,致力于创造移动应用和开源代码的美好明天 10 | ★ 我们的网站: https://GuardianProject.info 11 | ★ 我们的 Twitter: https://twitter.com/guardianproject 12 | ★ 自由软件:Checkey 是自由软件。您可以查看我们的源代码,还可以帮助我们让 Checkey 变得更好: 13 | https://gitlab.com/guardianproject/checkey 14 | ★ 致用户:我们还缺少你喜欢的功能?发现了一个 bug?请告诉我们!我们乐于听取您的意见。请发送电子邮件至: support@guardianproject.info 或者加入我们的聊天室 https://guardianproject.info/contact 15 | -------------------------------------------------------------------------------- /metadata/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 一个实用工具,获取已安装在您的设备上的应用的有关信息 2 | -------------------------------------------------------------------------------- /metadata/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | Checkey:本地应用的信息 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /tools/check-fastlane-whitespace.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import glob 4 | import os 5 | 6 | os.chdir(os.path.join(os.path.dirname(__file__), '..')) 7 | 8 | for f in glob.glob('metadata/*/*.txt') + glob.glob('metadata/*/*/*.txt'): 9 | if os.path.getsize(f) == 0: 10 | os.remove(f) 11 | continue 12 | 13 | with open(f) as fp: 14 | data = fp.read() 15 | with open(f, 'w') as fp: 16 | fp.write(data.rstrip()) 17 | fp.write('\n') 18 | -------------------------------------------------------------------------------- /tools/fix-translations: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | toolsdir=$(cd `dirname $0`; pwd) 4 | cd $toolsdir/.. 5 | 6 | # Fix TypographyEllipsis programmatically 7 | sed -i 's/\.\.\./…/g' app/src/main/res/values*/strings.xml 8 | 9 | # Replace "--" with an "em dash" character 10 | sed -i 's,\(\>[^\<]*\)--\([^\>]\),\1—\2,g' app/src/main/res/values*/strings.xml 11 | 12 | # indent lines like Android Studio does 13 | sed -i "s,^\s* 16 | sed -i 's,\s*,,' app/src/main/res/values*/strings.xml 17 | sed -i 's,\s*,,' app/src/main/res/values*/strings.xml 18 | 19 | # strip leading whitespace 20 | sed -Ei 's,(]+>)\s*,\1,' app/src/main/res/values*/strings.xml 21 | 22 | # strip trailing whitespace 23 | sed -i 's,\s*,,' app/src/main/res/values*/strings.xml 24 | 25 | $toolsdir/check-fastlane-whitespace.py 26 | 27 | if ! git diff --exit-code > /dev/null; then 28 | echo "Run fix-translations and include the needed differences!" 29 | exit 1 30 | fi 31 | -------------------------------------------------------------------------------- /tools/png-pre-compress: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | set -e 4 | set -x 5 | 6 | for f in `find $(dirname $0)/../app/src/ $(dirname $0)/../metadata -type f -name \*.png`; do 7 | echo $f | grep -Eo '\.9\.png$' && continue # do not optimize 9-patch, it breaks them 8 | tmpfile=$(mktemp) 9 | #aapt singleCrunch -v -i $f -o $tmpfile 10 | zopflipng --iterations=50 --filters=01234mepb --lossy_8bit --lossy_transparent -y $f $tmpfile 11 | mv $tmpfile $f 12 | done 13 | --------------------------------------------------------------------------------