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
3881bcac
Commit
3881bcac
authored
Jun 27, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(Incall): add tooltips on recording and screenshot buttons
parent
fa149d22
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
81 additions
and
1 deletion
+81
-1
en.ts
assets/languages/en.ts
+27
-0
fr.ts
assets/languages/fr.ts
+27
-0
Incall.qml
ui/views/App/Calls/Incall.qml
+12
-0
IncallFullscreenWindow.qml
ui/views/App/Calls/IncallFullscreenWindow.qml
+15
-1
No files found.
assets/languages/en.ts
View file @
3881bcac
...
@@ -829,6 +829,33 @@ Server url not configured.</translation>
...
@@ -829,6 +829,33 @@ Server url not configured.</translation>
<
source
>
callNotSecured
<
/source
>
<
source
>
callNotSecured
<
/source
>
<
translation
>
Call
not
encrypted
.
<
/translation
>
<
translation
>
Call
not
encrypted
.
<
/translation
>
<
/message
>
<
/message
>
<
message
>
<
source
>
takeSnapshotLabel
<
/source
>
<
translation
>
Take
a
snapshot
.
<
/translation
>
<
/message
>
<
message
>
<
source
>
startRecordingLabel
<
/source
>
<
translation
>
Start
recording
.
<
/translation
>
<
/message
>
<
message
>
<
source
>
stopRecordingLabel
<
/source
>
<
translation
>
Stop
recording
.
<
/translation
>
<
/message
>
<
/context
>
<
context
>
<
name
>
IncallFullscreenWindow
<
/name
>
<
message
>
<
source
>
takeSnapshotLabel
<
/source
>
<
translation
>
Take
a
snapshot
.
<
/translation
>
<
/message
>
<
message
>
<
source
>
startRecordingLabel
<
/source
>
<
translation
>
Start
recording
.
<
/translation
>
<
/message
>
<
message
>
<
source
>
stopRecordingLabel
<
/source
>
<
translation
>
Stop
recording
.
<
/translation
>
<
/message
>
<
/context
>
<
/context
>
<
context
>
<
context
>
<
name
>
InviteFriends
<
/name
>
<
name
>
InviteFriends
<
/name
>
...
...
assets/languages/fr.ts
View file @
3881bcac
...
@@ -829,6 +829,33 @@ Url du serveur non configurée.</translation>
...
@@ -829,6 +829,33 @@ Url du serveur non configurée.</translation>
<
source
>
callNotSecured
<
/source
>
<
source
>
callNotSecured
<
/source
>
<
translation
>
Appel
non
chiffr
é
.
<
/translation
>
<
translation
>
Appel
non
chiffr
é
.
<
/translation
>
<
/message
>
<
/message
>
<
message
>
<
source
>
takeSnapshotLabel
<
/source
>
<
translation
>
Prendre
une
capture
d
&
apos
;
é
cran
.
<
/translation
>
<
/message
>
<
message
>
<
source
>
startRecordingLabel
<
/source
>
<
translation
>
Commencer
un
enregistrement
.
<
/translation
>
<
/message
>
<
message
>
<
source
>
stopRecordingLabel
<
/source
>
<
translation
>
Stopper
un
enregistrement
.
<
/translation
>
<
/message
>
<
/context
>
<
context
>
<
name
>
IncallFullscreenWindow
<
/name
>
<
message
>
<
source
>
takeSnapshotLabel
<
/source
>
<
translation
>
Prendre
une
capture
d
&
apos
;
é
cran
.
<
/translation
>
<
/message
>
<
message
>
<
source
>
startRecordingLabel
<
/source
>
<
translation
>
Commencer
un
enregistrement
.
<
/translation
>
<
/message
>
<
message
>
<
source
>
stopRecordingLabel
<
/source
>
<
translation
>
Stopper
un
enregistrement
.
<
/translation
>
<
/message
>
<
/context
>
<
/context
>
<
context
>
<
context
>
<
name
>
InviteFriends
<
/name
>
<
name
>
InviteFriends
<
/name
>
...
...
ui/views/App/Calls/Incall.qml
View file @
3881bcac
...
@@ -165,9 +165,15 @@ Rectangle {
...
@@ -165,9 +165,15 @@ Rectangle {
visible
:
incall
.
call
.
videoEnabled
visible
:
incall
.
call
.
videoEnabled
onClicked
:
incall
.
call
.
takeSnapshot
()
onClicked
:
incall
.
call
.
takeSnapshot
()
TooltipArea
{
text
:
qsTr
(
'
takeSnapshotLabel
'
)
}
}
}
ActionSwitch
{
ActionSwitch
{
id
:
recordingSwitch
enabled
:
incall
.
call
.
recording
enabled
:
incall
.
call
.
recording
icon
:
'
record
'
icon
:
'
record
'
useStates
:
false
useStates
:
false
...
@@ -178,6 +184,12 @@ Rectangle {
...
@@ -178,6 +184,12 @@ Rectangle {
?
call
.
startRecording
()
?
call
.
startRecording
()
:
call
.
stopRecording
()
:
call
.
stopRecording
()
}
}
TooltipArea
{
text
:
!
recordingSwitch
.
enabled
?
qsTr
(
'
startRecordingLabel
'
)
:
qsTr
(
'
stopRecordingLabel
'
)
}
}
}
ActionButton
{
ActionButton
{
...
...
ui/views/App/Calls/IncallFullscreenWindow.qml
View file @
3881bcac
...
@@ -216,14 +216,28 @@ Window {
...
@@ -216,14 +216,28 @@ Window {
icon
:
'
screenshot
'
icon
:
'
screenshot
'
onClicked
:
call
.
takeSnapshot
()
onClicked
:
call
.
takeSnapshot
()
TooltipArea
{
text
:
qsTr
(
'
takeSnapshotLabel
'
)
}
}
}
ActionSwitch
{
ActionSwitch
{
id
:
recordingSwitch
enabled
:
call
.
recording
enabled
:
call
.
recording
icon
:
'
record
'
icon
:
'
record
'
useStates
:
false
useStates
:
false
onClicked
:
!
enabled
?
call
.
startRecording
()
:
call
.
stopRecording
()
onClicked
:
!
enabled
?
call
.
startRecording
()
:
call
.
stopRecording
()
TooltipArea
{
text
:
!
recordingSwitch
.
enabled
?
qsTr
(
'
startRecordingLabel
'
)
:
qsTr
(
'
stopRecordingLabel
'
)
}
}
}
ActionButton
{
ActionButton
{
...
...
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