Skip to content

Commit 6505f14

Browse files
committed
Change a tooltip descriptions
1 parent a4cbeed commit 6505f14

2 files changed

Lines changed: 17 additions & 10 deletions

File tree

po/hi.po

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ msgstr ""
183183
msgid "Remember Password"
184184
msgstr ""
185185

186+
#, fuzzy
186187
msgid "Password not entered, or it's incorrect. Unable to continue."
187188
msgstr "Password not entered, or it's incorrect. Unable to continue।"
188189

@@ -301,6 +302,7 @@ msgid "3. Click on the Next button and select the created cloud drive folder"
301302
msgstr ""
302303

303304
# Translation key: gnome_oa_chooser_desc
305+
#, fuzzy
304306
msgid ""
305307
"The created cloud drive folder can be found in the side panel of the file "
306308
"chooser dialog, in this form: username@service.com."
@@ -317,6 +319,7 @@ msgid ""
317319
msgstr ""
318320

319321
# Translation key: rclone_copy_cmd
322+
#, fuzzy
320323
msgid ""
321324
"Now, copy the command to set up Rclone using the side button and open the "
322325
"terminal app using the Ctrl+Alt+T keyboard shortcut or finding it in the "
@@ -346,6 +349,7 @@ msgid "Almost done!"
346349
msgstr ""
347350

348351
# Translation key: almost_done_desc
352+
#, fuzzy
349353
msgid ""
350354
"You've now created the cloud drive folder! Click on the Next button to "
351355
"complete the setup."
@@ -367,6 +371,7 @@ msgstr "समन्वयन फाइल निर्धारित करे
367371
msgid "Periodic saving file"
368372
msgstr "आवधिक फाइल सहेजना"
369373

374+
#, fuzzy
370375
msgid "Periodic saving file does not exist."
371376
msgstr "Periodic saving file does not exist।"
372377

@@ -386,6 +391,7 @@ msgid "Connect to the cloud storage"
386391
msgstr ""
387392

388393
# Translation key: connect_cloud_storage_desc
394+
#, fuzzy
389395
msgid ""
390396
"On another computer, open the Save Desktop app, and on this page, click on "
391397
"the \"Set up the sync file\" button and make the necessary settings. On this "
@@ -413,6 +419,7 @@ msgid "Bidirectional synchronization"
413419
msgstr ""
414420

415421
# Translation key: bidirectional_sync_desc
422+
#, fuzzy
416423
msgid ""
417424
"If enabled, and the sync interval and cloud drive folder are selected, the "
418425
"periodic saving information (interval, folder, and file name) from the other "

src/gui/window.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ def open_selected(source, res, data):
418418

419419
self.file_chooser = Gtk.FileDialog.new()
420420
self.file_chooser.set_modal(True)
421-
self.file_chooser.set_title(_("Import saved configuration"))
421+
self.file_chooser.set_title(_("Import from file"))
422422
self.file_filter = Gtk.FileFilter.new()
423423
self.file_filter.set_name(_("Save Desktop files"))
424424
self.file_filter.add_pattern('*.sd.tar.gz')
@@ -441,7 +441,7 @@ def import_selected(source, res, data):
441441

442442
self.file_chooser = Gtk.FileDialog.new()
443443
self.file_chooser.set_modal(True)
444-
self.file_chooser.set_title(_("Import saved configuration"))
444+
self.file_chooser.set_title(_("Import from folder"))
445445
self.file_chooser.select_folder(self, None, import_selected, None)
446446

447447
# Dialog for creating password for the config archive
@@ -631,14 +631,6 @@ def _cancel(self, w):
631631
for widget in [self.spinner, self.cancel_button, self.status_page]:
632632
self.status_box.remove(widget)
633633

634-
def _set_default_widgets_state(self):
635-
self.toolbarview.set_content(self.headapp)
636-
self.headerbar.set_title_widget(self.switcher_title)
637-
self.set_title("Save Desktop")
638-
self.apply_handler = self.break_point.connect("apply", self.__on_break_point_apply)
639-
if self.get_default_size()[0] < 400:
640-
self.switcher_bar.set_reveal(True)
641-
642634
# config has been saved action
643635
def done(self):
644636
self._send_notification()
@@ -706,6 +698,14 @@ def _back_to_main(self, w):
706698
for widget in widgets:
707699
self.status_box.remove(widget)
708700

701+
def _set_default_widgets_state(self):
702+
self.toolbarview.set_content(self.headapp)
703+
self.headerbar.set_title_widget(self.switcher_title)
704+
self.set_title("Save Desktop")
705+
self.apply_handler = self.break_point.connect("apply", self.__on_break_point_apply)
706+
if self.get_default_size()[0] < 400:
707+
self.switcher_bar.set_reveal(True)
708+
709709
# show message dialog in the error case
710710
def show_err_msg(self, error):
711711
error_str = str(error)

0 commit comments

Comments
 (0)