From 9d4529b06b159c54fe6d7f7cc24e0ceb6d20d9be Mon Sep 17 00:00:00 2001
From: Sylvia van Os
Date: Thu, 22 Oct 2020 18:15:07 +0200
Subject: [PATCH] Initial rebrand
---
app/build.gradle | 2 +-
.../card_locker/BarcodeImageWriterTask.java | 2 +-
.../card_locker/BarcodeSelectorActivity.java | 2 +-
.../card_locker/CardShortcutConfigure.java | 2 +-
.../java/protect/card_locker/DBHelper.java | 2 +-
.../card_locker/ImportExportActivity.java | 4 +--
.../protect/card_locker/ImportExportTask.java | 2 +-
.../card_locker/LoyaltyCardEditActivity.java | 2 +-
.../card_locker/LoyaltyCardViewActivity.java | 2 +-
.../protect/card_locker/MainActivity.java | 4 ++-
.../card_locker/MultiFormatExporter.java | 2 +-
.../card_locker/MultiFormatImporter.java | 2 +-
app/src/main/res/values-cs/strings.xml | 1 -
app/src/main/res/values-de/strings.xml | 1 -
app/src/main/res/values-el-rGR/strings.xml | 1 -
app/src/main/res/values-es/strings.xml | 1 -
app/src/main/res/values-fr/strings.xml | 1 -
app/src/main/res/values-it/strings.xml | 1 -
app/src/main/res/values-lt/strings.xml | 1 -
app/src/main/res/values-nb-rNO/strings.xml | 1 -
app/src/main/res/values-night/colors.xml | 6 ++---
app/src/main/res/values-nl/strings.xml | 1 -
app/src/main/res/values-pl/strings.xml | 1 -
app/src/main/res/values-ru/strings.xml | 1 -
app/src/main/res/values-sk/strings.xml | 1 -
app/src/main/res/values-sl/strings.xml | 1 -
app/src/main/res/values/colors.xml | 6 ++---
app/src/main/res/values/constants.xml | 4 +--
app/src/main/res/values/strings.xml | 25 +++++++++---------
docs/README.md | 26 +++++++++----------
privacy-policy.md => docs/privacy-policy.md | 8 +++---
docs/share.md | 12 ++++-----
32 files changed, 59 insertions(+), 69 deletions(-)
rename privacy-policy.md => docs/privacy-policy.md (92%)
diff --git a/app/build.gradle b/app/build.gradle
index 89ec24f80..d769ce2a9 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -10,7 +10,7 @@ android {
compileSdkVersion 29
defaultConfig {
- applicationId "protect.card_locker"
+ applicationId "me.hackerchick.catima"
minSdkVersion 16
targetSdkVersion 29
versionCode 39
diff --git a/app/src/main/java/protect/card_locker/BarcodeImageWriterTask.java b/app/src/main/java/protect/card_locker/BarcodeImageWriterTask.java
index 60ac03c0d..58231c9a7 100644
--- a/app/src/main/java/protect/card_locker/BarcodeImageWriterTask.java
+++ b/app/src/main/java/protect/card_locker/BarcodeImageWriterTask.java
@@ -21,7 +21,7 @@ import java.lang.ref.WeakReference;
*/
class BarcodeImageWriterTask extends AsyncTask
{
- private static final String TAG = "LoyaltyCardLocker";
+ private static final String TAG = "Catima";
// When drawn in a smaller window 1D barcodes for some reason end up
// squished, whereas 2D barcodes look fine.
diff --git a/app/src/main/java/protect/card_locker/BarcodeSelectorActivity.java b/app/src/main/java/protect/card_locker/BarcodeSelectorActivity.java
index 0c00615b7..9e1c29830 100644
--- a/app/src/main/java/protect/card_locker/BarcodeSelectorActivity.java
+++ b/app/src/main/java/protect/card_locker/BarcodeSelectorActivity.java
@@ -36,7 +36,7 @@ import java.util.Map;
*/
public class BarcodeSelectorActivity extends AppCompatActivity
{
- private static final String TAG = "LoyaltyCardLocker";
+ private static final String TAG = "Catima";
// Result this activity will return
public static final String BARCODE_CONTENTS = "contents";
diff --git a/app/src/main/java/protect/card_locker/CardShortcutConfigure.java b/app/src/main/java/protect/card_locker/CardShortcutConfigure.java
index 2917d703d..212f435a7 100644
--- a/app/src/main/java/protect/card_locker/CardShortcutConfigure.java
+++ b/app/src/main/java/protect/card_locker/CardShortcutConfigure.java
@@ -17,7 +17,7 @@ import android.widget.Toast;
*/
public class CardShortcutConfigure extends AppCompatActivity
{
- static final String TAG = "LoyaltyCardLocker";
+ static final String TAG = "Catima";
@Override
public void onCreate(Bundle bundle)
diff --git a/app/src/main/java/protect/card_locker/DBHelper.java b/app/src/main/java/protect/card_locker/DBHelper.java
index 6952accae..3eb49cbda 100644
--- a/app/src/main/java/protect/card_locker/DBHelper.java
+++ b/app/src/main/java/protect/card_locker/DBHelper.java
@@ -9,7 +9,7 @@ import android.database.sqlite.SQLiteOpenHelper;
public class DBHelper extends SQLiteOpenHelper
{
- public static final String DATABASE_NAME = "LoyaltyCards.db";
+ public static final String DATABASE_NAME = "Catima.db";
public static final int ORIGINAL_DATABASE_VERSION = 1;
public static final int DATABASE_VERSION = 3;
diff --git a/app/src/main/java/protect/card_locker/ImportExportActivity.java b/app/src/main/java/protect/card_locker/ImportExportActivity.java
index e2f96f31d..73ea4d19e 100644
--- a/app/src/main/java/protect/card_locker/ImportExportActivity.java
+++ b/app/src/main/java/protect/card_locker/ImportExportActivity.java
@@ -34,7 +34,7 @@ import java.util.List;
public class ImportExportActivity extends AppCompatActivity
{
- private static final String TAG = "LoyaltyCardLocker";
+ private static final String TAG = "Catima";
private static final int PERMISSIONS_EXTERNAL_STORAGE = 1;
private static final int CHOOSE_EXPORT_LOCATION = 2;
@@ -73,7 +73,7 @@ public class ImportExportActivity extends AppCompatActivity
final Intent intentCreateDocumentAction = new Intent(Intent.ACTION_CREATE_DOCUMENT);
intentCreateDocumentAction.addCategory(Intent.CATEGORY_OPENABLE);
intentCreateDocumentAction.setType("text/csv");
- intentCreateDocumentAction.putExtra(Intent.EXTRA_TITLE, "LoyaltyCardKeychain.csv");
+ intentCreateDocumentAction.putExtra(Intent.EXTRA_TITLE, "Catima.csv");
Button exportButton = findViewById(R.id.exportButton);
exportButton.setOnClickListener(new View.OnClickListener()
diff --git a/app/src/main/java/protect/card_locker/ImportExportTask.java b/app/src/main/java/protect/card_locker/ImportExportTask.java
index ab54c9ef3..8537fbe99 100644
--- a/app/src/main/java/protect/card_locker/ImportExportTask.java
+++ b/app/src/main/java/protect/card_locker/ImportExportTask.java
@@ -15,7 +15,7 @@ import java.nio.charset.Charset;
class ImportExportTask extends AsyncTask
{
- private static final String TAG = "LoyaltyCardLocker";
+ private static final String TAG = "Catima";
private Activity activity;
private boolean doImport;
diff --git a/app/src/main/java/protect/card_locker/LoyaltyCardEditActivity.java b/app/src/main/java/protect/card_locker/LoyaltyCardEditActivity.java
index b6ac2cc41..54f9079a3 100644
--- a/app/src/main/java/protect/card_locker/LoyaltyCardEditActivity.java
+++ b/app/src/main/java/protect/card_locker/LoyaltyCardEditActivity.java
@@ -34,7 +34,7 @@ import java.io.InvalidObjectException;
public class LoyaltyCardEditActivity extends AppCompatActivity
{
- private static final String TAG = "CardLocker";
+ private static final String TAG = "Catima";
protected static final String NO_BARCODE = "_NO_BARCODE_";
protected static final int SELECT_BARCODE_REQUEST = 1;
diff --git a/app/src/main/java/protect/card_locker/LoyaltyCardViewActivity.java b/app/src/main/java/protect/card_locker/LoyaltyCardViewActivity.java
index f52de980e..7a704ad91 100644
--- a/app/src/main/java/protect/card_locker/LoyaltyCardViewActivity.java
+++ b/app/src/main/java/protect/card_locker/LoyaltyCardViewActivity.java
@@ -36,7 +36,7 @@ import protect.card_locker.preferences.Settings;
public class LoyaltyCardViewActivity extends AppCompatActivity
{
- private static final String TAG = "CardLocker";
+ private static final String TAG = "Catima";
private static final double LUMINANCE_MIDPOINT = 0.5;
TextView cardIdFieldView;
diff --git a/app/src/main/java/protect/card_locker/MainActivity.java b/app/src/main/java/protect/card_locker/MainActivity.java
index 6488d84ee..024ca6aeb 100644
--- a/app/src/main/java/protect/card_locker/MainActivity.java
+++ b/app/src/main/java/protect/card_locker/MainActivity.java
@@ -39,7 +39,7 @@ import protect.card_locker.preferences.SettingsActivity;
public class MainActivity extends AppCompatActivity
{
- private static final String TAG = "LoyaltyCardLocker";
+ private static final String TAG = "Catima";
private static final int MAIN_REQUEST_CODE = 1;
private Menu menu;
@@ -371,6 +371,8 @@ public class MainActivity extends AppCompatActivity
"") +
"
" +
String.format(getString(R.string.app_copyright_fmt), year) +
+ "
" +
+ getString(R.string.app_copyright_old) +
"
" +
getString(R.string.app_license) +
"
" +
diff --git a/app/src/main/java/protect/card_locker/MultiFormatExporter.java b/app/src/main/java/protect/card_locker/MultiFormatExporter.java
index 68b01e761..5298e2ad7 100644
--- a/app/src/main/java/protect/card_locker/MultiFormatExporter.java
+++ b/app/src/main/java/protect/card_locker/MultiFormatExporter.java
@@ -7,7 +7,7 @@ import java.io.OutputStreamWriter;
public class MultiFormatExporter
{
- private static final String TAG = "LoyaltyCardLocker";
+ private static final String TAG = "Catima";
/**
* Attempts to export data to the output stream in the
diff --git a/app/src/main/java/protect/card_locker/MultiFormatImporter.java b/app/src/main/java/protect/card_locker/MultiFormatImporter.java
index 3d5593868..a4ab4c83c 100644
--- a/app/src/main/java/protect/card_locker/MultiFormatImporter.java
+++ b/app/src/main/java/protect/card_locker/MultiFormatImporter.java
@@ -7,7 +7,7 @@ import java.io.InputStreamReader;
public class MultiFormatImporter
{
- private static final String TAG = "LoyaltyCardLocker";
+ private static final String TAG = "Catima";
/**
* Attempts to import data from the input stream of the
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
index 1b9055017..0fa9de666 100644
--- a/app/src/main/res/values-cs/strings.xml
+++ b/app/src/main/res/values-cs/strings.xml
@@ -1,7 +1,6 @@
- Loyalty Card Keychain
Přidat
ZAtím némáte žádné věrnostní karty. Klikněte na tlačítko "+" (plus) nahoře a začněte.\n\nLoyalty Card Locker umožňuje nosit své věrnostní karty v telefonu, takže jsou vždy na dosah.
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index f6445e6e7..ea6fc810c 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -1,7 +1,6 @@
- Loyalty Card Keychain
Suche
Neu
diff --git a/app/src/main/res/values-el-rGR/strings.xml b/app/src/main/res/values-el-rGR/strings.xml
index e35d883e4..06a1d3c7e 100644
--- a/app/src/main/res/values-el-rGR/strings.xml
+++ b/app/src/main/res/values-el-rGR/strings.xml
@@ -1,7 +1,6 @@
- Loyalty Card Keychain
Προσθήκη
Δεν έχετε κάρτες προς το παρόν. Πατήστε το κουμπί \"+\" (συν) στο πάνω μέρος για να ξεκινήσετε.\n\nΤο Loyalty Card Keychain σας δίνει τη δυνατότητα να έχετε τις κάρτες σας στο τηλέφωνο σας, έτσι ώστε να τις έχετε πάντα μαζί σας.
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index a512e8a19..8b729423b 100644
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -1,7 +1,6 @@
- Cartera para Tarjetas de Fidelización.
Añadir
Actualmente no tienes ninguna tarjeta guardada. Presiona el botón \"+\" para comenzar.\n\nEsta cartera te permite llevar tus tarjetas de fidelización en tu teléfono para que estén siempre a tu alcance.
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index 8f5194840..445fd99dc 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -1,7 +1,6 @@
- Loyalty Card Keychain
Ajouter
Aucune carte de fidélité enregistrée. Appuyez sur le bouton \"+\" (plus) pour commencer.\n\nLoyalty Card Locker vous permet d\'enregistrer vos cartes de fidélité sur votre téléphone pour toujours les avoir à portée de main.
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index 5f89dbe0b..a7cba28d6 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -1,7 +1,6 @@
- Carte fedeltà
Cerca
Aggiungi
diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml
index f7fab0fc2..02e1333d3 100644
--- a/app/src/main/res/values-lt/strings.xml
+++ b/app/src/main/res/values-lt/strings.xml
@@ -1,7 +1,6 @@
- Loyalty Card Keychain
Pridėti
Šiuo metu neturite nė vienos įvestos lojalumo kortelės. Paspauskite "+" (pliuso) pliuso mygtuką, kad pradėtumėte.\n\nLoyalty Card Locker leidžia Jums visada nešiotis lojalumo kortelių informaciją savo telefone ar planšetėje, taip jos visada pasiekiamos.
diff --git a/app/src/main/res/values-nb-rNO/strings.xml b/app/src/main/res/values-nb-rNO/strings.xml
index 7fe31e5d9..b70fe8926 100644
--- a/app/src/main/res/values-nb-rNO/strings.xml
+++ b/app/src/main/res/values-nb-rNO/strings.xml
@@ -1,6 +1,5 @@
- Kundekortknippe
Legg til
Du har ingen kundekort for øyeblikket. Klikk på \"+\" (pluss)-knappen øverst for å komme igang.\n\nDa har du dem alltid hendig.
Butikk
diff --git a/app/src/main/res/values-night/colors.xml b/app/src/main/res/values-night/colors.xml
index 766606060..96cf9aace 100644
--- a/app/src/main/res/values-night/colors.xml
+++ b/app/src/main/res/values-night/colors.xml
@@ -2,9 +2,9 @@
- #3f51b5
- #757de8
- #002984
+ #B53F3F
+ #E87575
+ #840000
#ffc107
#fff350
#c79100
diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml
index ba0c1e436..dd7af601e 100644
--- a/app/src/main/res/values-nl/strings.xml
+++ b/app/src/main/res/values-nl/strings.xml
@@ -1,7 +1,6 @@
- Klantenkaartkluis
Zoeken
Toevoegen
diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml
index 371633ce2..8971c1cd4 100644
--- a/app/src/main/res/values-pl/strings.xml
+++ b/app/src/main/res/values-pl/strings.xml
@@ -1,7 +1,6 @@
- Loyalty Card Keychain
Szukaj
Dodaj
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index 748fe2b63..8dc56490e 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -1,7 +1,6 @@
- Карты лояльности
Поиск
Добавить карту
diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml
index 76b43f11d..d4150efef 100644
--- a/app/src/main/res/values-sk/strings.xml
+++ b/app/src/main/res/values-sk/strings.xml
@@ -1,7 +1,6 @@
- Vernostné karty
Pridať
Zatiaľ nemáte žiadne vernostné karty. Kliknite na tlačidlo \"+\" (plus) vyššie a začnite.\n\nAplikácia Vernostné karty umožňuje nosiť svoje vernostné karty v telefóne, kde sú vždy na dosah.
diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml
index d322cfdb7..2dbb716b9 100644
--- a/app/src/main/res/values-sl/strings.xml
+++ b/app/src/main/res/values-sl/strings.xml
@@ -1,7 +1,6 @@
- Kartice zvestobe
Dodaj
Trenutno nimate shranjene nobene kartice zvestobe. Kliknite \"+\" (plus) na vrhu, da jih dodate.\n\n Aplikacija Kartice zvestobe Vam omogoča, da imate kartice zvestobe shranjene na Vašem telefonu in vedno v dosegu roke.
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
index 19c265c60..06b895547 100644
--- a/app/src/main/res/values/colors.xml
+++ b/app/src/main/res/values/colors.xml
@@ -1,9 +1,9 @@
- #3f51b5
- #757de8
- #002984
+ #B53F3F
+ #E87575
+ #840000
#ffc107
#fff350
#c79100
diff --git a/app/src/main/res/values/constants.xml b/app/src/main/res/values/constants.xml
index 7ab3b26e4..45c05623b 100644
--- a/app/src/main/res/values/constants.xml
+++ b/app/src/main/res/values/constants.xml
@@ -1,5 +1,5 @@
- https://github.com/brarcher/loyalty-card-locker/releases
- https://github.com/brarcher/loyalty-card-locker
+ https://github.com/TheLastProject/Catima/releases
+ https://github.com/TheLastProject/Catima
\ No newline at end of file
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index b01f26dc2..207178c93 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -1,12 +1,12 @@
- Loyalty Card Keychain
+ Catima
Search
Add
- You don\'t have any loyalty cards at the moment. Click the "+" (plus) button up top to get started.\n\nLoyalty Card Locker lets you carry your loyalty cards on your phone, so they are always within reach.
- No loyalty cards match the search filter. Please try some different terms.
+ You don\'t have any cards at the moment. Click the "+" (plus) button up top to get started.\n\nCatima lets you carry your loyalty cards on your phone, so they are always within reach.
+ No cards match the search filter. Please try some different terms.
Store
Note
@@ -24,15 +24,15 @@
Confirm
Block Rotation
Unblock Rotation
- Remove Loyalty Card
+ Remove Card
Please confirm that you want to delete this card.
OK
Copy ID to clipboard
Share
Send…
Added shortcut
- Edit Loyalty Card
- Add Loyalty Card
+ Edit Card
+ Add Card
Scan Card\'s Barcode
Card Shortcut
There are no cards, add one first
@@ -65,7 +65,8 @@
Use external application
About
- Copyright 2016-%d Branden Archer
+ Copyright 2019-%d Sylvia van Os.
+ Based on Loyalty Card Locker, copyright 2016-2020 Branden Archer.
Licensed under the GPLv3.
About %s
Version: %s
@@ -81,7 +82,7 @@
Thumbnail for card
Start Intro
- Welcome to Loyalty Card Keychain\n
+ Welcome to Catima\n
Manage your barcode-based store/loyalty cards on your phone!\n\n
Adding Cards\n
Add a new card by touching the plus from the card list.\n\n
@@ -125,10 +126,10 @@
Lock barcode orientation
pref_lock_barcode_orientation
- Import loyalty card
- I want to share a loyalty card with you
- brarcher.github.io
- /loyalty-card-locker/share
+ Import into Catima
+ I want to share a card with you
+ thelastproject.github.io
+ /Catima/share
Successfully imported loyalty card data
Successfully exported loyalty card data
diff --git a/docs/README.md b/docs/README.md
index 289e6050a..bc769d05c 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -1,9 +1,9 @@
-# Loyalty Card Keychain
-[](https://travis-ci.org/brarcher/loyalty-card-locker)
+# Catima
+[](https://travis-ci.org/TheLastProject/Catima)
-
-
-
+
+
+
Stores all of your store loyalty cards on your phone, removing the need to carry them around. Currently the following barcode types are supported:
@@ -22,13 +22,13 @@ Stores all of your store loyalty cards on your phone, removing the need to carry
# Screenshots
-[
](https://github.com/brarcher/loyalty-card-locker/raw/master/metadata/en-US/images/phoneScreenshots/screenshot-01.png)
-[
](https://github.com/brarcher/loyalty-card-locker/raw/master/metadata/en-US/images/phoneScreenshots/screenshot-03.png)
-[
](https://github.com/brarcher/loyalty-card-locker/raw/master/metadata/en-US/images/phoneScreenshots/screenshot-02.png)
+[
](https://github.com/TheLastProject/Catima/raw/master/metadata/en-US/images/phoneScreenshots/screenshot-01.png)
+[
](https://github.com/TheLastProject/Catima/raw/master/metadata/en-US/images/phoneScreenshots/screenshot-03.png)
+[
](https://github.com/TheLastProject/Catima/raw/master/metadata/en-US/images/phoneScreenshots/screenshot-02.png)
-[
](https://github.com/brarcher/loyalty-card-locker/raw/master/metadata/en-US/images/phoneScreenshots/screenshot-04.png)
-[
](https://github.com/brarcher/loyalty-card-locker/raw/master/metadata/en-US/images/phoneScreenshots/screenshot-05.png)
-[
](https://github.com/brarcher/loyalty-card-locker/raw/master/metadata/en-US/images/phoneScreenshots/screenshot-06.png)
+[
](https://github.com/TheLastProject/Catima/raw/master/metadata/en-US/images/phoneScreenshots/screenshot-04.png)
+[
](https://github.com/TheLastProject/Catima/raw/master/metadata/en-US/images/phoneScreenshots/screenshot-05.png)
+[
](https://github.com/TheLastProject/Catima/raw/master/metadata/en-US/images/phoneScreenshots/screenshot-06.png)
# Building
@@ -47,7 +47,7 @@ Windows:
# Translating
-If you are interested in translating this application to another language, find the project listing on [Transifex](https://www.transifex.com/na-243/loyalty-card-locker).
+We are going to set up a translation platform soon, please check back later.
# Thanks
@@ -55,4 +55,4 @@ This application uses the following image:
- [Save](https://thenounproject.com/term/save/716011) by [Bernar Novalyi](https://thenounproject.com/bernar.novalyi)
# Note from Developer
-The developer is currently on hiatus from the project. Questions and pull requests may not be looked at for some time. Apologies in advance.
+This application is based on the great [Loyalty Card Locker](https://github.com/brarcher/loyalty-card-locker) by [Branden Archer](https://github.com/brarcher). This fork was created due to the original developer having stopped development of this app.
diff --git a/privacy-policy.md b/docs/privacy-policy.md
similarity index 92%
rename from privacy-policy.md
rename to docs/privacy-policy.md
index 2cb74dfee..a3e9a95a9 100644
--- a/privacy-policy.md
+++ b/docs/privacy-policy.md
@@ -1,6 +1,6 @@
# PRIVACY POLICY FOR LOYALTY CARD KEYCHAIN
-This privacy policy governs your use of the software application Loyalty Card Keychain (“Application”) for mobile devices
+This privacy policy governs your use of the software application Catima (“Application”) for mobile devices
that was created by Protect. The Application is designed to store and display barcodes.
# What information does the Application obtain and how is it used?
@@ -48,8 +48,8 @@ not delete such emails.
# Children
This Application is not used to knowingly solicit data from or market to children under the age of 13. If a parent or
-guardian becomes aware that his or her child has provided us with information without their consent, he or she should
-contact us at protect.github@gmail.com. We will delete such information from our files within a reasonable time.
+guardian becomes aware that his or her child has provided us with information without their consent, they should
+contact us at sylvia+googleplay@hackerchick.me. We will delete such information from our files within a reasonable time.
# Security
@@ -67,4 +67,4 @@ checking this history of this file in GitHub.
# Contact us
If you have any questions regarding privacy while using the Application, or have questions about our practices,
-please contact us via email at protect.github@gmail.com.
+please contact us via email at sylvia+googleplay@hackerchick.me.
diff --git a/docs/share.md b/docs/share.md
index c4d1ed8c6..2b9fe3267 100644
--- a/docs/share.md
+++ b/docs/share.md
@@ -1,10 +1,10 @@
-# Shared Loyalty Card
+# Shared Card
-Someone wants to share a loyalty card with you. To import this loyalty card, you will first need to install the Loyalty Card Locker app. It is free, Open Source and contains no ads.
+Someone wants to share a card with you. To import this card, you will first need to install the Catima app. It is free, Open Source and contains no ads.
-
-
-
+
+
+
-After installing the app, just click the link you were given again and choose "Import loyalty card".
+After installing the app, just click the link you were given again and choose "Import into Catima".