Commit a7ae7556 authored by Tijmen de Mes's avatar Tijmen de Mes

Added translatable string

parent 12496b05
...@@ -1056,7 +1056,7 @@ class BlinkSession(BlinkSessionBase): ...@@ -1056,7 +1056,7 @@ class BlinkSession(BlinkSessionBase):
self._terminate(reason=reason, error=True) self._terminate(reason=reason, error=True)
def _NH_SIPSessionDidEnd(self, notification): def _NH_SIPSessionDidEnd(self, notification):
self._terminate('Call ended' if notification.data.originator == 'local' else 'Call ended by remote') self._terminate(translate('sessions', 'Call ended') if notification.data.originator == 'local' else translate('sessions', 'Call ended by remote'))
def _NH_SIPSessionDidChangeHoldState(self, notification): def _NH_SIPSessionDidChangeHoldState(self, notification):
if notification.data.originator == 'remote': if notification.data.originator == 'remote':
......
...@@ -3568,6 +3568,16 @@ QToolButton:pressed { ...@@ -3568,6 +3568,16 @@ QToolButton:pressed {
</context> </context>
<context> <context>
<name>sessions</name> <name>sessions</name>
<message>
<location filename="../../blink/sessions.py" line="1108"/>
<source>Call ended</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../blink/sessions.py" line="1108"/>
<source>Call ended by remote</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="../../blink/sessions.py" line="1928"/> <location filename="../../blink/sessions.py" line="1928"/>
<source>Drop outside the conference to detach</source> <source>Drop outside the conference to detach</source>
......
...@@ -3718,6 +3718,16 @@ QToolButton:pressed { ...@@ -3718,6 +3718,16 @@ QToolButton:pressed {
<source>Transferring: %s/%s (%s%%)</source> <source>Transferring: %s/%s (%s%%)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="../../blink/sessions.py" line="1108"/>
<source>Call ended</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../blink/sessions.py" line="1108"/>
<source>Call ended by remote</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>switch_view_button</name> <name>switch_view_button</name>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment