Skip to content

Commit

Permalink
text changes
Browse files Browse the repository at this point in the history
  • Loading branch information
GhostofGeeeee committed Dec 6, 2023
1 parent c66293d commit 2b25349
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions lib/python/Screens/InfoBarGenerics.py
Original file line number Diff line number Diff line change
Expand Up @@ -3913,7 +3913,7 @@ def startInstantRecording(self, limitEvent=False):
end = info["end"]
else:
if limitEvent:
self.session.open(MessageBox, _("No event info found, recording indefinitely."), MessageBox.TYPE_INFO)
self.session.open(MessageBox, _("No event info found, recording default is indefinitely."), MessageBox.TYPE_INFO)

if isinstance(serviceref, eServiceReference):
serviceref = ServiceReference(serviceref)
Expand Down Expand Up @@ -3947,11 +3947,11 @@ def startInstantRecording(self, limitEvent=False):
if recording.setAutoincreaseEnd():
self.session.nav.RecordTimer.record(recording)
self.recording.append(recording)
self.session.open(MessageBox, _("Record time limited due to conflicting timer %s") % name_date, MessageBox.TYPE_INFO)
self.session.open(MessageBox, _("Record time limited due to conflicting timer:\n %s") % name_date, MessageBox.TYPE_INFO)
else:
self.session.open(MessageBox, _("Could not record due to conflicting timer %s") % name, MessageBox.TYPE_INFO)
self.session.open(MessageBox, _("Could not record due to conflicting timer:\n %s") % name, MessageBox.TYPE_INFO)
else:
self.session.open(MessageBox, _("Could not record due to invalid service %s") % serviceref, MessageBox.TYPE_INFO)
self.session.open(MessageBox, _("Could not record due to invalid service:\n %s") % serviceref, MessageBox.TYPE_INFO)
recording.autoincrease = False

def startRecordingCurrentEvent(self):
Expand Down
8 changes: 4 additions & 4 deletions po/enigma2.pot
Original file line number Diff line number Diff line change
Expand Up @@ -4900,11 +4900,11 @@ msgid "Could not open the file %s!"
msgstr ""

#, python-format
msgid "Could not record due to conflicting timer %s"
msgid "Could not record due to conflicting timer:\n %s"
msgstr ""

#, python-format
msgid "Could not record due to invalid service %s"
msgid "Could not record due to invalid service:\n %s"
msgstr ""

#, python-format
Expand Down Expand Up @@ -11578,7 +11578,7 @@ msgstr ""
msgid "No error"
msgstr ""

msgid "No event info found, recording indefinitely."
msgid "No event info found, recording default is indefinitely."
msgstr ""

msgid "No fast winding possible yet.. but you can use the number buttons to skip forward/backward!"
Expand Down Expand Up @@ -13765,7 +13765,7 @@ msgid "Record started! Stopping time shift now ..."
msgstr ""

#, python-format
msgid "Record time limited due to conflicting timer %s"
msgid "Record time limited due to conflicting timer:\n %s"
msgstr ""

msgid "Record write error (no space on disk?)"
Expand Down

0 comments on commit 2b25349

Please sign in to comment.