Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
liberty
tunnel
liberty-tunnel-ios
Commits
1028832b
Commit
1028832b
authored
Aug 16, 2018
by
Davide De Rosa
Browse files
Fix inconsistent string/SwiftGen format
parent
4db7e9ac
Changes
2
Hide whitespace changes
Inline
Side-by-side
PIA VPN/SwiftGen+Strings.swift
View file @
1028832b
...
...
@@ -47,6 +47,15 @@ internal enum L10n {
internal
static
let
placeholder
=
L10n
.
tr
(
"Localizable"
,
"account.email.placeholder"
)
}
internal
enum
ExpiryDate
{
/// Your plan has expired.
internal
static
let
expired
=
L10n
.
tr
(
"Localizable"
,
"account.expiry_date.expired"
)
/// Your plan will expire on %@.
internal
static
func
information
(
_
p1
:
String
)
->
String
{
return
L10n
.
tr
(
"Localizable"
,
"account.expiry_date.information"
,
p1
)
}
}
internal
enum
Eye
{
/// Tap the eye icon to reveal or conceal your password.
internal
static
let
footer
=
L10n
.
tr
(
"Localizable"
,
"account.eye.footer"
)
...
...
@@ -57,14 +66,6 @@ internal enum L10n {
internal
static
let
footer
=
L10n
.
tr
(
"Localizable"
,
"account.other.footer"
)
}
internal
enum
ExpiryDate
{
/// Your plan will expire on %@.
internal
static
func
information
(
_
p1
:
String
)
->
String
{
return
L10n
.
tr
(
"Localizable"
,
"account.expiry.date.information"
,
p1
)
}
internal
static
let
expired
=
L10n
.
tr
(
"Localizable"
,
"account.expiry.date.expired"
)
}
internal
enum
Password
{
/// Password
internal
static
let
caption
=
L10n
.
tr
(
"Localizable"
,
"account.password.caption"
)
...
...
PIA VPN/en.lproj/Localizable.strings
View file @
1028832b
...
...
@@ -89,8 +89,8 @@
"account.accessibility.eye" = "Eye icon";
"account.accessibility.eye.hint.reveal" = "Tap to reveal password";
"account.accessibility.eye.hint.conceal" = "Tap to conceal password";
"account.expiry
.
date.information" = "Your plan will expire on %@.";
"account.expiry
.
date.expired" = "Your plan has expired.";
"account.expiry
_
date.information" = "Your plan will expire on %@.";
"account.expiry
_
date.expired" = "Your plan has expired.";
// SETTINGS
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment