mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-03 11:12:40 +00:00
Extract TextSecure strings for i18n.
1) Change all instances which use concatenation to build strings with variables in them to use string formatting instead. 2) Extract all string literals from layouts and menus into strings.xml 3) Extract all string literals from code into strings.xml
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/**
|
||||
/**
|
||||
* Copyright (C) 2011 Whisper Systems
|
||||
*
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
@@ -10,7 +10,7 @@
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
@@ -20,17 +20,17 @@ package org.thoughtcrime.securesms.protocol;
|
||||
* Prefixes for identifying encrypted message types. In hindsight, seems
|
||||
* like these could have been DB columns or a single DB column with a bitmask
|
||||
* or something.
|
||||
*
|
||||
*
|
||||
* @author Moxie Marlinspike
|
||||
*/
|
||||
|
||||
public class Prefix {
|
||||
|
||||
public static final String KEY_EXCHANGE = "?TextSecureKeyExchange";
|
||||
public static final String SYMMETRIC_ENCRYPT = "?TextSecureLocalEncrypt";
|
||||
public static final String ASYMMETRIC_ENCRYPT = "?TextSecureAsymmetricEncrypt";
|
||||
public static final String ASYMMETRIC_LOCAL_ENCRYPT = "?TextSecureAsymmetricLocalEncrypt";
|
||||
public static final String PROCESSED_KEY_EXCHANGE = "?TextSecureKeyExchangd";
|
||||
|
||||
public static final String KEY_EXCHANGE = "?TextSecureKeyExchange";
|
||||
public static final String SYMMETRIC_ENCRYPT = "?TextSecureLocalEncrypt";
|
||||
public static final String ASYMMETRIC_ENCRYPT = "?TextSecureAsymmetricEncrypt";
|
||||
public static final String ASYMMETRIC_LOCAL_ENCRYPT = "?TextSecureAsymmetricLocalEncrypt";
|
||||
public static final String PROCESSED_KEY_EXCHANGE = "?TextSecureKeyExchangd";
|
||||
public static final String STALE_KEY_EXCHANGE = "?TextSecureKeyExchangs";
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user