-
Notifications
You must be signed in to change notification settings - Fork 4
/
LocalizableStrings.m
49 lines (47 loc) · 2.4 KB
/
LocalizableStrings.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// LocalizableStrings.m
// MacGPGME
//
// Created by Gordon Worley
//
//
// Copyright (C) 2001-2006 Mac GPG Project.
//
// This code is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License as published by the Free
// Software Foundation; either version 2.1 of the License, or (at your option)
// any later version.
//
// This code is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
// details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program; if not, visit <http://www.gnu.org/> or write to the
// Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
// MA 02111-1307, USA.
//
// More info at <http://macgpg.sourceforge.net/>
//
#include <MacGPGME/LocalizableStrings.h>
NSString * const GPGUnknownString = @"GPGUnknownString";
NSString * const GPGValidityUndefinedString = @"GPGValidityUndefinedString";
NSString * const GPGValidityNeverString = @"GPGValidityNeverString";
NSString * const GPGValidityMarginalString = @"GPGValidityMarginalString";
NSString * const GPGValidityFullString = @"GPGValidityFullString";
NSString * const GPGValidityUltimateString = @"GPGValidityUltimateString";
NSString * const GPGNoAlgorithmString = @"GPGNoAlgorithmString";
NSString * const GPGIDEAAlgorithmString = @"GPGIDEAAlgorithmString";
NSString * const GPGTripleDESAlgorithmString = @"GPGTripleDESAlgorithmString";
NSString * const GPGCAST5AlgorithmString = @"GPGCAST5AlgorithmString";
NSString * const GPGBlowfishAlgorithmString = @"GPGBlowfishAlgorithmString";
NSString * const GPGSAFERSK128AlgorithmString = @"GPGSAFERSK128AlgorithmString";
NSString * const GPGDESSKAlgorithmString = @"GPGDESSKAlgorithmString";
NSString * const GPGAES128AlgorithmString = @"GPGAES128AlgorithmString";
NSString * const GPGAES192AlgorithmString = @"GPGAES192AlgorithmString";
NSString * const GPGAES256AlgorithmString = @"GPGAES256AlgorithmString";
NSString * const GPGTwoFishAlgorithmString = @"GPGTwoFishAlgorithmString";
NSString * const GPGSkipjackAlgorithmString = @"GPGSkipjackAlgorithmString";
NSString * const GPGTwoFishOldAlgorithmString = @"GPGTwoFishOldAlgorithm";
NSString * const GPGDummyAlgorithmString = @"GPGDummyAlgorithm";