Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
439e8974
Commit
439e8974
authored
Feb 14, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(ui/views/App/Settings/SettingsNetwork): view in progress
parent
dd8c404e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
71 additions
and
2 deletions
+71
-2
en.ts
linphone-desktop/assets/languages/en.ts
+16
-0
fr.ts
linphone-desktop/assets/languages/fr.ts
+17
-1
TabContainer.qml
linphone-desktop/ui/modules/Common/Form/Tab/TabContainer.qml
+1
-1
SettingsNetwork.qml
linphone-desktop/ui/views/App/Settings/SettingsNetwork.qml
+37
-0
No files found.
linphone-desktop/assets/languages/en.ts
View file @
439e8974
...
...
@@ -675,6 +675,22 @@ Server url not configured.</translation>
<
source
>
videoRtpStreamFieldLabel
<
/source
>
<
translation
>
Video
RTP
Stream
<
/translation
>
<
/message
>
<
message
>
<
source
>
bandwidthControlTitle
<
/source
>
<
translation
>
Bandwidth
Control
<
/translation
>
<
/message
>
<
message
>
<
source
>
downloadSpeedLimitLabel
<
/source
>
<
translation
>
Dowload
speed
limit
in
Kbit
/
sec
<
/translation
>
<
/message
>
<
message
>
<
source
>
uploadSpeedLimitLabel
<
/source
>
<
translation
>
Upload
speed
limit
in
Kbit
/
sec
<
/translation
>
<
/message
>
<
message
>
<
source
>
enableAdaptiveRateControlLabel
<
/source
>
<
translation
>
Enable
adaptive
rate
control
<
/translation
>
<
/message
>
<
/context
>
<
context
>
<
name
>
SettingsWindow
<
/name
>
...
...
linphone-desktop/assets/languages/fr.ts
View file @
439e8974
...
...
@@ -615,7 +615,7 @@ Url du serveur non configurée.</translation>
<
/message
>
<
message
>
<
source
>
networkProtocolAndPortsTitle
<
/source
>
<
translation
>
Protocol
r
é
seau
et
ports
<
/translation
>
<
translation
>
Protocol
e
r
é
seau
et
ports
<
/translation
>
<
/message
>
<
message
>
<
source
>
sipUdpPortLabel
<
/source
>
...
...
@@ -685,6 +685,22 @@ Url du serveur non configurée.</translation>
<
source
>
videoRtpStreamFieldLabel
<
/source
>
<
translation
>
Flux
RTP
vid
é
o
<
/translation
>
<
/message
>
<
message
>
<
source
>
bandwidthControlTitle
<
/source
>
<
translation
>
Gestion
de
la
bande
passante
<
/translation
>
<
/message
>
<
message
>
<
source
>
downloadSpeedLimitLabel
<
/source
>
<
translation
>
Limite
de
d
é
bit
descendant
en
Kbit
/
sec
<
/translation
>
<
/message
>
<
message
>
<
source
>
uploadSpeedLimitLabel
<
/source
>
<
translation
>
Limite
de
d
é
bit
montant
en
Kbit
/
sec
<
/translation
>
<
/message
>
<
message
>
<
source
>
enableAdaptiveRateControlLabel
<
/source
>
<
translation
>
Activer
le
contr
ô
le
de
d
é
bit
adaptif
<
/translation
>
<
/message
>
<
/context
>
<
context
>
<
name
>
SettingsWindow
<
/name
>
...
...
linphone-desktop/ui/modules/Common/Form/Tab/TabContainer.qml
View file @
439e8974
import
QtQuick
2.7
import
QtQuick
.
Controls
2.0
import
QtQuick
.
Layouts
1.3
import
QtQuick
.
Controls
2.1
import
Common
1.0
import
Common
.
Styles
1.0
...
...
linphone-desktop/ui/views/App/Settings/SettingsNetwork.qml
View file @
439e8974
...
...
@@ -281,5 +281,42 @@ TabContainer {
}
}
}
// -------------------------------------------------------------------------
// Bandwidth control.
// -------------------------------------------------------------------------
Form
{
title
:
qsTr
(
'
bandwidthControlTitle
'
)
width
:
parent
.
width
FormLine
{
FormGroup
{
label
:
qsTr
(
'
downloadSpeedLimitLabel
'
)
NumericField
{
minValue
:
0
maxValue
:
100000
}
}
FormGroup
{
label
:
qsTr
(
'
uploadSpeedLimitLabel
'
)
NumericField
{
minValue
:
0
maxValue
:
100000
}
}
}
FormLine
{
FormGroup
{
label
:
qsTr
(
'
enableAdaptiveRateControlLabel
'
)
Switch
{}
}
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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