Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
bitmask-vpn
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julian Merlin
bitmask-vpn
Commits
d9c543af
Commit
d9c543af
authored
4 years ago
by
kwadronaut
Browse files
Options
Downloads
Patches
Plain Diff
swap 3 dots for ellipsis
parent
f73c1f22
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
gui/i18n/base.ts
+5
-5
5 additions, 5 deletions
gui/i18n/base.ts
gui/qml/AboutDialog.qml
+1
-1
1 addition, 1 deletion
gui/qml/AboutDialog.qml
gui/qml/main.qml
+6
-6
6 additions, 6 deletions
gui/qml/main.qml
with
12 additions
and
12 deletions
gui/i18n/base.ts
+
5
−
5
View file @
d9c543af
...
...
@@ -176,7 +176,7 @@ Do you want to donate now?</source>
<
message
>
<
location
filename
=
"
../qml/main.qml
"
line
=
"
171
"
/>
<
location
filename
=
"
../qml/main.qml
"
line
=
"
273
"
/>
<
source
>
Checking
status
...
<
/source
>
<
source
>
Checking
status
…
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
...
...
@@ -201,22 +201,22 @@ Do you want to donate now?</source>
<
/message
>
<
message
>
<
location
filename
=
"
../qml/main.qml
"
line
=
"
326
"
/>
<
source
>
Help
...
<
/source
>
<
source
>
Help
…
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../qml/main.qml
"
line
=
"
316
"
/>
<
source
>
Donate
...
<
/source
>
<
source
>
Donate
…
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../qml/main.qml
"
line
=
"
308
"
/>
<
source
>
About
...
<
/source
>
<
source
>
About
…
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../qml/main.qml
"
line
=
"
335
"
/>
<
source
>
Report
a
bug
...
<
/source
>
<
source
>
Report
a
bug
…
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
...
...
This diff is collapsed.
Click to expand it.
gui/qml/AboutDialog.qml
+
1
−
1
View file @
d9c543af
...
...
@@ -11,7 +11,7 @@ MessageDialog {
var
_name
=
ctx
?
ctx
.
appName
:
"
vpn
"
var
_provider
=
ctx
?
ctx
.
provider
:
"
unknown
"
var
_donateURL
=
ctx
?
ctx
.
donateURL
:
""
var
_tosURL
=
ctx
?
ctx
.
tosURL
:
"
...
"
var
_tosURL
=
ctx
?
ctx
.
tosURL
:
"
…
"
var
_donateTXT
=
""
if
(
_donateURL
)
{
//: donation text of the about dialog
...
...
This diff is collapsed.
Click to expand it.
gui/qml/main.qml
+
6
−
6
View file @
d9c543af
...
...
@@ -168,7 +168,7 @@ ApplicationWindow {
Component.onCompleted
:
{
icon
.
source
=
icons
[
"
off
"
]
tooltip
=
qsTr
(
"
Checking status
...
"
)
tooltip
=
qsTr
(
"
Checking status
…
"
)
console
.
debug
(
"
systray init completed
"
)
hide
()
if
(
systrayVisible
)
{
...
...
@@ -270,7 +270,7 @@ ApplicationWindow {
MenuItem
{
id
:
statusItem
text
:
qsTr
(
"
Checking status
...
"
)
text
:
qsTr
(
"
Checking status
…
"
)
enabled
:
false
}
...
...
@@ -305,7 +305,7 @@ ApplicationWindow {
MenuSeparator
{}
MenuItem
{
text
:
qsTr
(
"
About
...
"
)
text
:
qsTr
(
"
About
…
"
)
onTriggered
:
{
about
.
visible
=
true
}
...
...
@@ -313,7 +313,7 @@ ApplicationWindow {
MenuItem
{
id
:
donateItem
text
:
qsTr
(
"
Donate
...
"
)
text
:
qsTr
(
"
Donate
…
"
)
visible
:
ctx
?
ctx
.
donateURL
:
false
onTriggered
:
{
donate
.
visible
=
true
...
...
@@ -323,7 +323,7 @@ ApplicationWindow {
MenuSeparator
{}
MenuItem
{
text
:
qsTr
(
"
Help
...
"
)
text
:
qsTr
(
"
Help
…
"
)
onTriggered
:
{
console
.
debug
(
Qt
.
resolvedUrl
(
ctx
.
helpURL
))
...
...
@@ -332,7 +332,7 @@ ApplicationWindow {
}
MenuItem
{
text
:
qsTr
(
"
Report a bug
...
"
)
text
:
qsTr
(
"
Report a bug
…
"
)
onTriggered
:
{
Qt
.
openUrlExternally
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment