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
f02d9054
Commit
f02d9054
authored
Jul 19, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(SettingsSipAccountsEdit): deal with errors
parent
1a31ab06
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
0 deletions
+31
-0
CHANGELOG.md
CHANGELOG.md
+1
-0
en.ts
assets/languages/en.ts
+12
-0
fr.ts
assets/languages/fr.ts
+12
-0
SettingsSipAccountsEdit.qml
ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml
+6
-0
No files found.
CHANGELOG.md
View file @
f02d9054
...
...
@@ -13,6 +13,7 @@
-
Add a
`Logs`
menu entry in
`Settings Window`
, it provides send, remove, activate buttons...
-
Supports EXIF orientation for file transfer images preview.
-
Echo canceller supports 48kHz.
-
Better GUI when a proxy config is modified in
`Settings Window`
.
### Fixes
...
...
assets/languages/en.ts
View file @
f02d9054
...
...
@@ -1319,6 +1319,18 @@ your friend's SIP address or username.</translation>
<
source
>
confirm
<
/source
>
<
translation
>
CONFIRM
<
/translation
>
<
/message
>
<
message
>
<
source
>
invalidSipAddress
<
/source
>
<
translation
>
Invalid
sip
address
.
<
/translation
>
<
/message
>
<
message
>
<
source
>
invalidServerAddress
<
/source
>
<
translation
>
Invalid
server
address
.
<
/translation
>
<
/message
>
<
message
>
<
source
>
invalidRoute
<
/source
>
<
translation
>
Invalid
route
.
<
/translation
>
<
/message
>
<
/context
>
<
context
>
<
name
>
SettingsUi
<
/name
>
...
...
assets/languages/fr.ts
View file @
f02d9054
...
...
@@ -1317,6 +1317,18 @@ Cliquez ici : <a href="%1">%1</a>
<
source
>
confirm
<
/source
>
<
translation
>
CONFIRMER
<
/translation
>
<
/message
>
<
message
>
<
source
>
invalidSipAddress
<
/source
>
<
translation
>
Adresse
sip
invalide
.
<
/translation
>
<
/message
>
<
message
>
<
source
>
invalidServerAddress
<
/source
>
<
translation
>
Adresse
du
serveur
invalide
.
<
/translation
>
<
/message
>
<
message
>
<
source
>
invalidRoute
<
/source
>
<
translation
>
Route
invalide
.
<
/translation
>
<
/message
>
<
/context
>
<
context
>
<
name
>
SettingsUi
<
/name
>
...
...
ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml
View file @
f02d9054
...
...
@@ -52,6 +52,8 @@ DialogPlus {
TextField
{
id
:
sipAddress
error
:
dialog
.
_sipAddressOk
?
''
:
qsTr
(
'
invalidSipAddress
'
)
onTextChanged
:
Logic
.
handleSipAddressChanged
(
text
)
}
}
...
...
@@ -64,6 +66,8 @@ DialogPlus {
TextField
{
id
:
serverAddress
error
:
dialog
.
_serverAddressOk
?
''
:
qsTr
(
'
invalidServerAddress
'
)
onTextChanged
:
Logic
.
handleServerAddressChanged
(
text
)
}
}
...
...
@@ -101,6 +105,8 @@ DialogPlus {
TextField
{
id
:
route
error
:
dialog
.
_routeOk
?
''
:
qsTr
(
'
invalidRoute
'
)
onTextChanged
:
Logic
.
handleRouteChanged
(
text
)
}
}
...
...
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