Codebase list sugar-imageviewer-activity / 4b93452
Update upstream source from tag 'upstream/65' Update to upstream version '65' with Debian dir f358420457e5a8b4125d6d6e6529ae988d217c60 Jonas Smedegaard 4 years ago
33 changed file(s) with 94 addition(s) and 2246 deletion(s). Raw diff Collapse all Expand all
0 [flake8]
1
2 # E402 module level import not at top of file
3 # gi.require_version() is required before later imports
4
5 ignore = E402
181181 def _stop_scrolling(self):
182182 self._in_scrolling = False
183183 self.queue_draw()
184 self._scrolling_hid = None
184185 return False
185186
186187 def _start_scrolling(self):
1616
1717 # The sharing bits have been taken from ReadEtexts
1818
19 from __future__ import division
2019
2120 from sugar3.activity import activity
2221 import logging
4443 try:
4544 from gi.repository import SugarGestures
4645 GESTURES_AVAILABLE = True
47 except:
46 except ImportError:
4847 GESTURES_AVAILABLE = False
4948
5049 import collabwrapper
419418 self.next_image_button.props.sensitive = True
420419 self.previous_image_button.props.sensitive = True
421420
421 def get_data(self):
422 return None
423
424 def set_data(self, data):
425 pass
426
422427 def read_file(self, file_path):
423428 if self._object_id is None or self.shared_activity:
424429 # read_file is call because the canvas is visible
429434 self.activity_button.page.share.props.sensitive = True
430435
431436 tempfile = os.path.join(self.get_activity_root(), 'instance',
432 'tmp%i' % time.time())
437 'tmp%f' % time.time())
433438
434439 os.link(file_path, tempfile)
435440 self._tempfile = tempfile
502507 pass
503508 self.set_canvas(self.scrolled_window)
504509 self.scrolled_window.show_all()
510 self.list_set_sensitive(self._image_buttons, True)
505511 return False
506512
507513 def __file_transfered_bytes_cb(self, file, pspec):
511517 self._progress_alert.set_fraction(fraction)
512518
513519 def __buddy_joined_cb(self, collab, buddy):
514 logging.debug('__buddy_joined_cb %r', buddy)
520 logging.debug('__buddy_joined_cb %r', buddy.props.nick)
521 if self._tempfile is None:
522 return # we have nothing to share
515523 self._collab.send_file_file(buddy, self._tempfile, None)
516524
517525 def __joined_cb(self, collab):
0 65
1
2 * Port to Python 3 (Rahul Bothra),
3 * Update collabwrapper to favour TelepathyGLib (Aniket Mathur),
4 * Remove empty locale files (James Cameron),
5 * flake8 fix (James Cameron),
6 * Fix missing image buttons on join (James Cameron),
7 * Fix GLib.source_remove warning (James Cameron),
8 * Add missing get_data and set_data methods (James Cameron),
9 * Fix TypeError traceback on joining (James Cameron),
10 * Fix FileExistsError on repeated browse (James Cameron),
11
012 64
113
214 * Add README (Rudra Sadhu),
22 bundle_id = org.laptop.ImageViewerActivity
33 license = GPLv2+;GPLv3+
44 icon = activity-imageviewer
5 exec = sugar-activity ImageViewerActivity.ImageViewerActivity
5 exec = sugar-activity3 ImageViewerActivity.ImageViewerActivity
66 mime_types = image/bmp;image/gif;image/jpeg;image/png;image/tiff;image/svg+xml
7 activity_version = 64
7 activity_version = 65
88 summary = An easy way and fast way to see your images! You can also change the way your image looks with zoom, rotate, size change and so on.
99 tags = Media
1010 repository = https://github.com/sugarlabs/imageviewer-activity
6767 import socket
6868 from gettext import gettext as _
6969
70 import gi
71 gi.require_version('TelepathyGLib', '0.12')
7072 from gi.repository import GObject
7173 from gi.repository import Gio
7274 from gi.repository import GLib
75 from gi.repository import TelepathyGLib
7376 import dbus
74
75 from telepathy.interfaces import \
76 CHANNEL_INTERFACE, \
77 CHANNEL_INTERFACE_GROUP, \
78 CHANNEL_TYPE_TEXT, \
79 CHANNEL_TYPE_FILE_TRANSFER, \
80 CONN_INTERFACE_ALIASING, \
81 CHANNEL, \
82 CLIENT
83 from telepathy.constants import \
84 CHANNEL_GROUP_FLAG_CHANNEL_SPECIFIC_HANDLES, \
85 CONNECTION_HANDLE_TYPE_CONTACT, \
86 CHANNEL_TEXT_MESSAGE_TYPE_NORMAL, \
87 SOCKET_ADDRESS_TYPE_UNIX, \
88 SOCKET_ACCESS_CONTROL_LOCALHOST
89 from telepathy.client import Connection, Channel
77 from dbus import PROPERTIES_IFACE
78
79 CHANNEL_INTERFACE = TelepathyGLib.IFACE_CHANNEL
80 CHANNEL_INTERFACE_GROUP = TelepathyGLib.IFACE_CHANNEL_INTERFACE_GROUP
81 CHANNEL_TYPE_TEXT = TelepathyGLib.IFACE_CHANNEL_TYPE_TEXT
82 CHANNEL_TYPE_FILE_TRANSFER = TelepathyGLib.IFACE_CHANNEL_TYPE_FILE_TRANSFER
83 CONN_INTERFACE_ALIASING = TelepathyGLib.IFACE_CONNECTION_INTERFACE_ALIASING
84 CONN_INTERFACE = TelepathyGLib.IFACE_CONNECTION
85 CHANNEL = TelepathyGLib.IFACE_CHANNEL
86 CLIENT = TelepathyGLib.IFACE_CLIENT
87 CHANNEL_GROUP_FLAG_CHANNEL_SPECIFIC_HANDLES = \
88 TelepathyGLib.ChannelGroupFlags.CHANNEL_SPECIFIC_HANDLES
89 CONNECTION_HANDLE_TYPE_CONTACT = TelepathyGLib.HandleType.CONTACT
90 CHANNEL_TEXT_MESSAGE_TYPE_NORMAL = TelepathyGLib.ChannelTextMessageType.NORMAL
91 SOCKET_ADDRESS_TYPE_UNIX = TelepathyGLib.SocketAddressType.UNIX
92 SOCKET_ACCESS_CONTROL_LOCALHOST = TelepathyGLib.SocketAccessControl.LOCALHOST
9093
9194 from sugar3.presence import presenceservice
9295 from sugar3.activity.activity import SCOPE_PRIVATE
147150
148151 The `incoming_file` signal is emitted when a file transfer is
149152 received. The signal has two arguments. The first is a
150 :class:`sugar3.presence.filetransfer.IncomingFileTransfer`. The
151 second is the description.
153 :class:`IncomingFileTransfer`. The second is the description.
152154 '''
153155
154156 message = GObject.Signal('message', arg_types=[object, object])
275277 _logger.debug('_handle_ft_channel')
276278 ft = IncomingFileTransfer(conn, path, props)
277279 if ft.description == ACTION_INIT_RESPONSE:
278 ft.connect('notify::state', self.__notify_ft_state_cb)
280 ft.connect('ready', self.__ready_cb)
279281 ft.accept_to_memory()
280282 else:
281283 desc = json.loads(ft.description)
282284 self.incoming_file.emit(ft, desc)
283285
284 def __notify_ft_state_cb(self, ft, pspec):
285 _logger.debug('__notify_ft_state_cb')
286 if ft.props.state == FT_STATE_COMPLETED and self._init_waiting:
287 stream = ft.props.output
286 def __ready_cb(self, ft, stream):
287 _logger.debug('__ready_cb')
288 if self._init_waiting:
288289 stream.close(None)
289290 # FIXME: The data prop seems to just be the raw pointer
290291 gbytes = stream.steal_as_bytes()
298299 '''Process a message when it is received.'''
299300 _logger.debug('__received_cb')
300301 action = msg.get('action')
301 if action == ACTION_INIT_REQUEST and self._leader:
302 data = self.activity.get_data()
303 if data is not None:
304 data = json.dumps(data)
305 OutgoingBlobTransfer(
306 buddy,
307 self.shared_activity.telepathy_conn,
308 data,
309 self.get_client_name(),
310 ACTION_INIT_RESPONSE,
311 ACTIVITY_FT_MIME)
302 if action == ACTION_INIT_REQUEST:
303 if self._leader:
304 data = self.activity.get_data()
305 if data is not None:
306 data = json.dumps(data)
307 OutgoingBlobTransfer(
308 buddy,
309 self.shared_activity.telepathy_conn,
310 data,
311 self.get_client_name(),
312 ACTION_INIT_RESPONSE,
313 ACTIVITY_FT_MIME)
312314 return
313315
314316 if buddy:
430432
431433 GObject Props:
432434 state (FT_STATE_*), current state of the transfer
433 transferred_bytes (int), number of bytes transfered so far
435 transferred_bytes (int), number of bytes transferred so far
434436 '''
435437
436438 def __init__(self):
459461 self.channel[CHANNEL_TYPE_FILE_TRANSFER].connect_to_signal(
460462 'InitialOffsetDefined', self.__initial_offset_defined_cb)
461463
462 channel_properties = self.channel[dbus.PROPERTIES_IFACE]
464 channel_properties = self.channel[PROPERTIES_IFACE]
463465
464466 props = channel_properties.GetAll(CHANNEL_TYPE_FILE_TRANSFER)
465467 self._state = props['State']
523525 it is a :class:`Gio.MemoryOutputStream`.
524526 '''
525527
528 ready = GObject.Signal('ready', arg_types=[object])
529
526530 def __init__(self, connection, object_path, props):
527531 _BaseFileTransfer.__init__(self)
528532
529 channel = Channel(connection.bus_name, object_path)
533 channel = {}
534 proxy = dbus.Bus().get_object(connection.bus_name, object_path)
535 channel[PROPERTIES_IFACE] = dbus.Interface(proxy, PROPERTIES_IFACE)
536 channel[CHANNEL] = dbus.Interface(proxy, CHANNEL)
537 channel[CHANNEL_TYPE_FILE_TRANSFER] = dbus.Interface(
538 proxy, CHANNEL_TYPE_FILE_TRANSFER)
530539 self.set_channel(channel)
531540
532541 self.connect('notify::state', self.__notify_state_cb)
558567 Accept the file transfer. Once the state is FT_STATE_OPEN, a
559568 :class:`Gio.MemoryOutputStream` accessible via the output prop.
560569 '''
570 self._destination_path = None
561571 self._accept()
562572
563573 def _accept(self):
597607 input_stream,
598608 Gio.OutputStreamSpliceFlags.CLOSE_SOURCE |
599609 Gio.OutputStreamSpliceFlags.CLOSE_TARGET,
600 GLib.PRIORITY_LOW, None, None, None)
610 GLib.PRIORITY_LOW, None, self.__splice_done_cb, None)
611
612 def __splice_done_cb(self, output_stream, res, user):
613 _logger.debug('__splice_done_cb')
614 self.ready.emit(self._destination_path or self._output_stream)
601615
602616 @GObject.Property
603617 def output(self):
645659 CHANNEL_TYPE_FILE_TRANSFER + '.Size': file_size,
646660 CHANNEL_TYPE_FILE_TRANSFER + '.ContentType': self._mime,
647661 CHANNEL_TYPE_FILE_TRANSFER + '.InitialOffset': 0}, signature='sv'))
648 self.set_channel(Channel(self._conn.bus_name, object_path))
662 channel = {}
663 proxy = dbus.Bus().get_object(self._conn.bus_name, object_path)
664 channel[PROPERTIES_IFACE] = dbus.Interface(proxy, PROPERTIES_IFACE)
665 channel[CHANNEL] = dbus.Interface(proxy, CHANNEL)
666 channel[CHANNEL_TYPE_FILE_TRANSFER] = dbus.Interface(
667 proxy, CHANNEL_TYPE_FILE_TRANSFER)
668 self.set_channel(channel)
649669
650670 channel_file_transfer = self.channel[CHANNEL_TYPE_FILE_TRANSFER]
651671 self._socket_address = channel_file_transfer.ProvideFile(
835855
836856 # Get the Telepathy Connection
837857 tp_name, tp_path = pservice.get_preferred_connection()
838 conn = Connection(tp_name, tp_path)
858 obj = dbus.Bus().get_object(tp_name, tp_path)
859 conn = dbus.Interface(obj, CONN_INTERFACE)
839860 group = self._text_chan[CHANNEL_INTERFACE_GROUP]
840861 my_csh = group.GetSelfHandle()
841862 if my_csh == cs_handle:
+0
-83
po/agr.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: agr\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.11.0\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-80
po/bg.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 # SOME DESCRIPTIVE TITLE.
5 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
6 # This file is distributed under the same license as the PACKAGE package.
7 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
8 # SOME DESCRIPTIVE TITLE.
9 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
10 # This file is distributed under the same license as the PACKAGE package.
11 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
12 #, fuzzy
13 msgid ""
14 msgstr ""
15 "Project-Id-Version: PACKAGE VERSION\n"
16 "Report-Msgid-Bugs-To: \n"
17 "POT-Creation-Date: 2012-09-27 14:57-0400\n"
18 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
19 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
20 "Language-Team: LANGUAGE <LL@li.org>\n"
21 "Language: \n"
22 "MIME-Version: 1.0\n"
23 "Content-Type: text/plain; charset=UTF-8\n"
24 "Content-Transfer-Encoding: 8bit\n"
25 "X-Generator: Translate Toolkit 1.1.1rc4\n"
26
27 #. TRANS: "name" option from activity.info file
28 msgid "Image Viewer"
29 msgstr ""
30
31 #. TRANS: "summary" option from activity.info file
32 msgid "The Image Viewer activity is a simple and fast image viewer tool"
33 msgstr ""
34
35 #. TRANS: "description" option from activity.info file
36 msgid ""
37 "It has features one would expect of a standard image viewer, like zoom, "
38 "rotate, etc."
39 msgstr ""
40
41 #: ImageViewerActivity.py:170
42 msgid "Zoom out"
43 msgstr ""
44
45 #: ImageViewerActivity.py:176
46 msgid "Zoom in"
47 msgstr ""
48
49 #: ImageViewerActivity.py:182
50 msgid "Fit to window"
51 msgstr ""
52
53 #: ImageViewerActivity.py:188
54 msgid "Original size"
55 msgstr ""
56
57 #: ImageViewerActivity.py:199
58 msgid "Rotate anticlockwise"
59 msgstr ""
60
61 #: ImageViewerActivity.py:206
62 msgid "Rotate clockwise"
63 msgstr ""
64
65 #: ImageViewerActivity.py:217
66 msgid "Fullscreen"
67 msgstr ""
68
69 #: ImageViewerActivity.py:264
70 msgid "Choose document"
71 msgstr ""
72
73 #: ProgressDialog.py:8
74 msgid "Downloading..."
75 msgstr ""
76
77 #: ProgressDialog.py:17
78 msgid "Retrieving shared image, please wait..."
79 msgstr ""
+0
-80
po/bi.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 # SOME DESCRIPTIVE TITLE.
5 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
6 # This file is distributed under the same license as the PACKAGE package.
7 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
8 # SOME DESCRIPTIVE TITLE.
9 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
10 # This file is distributed under the same license as the PACKAGE package.
11 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
12 #, fuzzy
13 msgid ""
14 msgstr ""
15 "Project-Id-Version: PACKAGE VERSION\n"
16 "Report-Msgid-Bugs-To: \n"
17 "POT-Creation-Date: 2012-09-27 14:57-0400\n"
18 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
19 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
20 "Language-Team: LANGUAGE <LL@li.org>\n"
21 "Language: \n"
22 "MIME-Version: 1.0\n"
23 "Content-Type: text/plain; charset=UTF-8\n"
24 "Content-Transfer-Encoding: 8bit\n"
25 "X-Generator: Translate Toolkit 1.1.1rc4\n"
26
27 #. TRANS: "name" option from activity.info file
28 msgid "Image Viewer"
29 msgstr ""
30
31 #. TRANS: "summary" option from activity.info file
32 msgid "The Image Viewer activity is a simple and fast image viewer tool"
33 msgstr ""
34
35 #. TRANS: "description" option from activity.info file
36 msgid ""
37 "It has features one would expect of a standard image viewer, like zoom, "
38 "rotate, etc."
39 msgstr ""
40
41 #: ImageViewerActivity.py:170
42 msgid "Zoom out"
43 msgstr ""
44
45 #: ImageViewerActivity.py:176
46 msgid "Zoom in"
47 msgstr ""
48
49 #: ImageViewerActivity.py:182
50 msgid "Fit to window"
51 msgstr ""
52
53 #: ImageViewerActivity.py:188
54 msgid "Original size"
55 msgstr ""
56
57 #: ImageViewerActivity.py:199
58 msgid "Rotate anticlockwise"
59 msgstr ""
60
61 #: ImageViewerActivity.py:206
62 msgid "Rotate clockwise"
63 msgstr ""
64
65 #: ImageViewerActivity.py:217
66 msgid "Fullscreen"
67 msgstr ""
68
69 #: ImageViewerActivity.py:264
70 msgid "Choose document"
71 msgstr ""
72
73 #: ProgressDialog.py:8
74 msgid "Downloading..."
75 msgstr ""
76
77 #: ProgressDialog.py:17
78 msgid "Retrieving shared image, please wait..."
79 msgstr ""
+0
-72
po/br.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 #, fuzzy
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2012-09-27 14:57-0400\n"
10 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: LANGUAGE <LL@li.org>\n"
13 "Language: \n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17 "X-Generator: Translate Toolkit 1.7.0\n"
18
19 #. TRANS: "name" option from activity.info file
20 msgid "Image Viewer"
21 msgstr ""
22
23 #. TRANS: "summary" option from activity.info file
24 msgid "The Image Viewer activity is a simple and fast image viewer tool"
25 msgstr ""
26
27 #. TRANS: "description" option from activity.info file
28 msgid ""
29 "It has features one would expect of a standard image viewer, like zoom, "
30 "rotate, etc."
31 msgstr ""
32
33 #: ImageViewerActivity.py:170
34 msgid "Zoom out"
35 msgstr ""
36
37 #: ImageViewerActivity.py:176
38 msgid "Zoom in"
39 msgstr ""
40
41 #: ImageViewerActivity.py:182
42 msgid "Fit to window"
43 msgstr ""
44
45 #: ImageViewerActivity.py:188
46 msgid "Original size"
47 msgstr ""
48
49 #: ImageViewerActivity.py:199
50 msgid "Rotate anticlockwise"
51 msgstr ""
52
53 #: ImageViewerActivity.py:206
54 msgid "Rotate clockwise"
55 msgstr ""
56
57 #: ImageViewerActivity.py:217
58 msgid "Fullscreen"
59 msgstr ""
60
61 #: ImageViewerActivity.py:264
62 msgid "Choose document"
63 msgstr ""
64
65 #: ProgressDialog.py:8
66 msgid "Downloading..."
67 msgstr ""
68
69 #: ProgressDialog.py:17
70 msgid "Retrieving shared image, please wait..."
71 msgstr ""
+0
-80
po/cpp.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 # SOME DESCRIPTIVE TITLE.
5 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
6 # This file is distributed under the same license as the PACKAGE package.
7 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
8 # SOME DESCRIPTIVE TITLE.
9 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
10 # This file is distributed under the same license as the PACKAGE package.
11 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
12 #, fuzzy
13 msgid ""
14 msgstr ""
15 "Project-Id-Version: PACKAGE VERSION\n"
16 "Report-Msgid-Bugs-To: \n"
17 "POT-Creation-Date: 2012-09-27 14:57-0400\n"
18 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
19 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
20 "Language-Team: LANGUAGE <LL@li.org>\n"
21 "Language: \n"
22 "MIME-Version: 1.0\n"
23 "Content-Type: text/plain; charset=UTF-8\n"
24 "Content-Transfer-Encoding: 8bit\n"
25 "X-Generator: Translate Toolkit 1.1.1rc4\n"
26
27 #. TRANS: "name" option from activity.info file
28 msgid "Image Viewer"
29 msgstr ""
30
31 #. TRANS: "summary" option from activity.info file
32 msgid "The Image Viewer activity is a simple and fast image viewer tool"
33 msgstr ""
34
35 #. TRANS: "description" option from activity.info file
36 msgid ""
37 "It has features one would expect of a standard image viewer, like zoom, "
38 "rotate, etc."
39 msgstr ""
40
41 #: ImageViewerActivity.py:170
42 msgid "Zoom out"
43 msgstr ""
44
45 #: ImageViewerActivity.py:176
46 msgid "Zoom in"
47 msgstr ""
48
49 #: ImageViewerActivity.py:182
50 msgid "Fit to window"
51 msgstr ""
52
53 #: ImageViewerActivity.py:188
54 msgid "Original size"
55 msgstr ""
56
57 #: ImageViewerActivity.py:199
58 msgid "Rotate anticlockwise"
59 msgstr ""
60
61 #: ImageViewerActivity.py:206
62 msgid "Rotate clockwise"
63 msgstr ""
64
65 #: ImageViewerActivity.py:217
66 msgid "Fullscreen"
67 msgstr ""
68
69 #: ImageViewerActivity.py:264
70 msgid "Choose document"
71 msgstr ""
72
73 #: ProgressDialog.py:8
74 msgid "Downloading..."
75 msgstr ""
76
77 #: ProgressDialog.py:17
78 msgid "Retrieving shared image, please wait..."
79 msgstr ""
+0
-80
po/dz.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 # SOME DESCRIPTIVE TITLE.
5 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
6 # This file is distributed under the same license as the PACKAGE package.
7 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
8 # SOME DESCRIPTIVE TITLE.
9 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
10 # This file is distributed under the same license as the PACKAGE package.
11 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
12 #, fuzzy
13 msgid ""
14 msgstr ""
15 "Project-Id-Version: PACKAGE VERSION\n"
16 "Report-Msgid-Bugs-To: \n"
17 "POT-Creation-Date: 2012-09-27 14:57-0400\n"
18 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
19 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
20 "Language-Team: LANGUAGE <LL@li.org>\n"
21 "Language: \n"
22 "MIME-Version: 1.0\n"
23 "Content-Type: text/plain; charset=UTF-8\n"
24 "Content-Transfer-Encoding: 8bit\n"
25 "X-Generator: Translate Toolkit 1.1.1rc4\n"
26
27 #. TRANS: "name" option from activity.info file
28 msgid "Image Viewer"
29 msgstr ""
30
31 #. TRANS: "summary" option from activity.info file
32 msgid "The Image Viewer activity is a simple and fast image viewer tool"
33 msgstr ""
34
35 #. TRANS: "description" option from activity.info file
36 msgid ""
37 "It has features one would expect of a standard image viewer, like zoom, "
38 "rotate, etc."
39 msgstr ""
40
41 #: ImageViewerActivity.py:170
42 msgid "Zoom out"
43 msgstr ""
44
45 #: ImageViewerActivity.py:176
46 msgid "Zoom in"
47 msgstr ""
48
49 #: ImageViewerActivity.py:182
50 msgid "Fit to window"
51 msgstr ""
52
53 #: ImageViewerActivity.py:188
54 msgid "Original size"
55 msgstr ""
56
57 #: ImageViewerActivity.py:199
58 msgid "Rotate anticlockwise"
59 msgstr ""
60
61 #: ImageViewerActivity.py:206
62 msgid "Rotate clockwise"
63 msgstr ""
64
65 #: ImageViewerActivity.py:217
66 msgid "Fullscreen"
67 msgstr ""
68
69 #: ImageViewerActivity.py:264
70 msgid "Choose document"
71 msgstr ""
72
73 #: ProgressDialog.py:8
74 msgid "Downloading..."
75 msgstr ""
76
77 #: ProgressDialog.py:17
78 msgid "Retrieving shared image, please wait..."
79 msgstr ""
+0
-83
po/ff.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: ff\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.1.1rc4\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-83
po/fi.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: fi\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.1.1rc4\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-83
po/fil.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: fil\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.3.0\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-80
po/gu.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 # SOME DESCRIPTIVE TITLE.
5 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
6 # This file is distributed under the same license as the PACKAGE package.
7 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
8 # SOME DESCRIPTIVE TITLE.
9 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
10 # This file is distributed under the same license as the PACKAGE package.
11 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
12 #, fuzzy
13 msgid ""
14 msgstr ""
15 "Project-Id-Version: PACKAGE VERSION\n"
16 "Report-Msgid-Bugs-To: \n"
17 "POT-Creation-Date: 2012-09-27 14:57-0400\n"
18 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
19 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
20 "Language-Team: LANGUAGE <LL@li.org>\n"
21 "Language: \n"
22 "MIME-Version: 1.0\n"
23 "Content-Type: text/plain; charset=UTF-8\n"
24 "Content-Transfer-Encoding: 8bit\n"
25 "X-Generator: Translate Toolkit 1.1.1rc4\n"
26
27 #. TRANS: "name" option from activity.info file
28 msgid "Image Viewer"
29 msgstr ""
30
31 #. TRANS: "summary" option from activity.info file
32 msgid "The Image Viewer activity is a simple and fast image viewer tool"
33 msgstr ""
34
35 #. TRANS: "description" option from activity.info file
36 msgid ""
37 "It has features one would expect of a standard image viewer, like zoom, "
38 "rotate, etc."
39 msgstr ""
40
41 #: ImageViewerActivity.py:170
42 msgid "Zoom out"
43 msgstr ""
44
45 #: ImageViewerActivity.py:176
46 msgid "Zoom in"
47 msgstr ""
48
49 #: ImageViewerActivity.py:182
50 msgid "Fit to window"
51 msgstr ""
52
53 #: ImageViewerActivity.py:188
54 msgid "Original size"
55 msgstr ""
56
57 #: ImageViewerActivity.py:199
58 msgid "Rotate anticlockwise"
59 msgstr ""
60
61 #: ImageViewerActivity.py:206
62 msgid "Rotate clockwise"
63 msgstr ""
64
65 #: ImageViewerActivity.py:217
66 msgid "Fullscreen"
67 msgstr ""
68
69 #: ImageViewerActivity.py:264
70 msgid "Choose document"
71 msgstr ""
72
73 #: ProgressDialog.py:8
74 msgid "Downloading..."
75 msgstr ""
76
77 #: ProgressDialog.py:17
78 msgid "Retrieving shared image, please wait..."
79 msgstr ""
+0
-83
po/ha.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: ha\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.1.1rc4\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-83
po/ht.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: ht\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.1.1rc4\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-83
po/ibo.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: ibo\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.11.0\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-80
po/ig.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 # SOME DESCRIPTIVE TITLE.
5 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
6 # This file is distributed under the same license as the PACKAGE package.
7 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
8 # SOME DESCRIPTIVE TITLE.
9 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
10 # This file is distributed under the same license as the PACKAGE package.
11 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
12 #, fuzzy
13 msgid ""
14 msgstr ""
15 "Project-Id-Version: PACKAGE VERSION\n"
16 "Report-Msgid-Bugs-To: \n"
17 "POT-Creation-Date: 2012-09-27 14:57-0400\n"
18 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
19 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
20 "Language-Team: LANGUAGE <LL@li.org>\n"
21 "Language: \n"
22 "MIME-Version: 1.0\n"
23 "Content-Type: text/plain; charset=UTF-8\n"
24 "Content-Transfer-Encoding: 8bit\n"
25 "X-Generator: Translate Toolkit 1.1.1rc4\n"
26
27 #. TRANS: "name" option from activity.info file
28 msgid "Image Viewer"
29 msgstr ""
30
31 #. TRANS: "summary" option from activity.info file
32 msgid "The Image Viewer activity is a simple and fast image viewer tool"
33 msgstr ""
34
35 #. TRANS: "description" option from activity.info file
36 msgid ""
37 "It has features one would expect of a standard image viewer, like zoom, "
38 "rotate, etc."
39 msgstr ""
40
41 #: ImageViewerActivity.py:170
42 msgid "Zoom out"
43 msgstr ""
44
45 #: ImageViewerActivity.py:176
46 msgid "Zoom in"
47 msgstr ""
48
49 #: ImageViewerActivity.py:182
50 msgid "Fit to window"
51 msgstr ""
52
53 #: ImageViewerActivity.py:188
54 msgid "Original size"
55 msgstr ""
56
57 #: ImageViewerActivity.py:199
58 msgid "Rotate anticlockwise"
59 msgstr ""
60
61 #: ImageViewerActivity.py:206
62 msgid "Rotate clockwise"
63 msgstr ""
64
65 #: ImageViewerActivity.py:217
66 msgid "Fullscreen"
67 msgstr ""
68
69 #: ImageViewerActivity.py:264
70 msgid "Choose document"
71 msgstr ""
72
73 #: ProgressDialog.py:8
74 msgid "Downloading..."
75 msgstr ""
76
77 #: ProgressDialog.py:17
78 msgid "Retrieving shared image, please wait..."
79 msgstr ""
+0
-80
po/kos.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 # SOME DESCRIPTIVE TITLE.
5 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
6 # This file is distributed under the same license as the PACKAGE package.
7 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
8 # SOME DESCRIPTIVE TITLE.
9 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
10 # This file is distributed under the same license as the PACKAGE package.
11 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
12 #, fuzzy
13 msgid ""
14 msgstr ""
15 "Project-Id-Version: PACKAGE VERSION\n"
16 "Report-Msgid-Bugs-To: \n"
17 "POT-Creation-Date: 2012-09-27 14:57-0400\n"
18 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
19 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
20 "Language-Team: LANGUAGE <LL@li.org>\n"
21 "Language: \n"
22 "MIME-Version: 1.0\n"
23 "Content-Type: text/plain; charset=UTF-8\n"
24 "Content-Transfer-Encoding: 8bit\n"
25 "X-Generator: Translate Toolkit 1.3.0\n"
26
27 #. TRANS: "name" option from activity.info file
28 msgid "Image Viewer"
29 msgstr ""
30
31 #. TRANS: "summary" option from activity.info file
32 msgid "The Image Viewer activity is a simple and fast image viewer tool"
33 msgstr ""
34
35 #. TRANS: "description" option from activity.info file
36 msgid ""
37 "It has features one would expect of a standard image viewer, like zoom, "
38 "rotate, etc."
39 msgstr ""
40
41 #: ImageViewerActivity.py:170
42 msgid "Zoom out"
43 msgstr ""
44
45 #: ImageViewerActivity.py:176
46 msgid "Zoom in"
47 msgstr ""
48
49 #: ImageViewerActivity.py:182
50 msgid "Fit to window"
51 msgstr ""
52
53 #: ImageViewerActivity.py:188
54 msgid "Original size"
55 msgstr ""
56
57 #: ImageViewerActivity.py:199
58 msgid "Rotate anticlockwise"
59 msgstr ""
60
61 #: ImageViewerActivity.py:206
62 msgid "Rotate clockwise"
63 msgstr ""
64
65 #: ImageViewerActivity.py:217
66 msgid "Fullscreen"
67 msgstr ""
68
69 #: ImageViewerActivity.py:264
70 msgid "Choose document"
71 msgstr ""
72
73 #: ProgressDialog.py:8
74 msgid "Downloading..."
75 msgstr ""
76
77 #: ProgressDialog.py:17
78 msgid "Retrieving shared image, please wait..."
79 msgstr ""
+0
-80
po/mk.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 # SOME DESCRIPTIVE TITLE.
5 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
6 # This file is distributed under the same license as the PACKAGE package.
7 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
8 # SOME DESCRIPTIVE TITLE.
9 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
10 # This file is distributed under the same license as the PACKAGE package.
11 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
12 #, fuzzy
13 msgid ""
14 msgstr ""
15 "Project-Id-Version: PACKAGE VERSION\n"
16 "Report-Msgid-Bugs-To: \n"
17 "POT-Creation-Date: 2012-09-27 14:57-0400\n"
18 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
19 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
20 "Language-Team: LANGUAGE <LL@li.org>\n"
21 "Language: \n"
22 "MIME-Version: 1.0\n"
23 "Content-Type: text/plain; charset=UTF-8\n"
24 "Content-Transfer-Encoding: 8bit\n"
25 "X-Generator: Translate Toolkit 1.1.1rc4\n"
26
27 #. TRANS: "name" option from activity.info file
28 msgid "Image Viewer"
29 msgstr ""
30
31 #. TRANS: "summary" option from activity.info file
32 msgid "The Image Viewer activity is a simple and fast image viewer tool"
33 msgstr ""
34
35 #. TRANS: "description" option from activity.info file
36 msgid ""
37 "It has features one would expect of a standard image viewer, like zoom, "
38 "rotate, etc."
39 msgstr ""
40
41 #: ImageViewerActivity.py:170
42 msgid "Zoom out"
43 msgstr ""
44
45 #: ImageViewerActivity.py:176
46 msgid "Zoom in"
47 msgstr ""
48
49 #: ImageViewerActivity.py:182
50 msgid "Fit to window"
51 msgstr ""
52
53 #: ImageViewerActivity.py:188
54 msgid "Original size"
55 msgstr ""
56
57 #: ImageViewerActivity.py:199
58 msgid "Rotate anticlockwise"
59 msgstr ""
60
61 #: ImageViewerActivity.py:206
62 msgid "Rotate clockwise"
63 msgstr ""
64
65 #: ImageViewerActivity.py:217
66 msgid "Fullscreen"
67 msgstr ""
68
69 #: ImageViewerActivity.py:264
70 msgid "Choose document"
71 msgstr ""
72
73 #: ProgressDialog.py:8
74 msgid "Downloading..."
75 msgstr ""
76
77 #: ProgressDialog.py:17
78 msgid "Retrieving shared image, please wait..."
79 msgstr ""
+0
-83
po/ml.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: ml\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.1.1rc4\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-83
po/mvo.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: mvo\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.1.1rc4\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-83
po/pa.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: pa\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.1.1rc4\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-83
po/quy.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: quy\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.11.0\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-83
po/ro.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: ro\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.1.1rc4\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-83
po/sd.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: sd\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.1.1rc4\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-83
po/sk.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: sk\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.1.1rc4\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-80
po/tvl.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 # SOME DESCRIPTIVE TITLE.
5 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
6 # This file is distributed under the same license as the PACKAGE package.
7 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
8 # SOME DESCRIPTIVE TITLE.
9 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
10 # This file is distributed under the same license as the PACKAGE package.
11 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
12 #, fuzzy
13 msgid ""
14 msgstr ""
15 "Project-Id-Version: PACKAGE VERSION\n"
16 "Report-Msgid-Bugs-To: \n"
17 "POT-Creation-Date: 2012-09-27 14:57-0400\n"
18 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
19 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
20 "Language-Team: LANGUAGE <LL@li.org>\n"
21 "Language: \n"
22 "MIME-Version: 1.0\n"
23 "Content-Type: text/plain; charset=UTF-8\n"
24 "Content-Transfer-Encoding: 8bit\n"
25 "X-Generator: Translate Toolkit 1.3.0\n"
26
27 #. TRANS: "name" option from activity.info file
28 msgid "Image Viewer"
29 msgstr ""
30
31 #. TRANS: "summary" option from activity.info file
32 msgid "The Image Viewer activity is a simple and fast image viewer tool"
33 msgstr ""
34
35 #. TRANS: "description" option from activity.info file
36 msgid ""
37 "It has features one would expect of a standard image viewer, like zoom, "
38 "rotate, etc."
39 msgstr ""
40
41 #: ImageViewerActivity.py:170
42 msgid "Zoom out"
43 msgstr ""
44
45 #: ImageViewerActivity.py:176
46 msgid "Zoom in"
47 msgstr ""
48
49 #: ImageViewerActivity.py:182
50 msgid "Fit to window"
51 msgstr ""
52
53 #: ImageViewerActivity.py:188
54 msgid "Original size"
55 msgstr ""
56
57 #: ImageViewerActivity.py:199
58 msgid "Rotate anticlockwise"
59 msgstr ""
60
61 #: ImageViewerActivity.py:206
62 msgid "Rotate clockwise"
63 msgstr ""
64
65 #: ImageViewerActivity.py:217
66 msgid "Fullscreen"
67 msgstr ""
68
69 #: ImageViewerActivity.py:264
70 msgid "Choose document"
71 msgstr ""
72
73 #: ProgressDialog.py:8
74 msgid "Downloading..."
75 msgstr ""
76
77 #: ProgressDialog.py:17
78 msgid "Retrieving shared image, please wait..."
79 msgstr ""
+0
-83
po/tzo.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: tzo\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.7.0\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-83
po/ur.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 msgid ""
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-03-24 17:39+1100\n"
9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11 "Language-Team: LANGUAGE <LL@li.org>\n"
12 "Language: ur\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "X-Generator: Translate Toolkit 1.1.1rc4\n"
17
18 #: activity/activity.info:2
19 msgid "Image Viewer"
20 msgstr ""
21
22 #: activity/activity.info:3
23 msgid ""
24 "An easy way and fast way to see your images! You can also change the way "
25 "your image looks with zoom, rotate, size change and so on."
26 msgstr ""
27
28 #: ImageViewerActivity.py:202
29 msgid "No image"
30 msgstr ""
31
32 #: ImageViewerActivity.py:213
33 msgid "Choose an image"
34 msgstr ""
35
36 #: ImageViewerActivity.py:245
37 msgid "Please wait"
38 msgstr ""
39
40 #: ImageViewerActivity.py:246
41 msgid "Starting connection..."
42 msgstr ""
43
44 #: ImageViewerActivity.py:301
45 msgid "Zoom out"
46 msgstr ""
47
48 #: ImageViewerActivity.py:307
49 msgid "Zoom in"
50 msgstr ""
51
52 #: ImageViewerActivity.py:313
53 msgid "Fit to window"
54 msgstr ""
55
56 #: ImageViewerActivity.py:319
57 msgid "Original size"
58 msgstr ""
59
60 #: ImageViewerActivity.py:325
61 msgid "Fullscreen"
62 msgstr ""
63
64 #: ImageViewerActivity.py:335
65 msgid "Rotate anticlockwise"
66 msgstr ""
67
68 #: ImageViewerActivity.py:342
69 msgid "Rotate clockwise"
70 msgstr ""
71
72 #: ImageViewerActivity.py:353
73 msgid "Previous Image"
74 msgstr ""
75
76 #: ImageViewerActivity.py:361
77 msgid "Next Image"
78 msgstr ""
79
80 #: ImageViewerActivity.py:650
81 msgid "Receiving image..."
82 msgstr ""
+0
-80
po/wa.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 # SOME DESCRIPTIVE TITLE.
5 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
6 # This file is distributed under the same license as the PACKAGE package.
7 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
8 # SOME DESCRIPTIVE TITLE.
9 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
10 # This file is distributed under the same license as the PACKAGE package.
11 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
12 #, fuzzy
13 msgid ""
14 msgstr ""
15 "Project-Id-Version: PACKAGE VERSION\n"
16 "Report-Msgid-Bugs-To: \n"
17 "POT-Creation-Date: 2012-09-27 14:57-0400\n"
18 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
19 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
20 "Language-Team: LANGUAGE <LL@li.org>\n"
21 "Language: \n"
22 "MIME-Version: 1.0\n"
23 "Content-Type: text/plain; charset=UTF-8\n"
24 "Content-Transfer-Encoding: 8bit\n"
25 "X-Generator: Translate Toolkit 1.1.1rc4\n"
26
27 #. TRANS: "name" option from activity.info file
28 msgid "Image Viewer"
29 msgstr ""
30
31 #. TRANS: "summary" option from activity.info file
32 msgid "The Image Viewer activity is a simple and fast image viewer tool"
33 msgstr ""
34
35 #. TRANS: "description" option from activity.info file
36 msgid ""
37 "It has features one would expect of a standard image viewer, like zoom, "
38 "rotate, etc."
39 msgstr ""
40
41 #: ImageViewerActivity.py:170
42 msgid "Zoom out"
43 msgstr ""
44
45 #: ImageViewerActivity.py:176
46 msgid "Zoom in"
47 msgstr ""
48
49 #: ImageViewerActivity.py:182
50 msgid "Fit to window"
51 msgstr ""
52
53 #: ImageViewerActivity.py:188
54 msgid "Original size"
55 msgstr ""
56
57 #: ImageViewerActivity.py:199
58 msgid "Rotate anticlockwise"
59 msgstr ""
60
61 #: ImageViewerActivity.py:206
62 msgid "Rotate clockwise"
63 msgstr ""
64
65 #: ImageViewerActivity.py:217
66 msgid "Fullscreen"
67 msgstr ""
68
69 #: ImageViewerActivity.py:264
70 msgid "Choose document"
71 msgstr ""
72
73 #: ProgressDialog.py:8
74 msgid "Downloading..."
75 msgstr ""
76
77 #: ProgressDialog.py:17
78 msgid "Retrieving shared image, please wait..."
79 msgstr ""