From 4b46f3a15e24c04921d73a8938acfbdf8180ce20 Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 10:32:22 +0530 Subject: [PATCH 01/21] Fix noisy logs --- activity.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/activity.py b/activity.py index 83be001..7e7343f 100644 --- a/activity.py +++ b/activity.py @@ -577,26 +577,21 @@ def add_value(self, label, value): self.get_column(1), True) - _logger.info("Added: %s, Value: %s" % (label, value)) - return path def remove_selected_value(self): model, iter = self._selection.get_selected() value = (self.model.get(iter, 0)[0], float(self.model.get(iter, 1)[0])) - _logger.info('VALUE: ' + str(value)) self.model.remove(iter) return value def _label_changed(self, cell, path, new_text, model): - _logger.info("Change '%s' to '%s'" % (model[path][0], new_text)) model[path][0] = new_text self.emit("label-changed", str(path), new_text) def _value_changed(self, cell, path, new_text, model, activity): - _logger.info("Change '%s' to '%s'" % (model[path][1], new_text)) is_number = True number = new_text.replace(",", ".") try: From 8a37c39061d052f300e7135edfbdb961ce739464 Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 10:52:12 +0530 Subject: [PATCH 02/21] Fix Gtk-WARNING: Can't set a target list till gtk_drag_set() is called --- activity.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/activity.py b/activity.py index 7e7343f..035646c 100644 --- a/activity.py +++ b/activity.py @@ -66,6 +66,8 @@ _logger.setLevel(logging.DEBUG) logging.basicConfig() +#Dragging +DRAG_ACTION = Gdk.DragAction.COPY class ChartArea(Gtk.DrawingArea): @@ -76,6 +78,7 @@ def __init__(self, parent): self.add_events(Gdk.EventMask.EXPOSURE_MASK | Gdk.EventMask.VISIBILITY_NOTIFY_MASK) self.connect("draw", self._draw_cb) + self.drag_dest_set(Gtk.DestDefaults.ALL, [], DRAG_ACTION) self.drag_dest_set_target_list(Gtk.TargetList.new([])) self.drag_dest_add_text_targets() self.connect('drag_data_received', self._drag_data_received) From b5010489d6a5c6f086087e0c62a2485802110ca1 Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 10:57:02 +0530 Subject: [PATCH 03/21] Run 2to3 --- activity.py | 2 +- readers.py | 2 +- sugarpycha/chart.py | 13 +++++++------ sugarpycha/color.py | 4 +--- sugarpycha/stackedbar.py | 3 ++- sugarpycha/utils.py | 8 ++++---- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/activity.py b/activity.py index 035646c..886038b 100644 --- a/activity.py +++ b/activity.py @@ -30,7 +30,7 @@ import logging import utils -from StringIO import StringIO +from io import StringIO from gettext import gettext as _ from sugar3.activity import activity diff --git a/readers.py b/readers.py index 5d523e0..2859827 100644 --- a/readers.py +++ b/readers.py @@ -239,7 +239,7 @@ def __init__(self): self._dsdict[os.path.basename(path)][-1][ 'activity'] = activity - for k, v in self._dsdict.iteritems(): + for k, v in self._dsdict.items(): for a in v: if 'activity' in a: if a['activity'] in self._activity_name: diff --git a/sugarpycha/chart.py b/sugarpycha/chart.py index 2ce6e05..98d90f0 100644 --- a/sugarpycha/chart.py +++ b/sugarpycha/chart.py @@ -23,6 +23,7 @@ from sugarpycha.color import ColorScheme, hex2rgb, DEFAULT_COLOR from sugarpycha.utils import safe_unicode +from functools import reduce class Chart(object): @@ -139,7 +140,7 @@ def _setColorscheme(self): # Remove invalid args before calling the constructor kwargs = dict(self.options.colorScheme.args) validArgs = inspect.getargspec(colorSchemeClass.__init__)[0] - kwargs = dict([(k, v) for k, v in kwargs.items() if k in validArgs]) + kwargs = dict([(k, v) for k, v in list(kwargs.items()) if k in validArgs]) self.colorScheme = colorSchemeClass(keys, **kwargs) def _initSurface(self, surface): @@ -242,7 +243,7 @@ def _updateTicks(self): pos = self.xscale * (label - self.minxval) elif self.options.axis.x.tickCount > 0: - uniqx = range(len(uniqueIndices(stores)) + 1) + uniqx = list(range(len(uniqueIndices(stores)) + 1)) roughSeparation = self.xrange / self.options.axis.x.tickCount i = j = 0 while i < len(uniqx) and j < self.options.axis.x.tickCount: @@ -613,7 +614,7 @@ def drawKey(key, x, y, text_height): def uniqueIndices(arr): """Return a list with the indexes of the biggest element of arr""" - return range(max([len(a) for a in arr])) + return list(range(max([len(a) for a in arr]))) class Area(object): @@ -764,7 +765,7 @@ def _getAxisTickLabelsSize(self, cx, options, axis, ticks): ))[2:4] # get width and height as a tuple for tick in ticks] if extents: - widths, heights = zip(*extents) + widths, heights = list(zip(*extents)) max_width, max_height = max(widths), max(heights) if axis.rotate: radians = math.radians(axis.rotate) @@ -782,14 +783,14 @@ class Option(dict): """Useful dict that allow attribute-like access to its keys""" def __getattr__(self, name): - if name in self.keys(): + if name in list(self.keys()): return self[name] else: raise AttributeError(name) def merge(self, other): """Recursive merge with other Option or dict object""" - for key, value in other.items(): + for key, value in list(other.items()): if key in self: if isinstance(self[key], Option): self[key].merge(other[key]) diff --git a/sugarpycha/color.py b/sugarpycha/color.py index fcf0784..2aef268 100644 --- a/sugarpycha/color.py +++ b/sugarpycha/color.py @@ -123,11 +123,9 @@ def __new__(mcs, name, bases, dict): return klass -class ColorScheme(dict): +class ColorScheme(dict, metaclass=ColorSchemeMetaclass): """A color scheme is a dictionary where the keys match the keys constructor argument and the values are colors""" - - __metaclass__ = ColorSchemeMetaclass __registry__ = {} def __init__(self, keys): diff --git a/sugarpycha/stackedbar.py b/sugarpycha/stackedbar.py index 3daf6e3..2199f98 100644 --- a/sugarpycha/stackedbar.py +++ b/sugarpycha/stackedbar.py @@ -17,6 +17,7 @@ from sugarpycha.bar import BarChart, VerticalBarChart, HorizontalBarChart, Rect from sugarpycha.chart import uniqueIndices +from functools import reduce class StackedBarChart(BarChart): @@ -37,7 +38,7 @@ def _updateXY(self): n_stores = len(stores) flat_y = [pair[1] for pair in reduce(lambda a, b: a + b, stores)] store_size = len(flat_y) / n_stores - accum = [sum(flat_y[j]for j in xrange(i, + accum = [sum(flat_y[j]for j in range(i, i + store_size * n_stores, store_size)) for i in range(len(flat_y) / n_stores)] diff --git a/sugarpycha/utils.py b/sugarpycha/utils.py index 9e1b692..ccd014d 100644 --- a/sugarpycha/utils.py +++ b/sugarpycha/utils.py @@ -28,13 +28,13 @@ def clamp(minValue, maxValue, value): def safe_unicode(obj, encoding=None): """Return a unicode value from the argument""" - if isinstance(obj, unicode): + if isinstance(obj, str): return obj elif isinstance(obj, str): if encoding is None: - return unicode(obj) + return str(obj) else: - return unicode(obj, encoding) + return str(obj, encoding) else: # it may be an int or a float - return unicode(obj) + return str(obj) From 00e5df3b8eb282d5232b26e08ebeac5b5d8f527e Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 11:59:08 +0530 Subject: [PATCH 04/21] update exec and replace statvfs with disk_usage as statvfs is removed after python 3.3 --- activity/activity.info | 2 +- readers.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/activity/activity.info b/activity/activity.info index 8bceda6..a6fe0d6 100644 --- a/activity/activity.info +++ b/activity/activity.info @@ -2,7 +2,7 @@ name = Analyze Journal activity_version = 4 bundle_id = org.sugarlabs.AnalyzeJournal -exec = sugar-activity activity.AnalyzeJournal +exec = sugar-activity3 activity.AnalyzeJournal icon = analyzejournal license = GPLv3+ summary = chart of Sugar Journal activity diff --git a/readers.py b/readers.py index 2859827..573f87f 100644 --- a/readers.py +++ b/readers.py @@ -21,7 +21,7 @@ import os import glob -import statvfs +import shutil from gettext import gettext as _ @@ -63,9 +63,9 @@ def get_chart_data(self): return chart_data def _get_space(self): - stat = os.statvfs(env.get_profile_path()) - free_space = stat[statvfs.F_BSIZE] * stat[statvfs.F_BAVAIL] - total_space = stat[statvfs.F_BSIZE] * stat[statvfs.F_BLOCKS] + total_space, used_space, free_space = shutil.disk_usage(env.get_profile_path()) + #free_space = stat[statvfs.f_bsize] * stat[statvfs.f_bavail] + #total_space = stat[statvfs.F_BSIZE] * stat[statvfs.F_BLOCKS] free_space = self._get_MBs(free_space) total_space = self._get_MBs(total_space) From 97fdd0f6d7e32c2b4aa5782c4ff54026e552ae82 Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 12:37:55 +0530 Subject: [PATCH 05/21] sugarpycha: change callable to isinstance and more changes --- sugarpycha/bar.py | 4 ++-- sugarpycha/chart.py | 3 ++- sugarpycha/polygonal.py | 7 ++++--- sugarpycha/radial.py | 7 ++++--- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/sugarpycha/bar.py b/sugarpycha/bar.py index fa3698d..4c40c3d 100644 --- a/sugarpycha/bar.py +++ b/sugarpycha/bar.py @@ -18,7 +18,7 @@ from sugarpycha.chart import Chart, uniqueIndices from sugarpycha.color import hex2rgb from sugarpycha.utils import safe_unicode - +import collections class BarChart(Chart): @@ -99,7 +99,7 @@ def drawBar(bar): cx.set_font_size(self.options.yvals.fontSize) cx.set_source_rgb(*hex2rgb(self.options.yvals.fontColor)) - if callable(self.options.yvals.renderer): + if isinstance(self.options.yvals.renderer, collections.Callable): label = safe_unicode(self.options.yvals.renderer(bar), self.options.encoding) else: diff --git a/sugarpycha/chart.py b/sugarpycha/chart.py index 98d90f0..d8cd9c0 100644 --- a/sugarpycha/chart.py +++ b/sugarpycha/chart.py @@ -23,6 +23,7 @@ from sugarpycha.color import ColorScheme, hex2rgb, DEFAULT_COLOR from sugarpycha.utils import safe_unicode +import collections from functools import reduce @@ -358,7 +359,7 @@ def _renderChart(self, cx): def _renderTick(self, cx, tick, x, y, x2, y2, rotate, text_position): """Aux method for _renderXTick and _renderYTick""" - if callable(tick): + if isinstance(tick, collections.Callable): return cx.new_path() diff --git a/sugarpycha/polygonal.py b/sugarpycha/polygonal.py index bb5ced6..542ba5f 100644 --- a/sugarpycha/polygonal.py +++ b/sugarpycha/polygonal.py @@ -23,6 +23,7 @@ from sugarpycha.line import Point from sugarpycha.color import hex2rgb from sugarpycha.utils import safe_unicode +import collections class PolygonalChart(Chart): @@ -142,7 +143,7 @@ def _renderYTick(self, cx, tick, center): count = len(self.yticks) - if callable(tick): + if isinstance(tick, collections.Callable): return x = center[0] @@ -244,7 +245,7 @@ def _renderAxis(self, cx): def _renderXTick(self, cx, i, fontAscent, center): tick = self.xticks[i] - if callable(tick): + if isinstance(tick, collections.Callable): return count = len(self.xticks) @@ -327,7 +328,7 @@ def preparePath(storeName): continue cx.line_to(x, y) - if not firstPointCoord is None: + if firstPointCoord is not None: cx.line_to(firstPointCoord[0], firstPointCoord[1]) if self.options.shouldFill: diff --git a/sugarpycha/radial.py b/sugarpycha/radial.py index 8bbd1f9..1ab85d6 100644 --- a/sugarpycha/radial.py +++ b/sugarpycha/radial.py @@ -23,6 +23,7 @@ from sugarpycha.line import Point from sugarpycha.color import hex2rgb from sugarpycha.utils import safe_unicode +import collections class RadialChart(Chart): @@ -115,7 +116,7 @@ def _renderYTick(self, cx, tick, center): count = len(self.yticks) - if callable(tick): + if isinstance(tick, collections.Callable): return x = center[0] @@ -217,7 +218,7 @@ def _renderAxis(self, cx): def _renderXTick(self, cx, i, fontAscent, center): tick = self.xticks[i] - if callable(tick): + if isinstance(tick, collections.Callable): return count = len(self.xticks) @@ -301,7 +302,7 @@ def preparePath(storeName): continue cx.line_to(x, y) - if not firstPointCoord is None: + if firstPointCoord is not None: cx.line_to(firstPointCoord[0], firstPointCoord[1]) if self.options.shouldFill: From 6dcec36fa88ca9c042c40b1b2c9886657b64c071 Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 13:52:48 +0530 Subject: [PATCH 06/21] flake8 fix --- activity.py | 41 +++++++++++++---------------------- charthelp.py | 12 ++++------- charts.py | 21 ++++++------------ helpbutton.py | 3 +-- readers.py | 60 ++++++++------------------------------------------- utils.py | 11 ++++------ 6 files changed, 39 insertions(+), 109 deletions(-) diff --git a/activity.py b/activity.py index 886038b..45f3391 100644 --- a/activity.py +++ b/activity.py @@ -36,11 +36,9 @@ from sugar3.activity import activity from sugar3.activity.widgets import ActivityToolbarButton from sugar3.activity.widgets import StopButton -from sugar3.activity.widgets import ToolbarButton from sugar3.graphics.toolbarbox import ToolbarBox from sugar3.graphics.toolbutton import ToolButton from sugar3.graphics.radiotoolbutton import RadioToolButton -from sugar3.graphics.colorbutton import ColorToolButton from sugar3.graphics.objectchooser import ObjectChooser from sugar3.graphics.icon import Icon from sugar3.graphics.alert import Alert @@ -66,16 +64,18 @@ _logger.setLevel(logging.DEBUG) logging.basicConfig() -#Dragging DRAG_ACTION = Gdk.DragAction.COPY + class ChartArea(Gtk.DrawingArea): def __init__(self, parent): """A class for Draw the chart""" super(ChartArea, self).__init__() self._parent = parent - self.add_events(Gdk.EventMask.EXPOSURE_MASK | Gdk.EventMask.VISIBILITY_NOTIFY_MASK) + self.exposure = Gdk.EventMask.EXPOSURE_MASK + self.visibility = Gdk.EventMask.VISIBILITY_NOTIFY_MASK + self.add_events(self.exposure | self.visibility) self.connect("draw", self._draw_cb) self.drag_dest_set(Gtk.DestDefaults.ALL, [], DRAG_ACTION) @@ -231,8 +231,7 @@ def size_allocate_cb(widget, allocation): box_width = allocation.width / 3 box.set_size_request(box_width, -1) - self._setup_handle = paned.connect('size_allocate', - size_allocate_cb) + self._setup_handle = paned.connect('size_allocate', size_allocate_cb) scroll = Gtk.ScrolledWindow() scroll.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC) @@ -392,8 +391,7 @@ def _object_chooser(self, mime_type, type_name): alert = Alert() alert.props.title = _('Invalid object') - alert.props.msg = \ - _('The selected object must be a %s file' % (type_name)) + alert.props.msg = _('The selected object must be a %s file' % (type_name)) ok_icon = Icon(icon_name='dialog-ok') alert.add_button(Gtk.ResponseType.OK, _('Ok'), ok_icon) @@ -415,28 +413,26 @@ def _graph_from_reader(self, reader): horizontal, vertical = reader.get_labels_name() # Load the data - for row in chart_data: - self._add_value(None, - label=row[0], value=float(row[1])) + for row in chart_data: + self._add_value(None, label=row[0], value=float(row[1])) self.update_chart() def _add_value(self, widget, label="", value="0.0"): data = (label, float(value)) - if not data in self.chart_data: + if data not in self.chart_data: pos = self.labels_and_values.add_value(label, value) self.chart_data.insert(pos, data) self._update_chart_data() - def _remove_value(self, widget): value = self.labels_and_values.remove_selected_value() self.chart_data.remove(value) self._update_chart_data() def __import_freespace_cb(self, widget): - reader = FreeSpaceReader() - self._graph_from_reader(reader) + reader = FreeSpaceReader() + self._graph_from_reader(reader) def __import_journal_cb(self, widget): reader = JournalReader() @@ -489,11 +485,10 @@ def load_from_file(self, f): elif _type == "pie": self.chart_type_buttons[3].set_active(True) - #load the data - for row in chart_data: + # load the data + for row in chart_data: self._add_value(None, label=row[0], value=float(row[1])) - self.update_chart() def write_file(self, file_path): @@ -522,15 +517,12 @@ def read_file(self, file_path): class ChartData(Gtk.TreeView): - __gsignals__ = { - 'label-changed': (GObject.SignalFlags.RUN_FIRST, None, [str, str], ), - 'value-changed': (GObject.SignalFlags.RUN_FIRST, None, [str, str], ), } + __gsignals__ = {'label-changed': (GObject.SignalFlags.RUN_FIRST, None, [str, str], ), 'value-changed': (GObject.SignalFlags.RUN_FIRST, None, [str, str], ), } def __init__(self, activity): GObject.GObject.__init__(self) - self.model = Gtk.ListStore(str, str) self.set_model(self.model) @@ -575,11 +567,9 @@ def add_value(self, label, value): except ValueError: _iter = self.model.append([label, str(value)]) - self.set_cursor(self.model.get_path(_iter), self.get_column(1), True) - return path def remove_selected_value(self): @@ -613,8 +603,7 @@ def _value_changed(self, cell, path, new_text, model, activity): alert = Alert() alert.props.title = _('Invalid Value') - alert.props.msg = \ - _('The value must be a number (integer or decimal)') + alert.props.msg = _('The value must be a number (integer or decimal)') ok_icon = Icon(icon_name='dialog-ok') alert.add_button(Gtk.ResponseType.OK, _('Ok'), ok_icon) diff --git a/charthelp.py b/charthelp.py index 6150141..0fae340 100644 --- a/charthelp.py +++ b/charthelp.py @@ -11,12 +11,9 @@ def create_help(toolbar): helpitem.show() helpitem.add_section(_('Basic usage')) helpitem.add_paragraph(_('First select data type:')) - helpitem.add_paragraph(_('The free space in the Journal;'), - 'import-freespace') - helpitem.add_paragraph(_('The types of Sugar Activities you have used;'), - 'import-journal') - helpitem.add_paragraph(_('The types of blocks used in Turtle Art.'), - 'import-turtle') + helpitem.add_paragraph(_('The free space in the Journal;'), 'import-freespace') + helpitem.add_paragraph(_('The types of Sugar Activities you have used;'), 'import-journal') + helpitem.add_paragraph(_('The types of blocks used in Turtle Art.'), 'import-turtle') helpitem.add_paragraph(_('The graph title is the same as the Activity title')) helpitem.add_paragraph(_('You can change the type of graph:')) @@ -26,5 +23,4 @@ def create_help(toolbar): helpitem.add_paragraph(_('Pie'), 'pie') helpitem.add_section(_('Saving as an image')) - helpitem.add_paragraph(_('In the activity toolbar you have button to save the graph as an image'), - 'save-as-image') + helpitem.add_paragraph(_('In the activity toolbar you have button to save the graph as an image'), 'save-as-image') diff --git a/charts.py b/charts.py index 98be662..65f4d0d 100644 --- a/charts.py +++ b/charts.py @@ -24,7 +24,6 @@ import sugarpycha.line import sugarpycha.pie -import gi from gi.repository import GObject import cairo @@ -44,9 +43,7 @@ def __init__(self, type="vertical", width=600, height=460): def data_set(self, data): """Set chart data (dataSet)""" - self.dataSet = ( - ('Puntos', [(i, l[1]) for i, l in enumerate(data)]), - ) + self.dataSet = (('Puntos', [(i, l[1]) for i, l in enumerate(data)]), ) self.options = { 'legend': {'hide': True}, @@ -56,14 +53,11 @@ def data_set(self, data): 'labelFontSize': 14, 'lineColor': '#b3b3b3', 'x': { - 'ticks': [dict(v=i, label=l[0]) for i, - l in enumerate(data)], - 'label': 'X', - }, + 'ticks': [dict(v=i, label=l[0]) for i, l in enumerate(data)], + 'label': 'X', }, 'y': { 'tickCount': 5, - 'label': 'Y', - } + 'label': 'Y', } }, 'stroke': { 'width': 3 @@ -107,9 +101,7 @@ def set_title(self, title="Chart"): def render(self, sg=None): """Draw the chart Use the self.surface variable for show the chart""" - self.surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, - self.width, - self.height) + self.surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, self.width, self.height) if self.type == "vbar": chart = sugarpycha.bar.VerticalBarChart(self.surface, self.options) @@ -124,8 +116,7 @@ def render(self, sg=None): elif self.type == "pie": self.options["legend"] = {"hide": "False"} chart = sugarpycha.pie.PieChart(self.surface, self.options) - self.dataSet = [(data[0], - [[0, data[1]]]) for data in sg.chart_data] + self.dataSet = [(data[0], [[0, data[1]]]) for data in sg.chart_data] else: chart = sugarpycha.bar.HorizontalBarChart(self.surface, diff --git a/helpbutton.py b/helpbutton.py index 08695b1..c9981ab 100644 --- a/helpbutton.py +++ b/helpbutton.py @@ -41,8 +41,7 @@ def __init__(self, **kwargs): self._palette = help_button.get_palette() sw = Gtk.ScrolledWindow() - sw.set_size_request(int(Gdk.Screen.width() / 2.8), - Gdk.Screen.height() - style.GRID_CELL_SIZE * 3) + sw.set_size_request(int(Gdk.Screen.width() / 2.8), Gdk.Screen.height() - style.GRID_CELL_SIZE * 3) sw.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC) self._max_text_width = int(Gdk.Screen.width() / 3) - 20 diff --git a/readers.py b/readers.py index 573f87f..4ab1312 100644 --- a/readers.py +++ b/readers.py @@ -26,7 +26,6 @@ from gettext import gettext as _ from sugar3 import env -from sugar3 import profile class FreeSpaceReader(): @@ -63,9 +62,8 @@ def get_chart_data(self): return chart_data def _get_space(self): - total_space, used_space, free_space = shutil.disk_usage(env.get_profile_path()) - #free_space = stat[statvfs.f_bsize] * stat[statvfs.f_bavail] - #total_space = stat[statvfs.F_BSIZE] * stat[statvfs.F_BLOCKS] + path = env.get_profile_path() + total_space, used_space, free_space = shutil.disk_usage(path) free_space = self._get_MBs(free_space) total_space = self._get_MBs(total_space) @@ -95,53 +93,11 @@ class TurtleReader(): Import chart data from journal activity analysis """ - TACAT = {'clean':'forward', 'forward':'forward', 'back':'forward', - 'left':'forward', 'right':'forward', 'arc': 'arc', - 'xcor': 'coord', 'ycor': 'coord', 'heading': 'coord', - 'setxy2': 'setxy', 'seth': 'setxy', 'penup': 'pen', 'pendown': 'pen', - 'setpensize': 'pen', 'setcolor': 'pen', 'pensize': 'pen', - 'color': 'pen', 'setshade': 'pen', 'setgray': 'pen', 'shade': 'pen', - 'gray': 'pen', 'fillscreen': 'pen', 'startfill': 'fill', - 'stopfill': 'fill', 'plus2': 'number', 'minus2': 'number', - 'product2': 'number', 'division2': 'number', 'remainder2': 'number', - 'sqrt': 'number', 'identity2': 'number', 'and2': 'boolean', - 'or2': 'boolean', 'not': 'boolean', 'greater2': 'boolean', - 'less2': 'boolean', 'equal2': 'boolean', 'random': 'random', - 'repeat': 'repeat', 'forever': 'repeat', 'if': 'ifthen', - 'ifelse': 'ifthen', 'while': 'ifthen', 'until': 'ifthen', - 'hat': 'action', 'stack': 'action', 'storein': 'box', 'box': 'box', - 'luminance': 'sensor', 'mousex': 'sensor', 'mousey': 'sensor', - 'mousebutton2': 'sensor', 'keyboard': 'sensor', 'kbinput': 'sensor', - 'readpixel': 'sensor', 'see': 'sensor', 'time': 'sensor', - 'sound': 'sensor', 'volume': 'sensor', 'pitch': 'sensor', - 'resistance': 'sensor', 'voltage': 'sensor', 'video': 'media', - 'wait': 'media', 'camera': 'media', 'journal': 'media', - 'audio': 'media', 'show': 'media', 'setscale': 'media', - 'savepix': 'media', 'savesvg': 'media', 'mediawait': 'media', - 'mediapause': 'media', 'mediastop': 'media', 'mediaplay': 'media', - 'speak': 'media', 'sinewave': 'media', 'description': 'media', - 'push':'extras', 'pop':'extras', 'printheap':'extras', - 'clearheap':'extras', 'isheapempty2':'extras', 'chr':'extras', - 'int':'extras', 'myfunction': 'python', 'userdefined': 'python', - 'loadblock': 'python', 'loadpalette': 'python'} - TAPAL = {'forward': 'turtlep', 'arc': 'turtlep', 'coord': 'turtlep', - 'setxy': 'turtlep', 'pen': 'penp', 'fill': 'penp', 'number': 'numberp', - 'random': 'numberp', 'boolean': 'numberp', 'repeat': 'flowp', - 'ifthen': 'flowp', 'action': 'boxp', 'box': 'boxp', - 'sensor': 'sensorp', 'media': 'mediap', 'extras': 'extrasp', - 'python': 'extrasp'} - TASCORE = {'forward': 3, 'arc': 3, 'setxy': 2.5, 'coord': 4, 'turtlep': 5, - 'pen': 2.5, 'fill': 2.5, 'penp': 5, - 'number': 2.5, 'boolean': 2.5, 'random': 2.5, 'numberp': 0, - 'repeat': 2.5, 'ifthen': 7.5, 'flowp': 10, - 'box': 7.5, 'action': 7.5, 'boxp': 0, - 'media': 5, 'mediap': 0, - 'python': 5, 'extras': 5, 'extrasp': 0, - 'sensor': 5, 'sensorp': 0} - PALS = ['turtlep', 'penp', 'numberp', 'flowp', 'boxp', 'sensorp', 'mediap', - 'extrasp'] - PALNAMES = [_('turtle'), _('pen'), _('number'), _('flow'), _('box'), - _('sensor'), _('media'), _('extras')] + TACAT = {'clean': 'forward', 'forward': 'forward', 'back': 'forward', 'left': 'forward', 'right': 'forward', 'arc': 'arc', 'xcor': 'coord', 'ycor': 'coord', 'heading': 'coord', 'setxy2': 'setxy', 'seth': 'setxy', 'penup': 'pen', 'pendown': 'pen', 'setpensize': 'pen', 'setcolor': 'pen', 'pensize': 'pen', 'color': 'pen', 'setshade': 'pen', 'setgray': 'pen', 'shade': 'pen', 'gray': 'pen', 'fillscreen': 'pen', 'startfill': 'fill', 'stopfill': 'fill', 'plus2': 'number', 'minus2': 'number', 'product2': 'number', 'division2': 'number', 'remainder2': 'number', 'sqrt': 'number', 'identity2': 'number', 'and2': 'boolean', 'or2': 'boolean', 'not': 'boolean', 'greater2': 'boolean', 'less2': 'boolean', 'equal2': 'boolean', 'random': 'random', 'repeat': 'repeat', 'forever': 'repeat', 'if': 'ifthen', 'ifelse': 'ifthen', 'while': 'ifthen', 'until': 'ifthen', 'hat': 'action', 'stack': 'action', 'storein': 'box', 'box': 'box', 'luminance': 'sensor', 'mousex': 'sensor', 'mousey': 'sensor', 'mousebutton2': 'sensor', 'keyboard': 'sensor', 'kbinput': 'sensor', 'readpixel': 'sensor', 'see': 'sensor', 'time': 'sensor', 'sound': 'sensor', 'volume': 'sensor', 'pitch': 'sensor', 'resistance': 'sensor', 'voltage': 'sensor', 'video': 'media', 'wait': 'media', 'camera': 'media', 'journal': 'media', 'audio': 'media', 'show': 'media', 'setscale': 'media', 'savepix': 'media', 'savesvg': 'media', 'mediawait': 'media', 'mediapause': 'media', 'mediastop': 'media', 'mediaplay': 'media', 'speak': 'media', 'sinewave': 'media', 'description': 'media', 'push': 'extras', 'pop': 'extras', 'printheap': 'extras', 'clearheap': 'extras', 'isheapempty2': 'extras', 'chr': 'extras', 'int': 'extras', 'myfunction': 'python', 'userdefined': 'python', 'loadblock': 'python', 'loadpalette': 'python'} + TAPAL = {'forward': 'turtlep', 'arc': 'turtlep', 'coord': 'turtlep', 'setxy': 'turtlep', 'pen': 'penp', 'fill': 'penp', 'number': 'numberp', 'random': 'numberp', 'boolean': 'numberp', 'repeat': 'flowp', 'ifthen': 'flowp', 'action': 'boxp', 'box': 'boxp', 'sensor': 'sensorp', 'media': 'mediap', 'extras': 'extrasp', 'python': 'extrasp'} + TASCORE = {'forward': 3, 'arc': 3, 'setxy': 2.5, 'coord': 4, 'turtlep': 5, 'pen': 2.5, 'fill': 2.5, 'penp': 5, 'number': 2.5, 'boolean': 2.5, 'random': 2.5, 'numberp': 0, 'repeat': 2.5, 'ifthen': 7.5, 'flowp': 10, 'box': 7.5, 'action': 7.5, 'boxp': 0, 'media': 5, 'mediap': 0, 'python': 5, 'extras': 5, 'extrasp': 0, 'sensor': 5, 'sensorp': 0} + PALS = ['turtlep', 'penp', 'numberp', 'flowp', 'boxp', 'sensorp', 'mediap', 'extrasp'] + PALNAMES = [_('turtle'), _('pen'), _('number'), _('flow'), _('box'), _('sensor'), _('media'), _('extras')] def hasturtleblocks(self, path): ''' Parse turtle block data and generate score based on rubric ''' @@ -213,6 +169,8 @@ def get_labels_name(self): MAX = 19 DIROFINTEREST = 'datastore' + + class ParseJournal(): ''' Simple parser of datastore ''' diff --git a/utils.py b/utils.py index 967447b..3b89712 100644 --- a/utils.py +++ b/utils.py @@ -17,9 +17,6 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -import gi -gi.require_version('Gtk', '3.0') -from gi.repository import Gtk, Gdk import os from sugar3 import profile @@ -30,17 +27,17 @@ def rgb2html(color): """Returns a html string from a Gdk color""" red = "%x" % int(color.red / 65535.0 * 255) if len(red) == 1: - red = "0%s" % red + red = "0%s" % red green = "%x" % int(color.green / 65535.0 * 255) if len(green) == 1: - green = "0%s" % green + green = "0%s" % green blue = "%x" % int(color.blue / 65535.0 * 255) if len(blue) == 1: - blue = "0%s" % blue + blue = "0%s" % blue new_color = "#%s%s%s" % (red, green, blue) @@ -94,7 +91,7 @@ def get_channels(): try: product = open(path).readline().strip() - except: + except OSError: product = None if product == '1' or product == '1.0': From c02848e90978d24a730658587a8912eaf0b1c91e Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 14:33:15 +0530 Subject: [PATCH 07/21] Fix traceback when no object is selected in _object_chooser --- activity.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/activity.py b/activity.py index 45f3391..b7f87c6 100644 --- a/activity.py +++ b/activity.py @@ -403,7 +403,7 @@ def _object_chooser(self, mime_type, type_name): alert.show() - return matches_mime_type, file_path, metadata['title'] + return matches_mime_type, file_path, metadata['title'] def _graph_from_reader(self, reader): self.labels_and_values.model.clear() @@ -439,11 +439,13 @@ def __import_journal_cb(self, widget): self._graph_from_reader(reader) def __import_turtle_cb(self, widget): - matches_mime_type, file_path, title = self._object_chooser( - 'application/x-turtle-art', _('Turtle')) - if matches_mime_type: - reader = TurtleReader(file_path) - self._graph_from_reader(reader) + try: + matches_mime_type, file_path, title = self._object_chooser('application/x-turtle-art', _('Turtle')) + if matches_mime_type: + reader = TurtleReader(file_path) + self._graph_from_reader(reader) + except TypeError: + return def _save_as_image(self, widget): if self.current_chart: From aa9065c7cbe4d3ac0666586c74f9a4c6349080b7 Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 14:59:57 +0530 Subject: [PATCH 08/21] Fetch translations and delete empty translations --- po/af.po | 192 ---------------------------------------------------- po/ak.po | 192 ---------------------------------------------------- po/am.po | 192 ---------------------------------------------------- po/an.po | 191 --------------------------------------------------- po/bg.po | 192 ---------------------------------------------------- po/bn.po | 192 ---------------------------------------------------- po/bn_IN.po | 192 ---------------------------------------------------- po/bs.po | 192 ---------------------------------------------------- po/cpp.po | 192 ---------------------------------------------------- po/da.po | 11 +-- po/dz.po | 192 ---------------------------------------------------- po/el.po | 192 ---------------------------------------------------- po/fa_AF.po | 192 ---------------------------------------------------- po/ff.po | 192 ---------------------------------------------------- po/fi.po | 192 ---------------------------------------------------- po/fil.po | 192 ---------------------------------------------------- po/gu.po | 192 ---------------------------------------------------- po/ha.po | 192 ---------------------------------------------------- po/he.po | 97 +++++++++++++------------- po/hi.po | 74 ++++++++++---------- po/hr.po | 191 --------------------------------------------------- po/hu.po | 191 --------------------------------------------------- po/hus.po | 192 ---------------------------------------------------- po/ibo.po | 191 --------------------------------------------------- po/id.po | 192 ---------------------------------------------------- po/ig.po | 192 ---------------------------------------------------- po/is.po | 192 ---------------------------------------------------- po/km.po | 192 ---------------------------------------------------- po/kn.po | 192 ---------------------------------------------------- po/ko.po | 192 ---------------------------------------------------- po/kos.po | 192 ---------------------------------------------------- po/ku.po | 192 ---------------------------------------------------- po/lt.po | 26 +++---- po/lv.po | 192 ---------------------------------------------------- po/mg.po | 192 ---------------------------------------------------- po/mi.po | 192 ---------------------------------------------------- po/mk.po | 192 ---------------------------------------------------- po/ml.po | 192 ---------------------------------------------------- po/mn.po | 192 ---------------------------------------------------- po/mr.po | 192 ---------------------------------------------------- po/mvo.po | 192 ---------------------------------------------------- po/na.po | 192 ---------------------------------------------------- po/nah.po | 192 ---------------------------------------------------- po/nb.po | 192 ---------------------------------------------------- po/ne.po | 192 ---------------------------------------------------- po/nn.po | 192 ---------------------------------------------------- po/pa.po | 192 ---------------------------------------------------- po/pap.po | 192 ---------------------------------------------------- po/pbs.po | 192 ---------------------------------------------------- po/ps.po | 192 ---------------------------------------------------- po/pt_BR.po | 14 ++-- po/quy.po | 192 ---------------------------------------------------- po/quz.po | 192 ---------------------------------------------------- po/rw.po | 192 ---------------------------------------------------- po/sd.po | 192 ---------------------------------------------------- po/si.po | 192 ---------------------------------------------------- po/sk.po | 192 ---------------------------------------------------- po/sl.po | 192 ---------------------------------------------------- po/sm.po | 192 ---------------------------------------------------- po/son.po | 192 ---------------------------------------------------- po/sq.po | 10 +-- po/sr.po | 192 ---------------------------------------------------- po/st.po | 192 ---------------------------------------------------- po/sw.po | 192 ---------------------------------------------------- po/ta.po | 192 ---------------------------------------------------- po/te.po | 192 ---------------------------------------------------- po/to.po | 192 ---------------------------------------------------- po/tr.po | 192 ---------------------------------------------------- po/tvl.po | 192 ---------------------------------------------------- po/tyv.po | 192 ---------------------------------------------------- po/tzm.po | 192 ---------------------------------------------------- po/tzo.po | 192 ---------------------------------------------------- po/ug.po | 192 ---------------------------------------------------- po/ur.po | 192 ---------------------------------------------------- po/vi.po | 192 ---------------------------------------------------- po/wa.po | 192 ---------------------------------------------------- po/yo.po | 191 --------------------------------------------------- po/zh_HK.po | 192 ---------------------------------------------------- po/zh_TW.po | 191 --------------------------------------------------- 79 files changed, 118 insertions(+), 14124 deletions(-) delete mode 100644 po/af.po delete mode 100644 po/ak.po delete mode 100644 po/am.po delete mode 100644 po/an.po delete mode 100644 po/bg.po delete mode 100644 po/bn.po delete mode 100644 po/bn_IN.po delete mode 100644 po/bs.po delete mode 100644 po/cpp.po delete mode 100644 po/dz.po delete mode 100644 po/el.po delete mode 100644 po/fa_AF.po delete mode 100644 po/ff.po delete mode 100644 po/fi.po delete mode 100644 po/fil.po delete mode 100644 po/gu.po delete mode 100644 po/ha.po delete mode 100644 po/hr.po delete mode 100644 po/hu.po delete mode 100644 po/hus.po delete mode 100644 po/ibo.po delete mode 100644 po/id.po delete mode 100644 po/ig.po delete mode 100644 po/is.po delete mode 100644 po/km.po delete mode 100644 po/kn.po delete mode 100644 po/ko.po delete mode 100644 po/kos.po delete mode 100644 po/ku.po delete mode 100644 po/lv.po delete mode 100644 po/mg.po delete mode 100644 po/mi.po delete mode 100644 po/mk.po delete mode 100644 po/ml.po delete mode 100644 po/mn.po delete mode 100644 po/mr.po delete mode 100644 po/mvo.po delete mode 100644 po/na.po delete mode 100644 po/nah.po delete mode 100644 po/nb.po delete mode 100644 po/ne.po delete mode 100644 po/nn.po delete mode 100644 po/pa.po delete mode 100644 po/pap.po delete mode 100644 po/pbs.po delete mode 100644 po/ps.po delete mode 100644 po/quy.po delete mode 100644 po/quz.po delete mode 100644 po/rw.po delete mode 100644 po/sd.po delete mode 100644 po/si.po delete mode 100644 po/sk.po delete mode 100644 po/sl.po delete mode 100644 po/sm.po delete mode 100644 po/son.po delete mode 100644 po/sr.po delete mode 100644 po/st.po delete mode 100644 po/sw.po delete mode 100644 po/ta.po delete mode 100644 po/te.po delete mode 100644 po/to.po delete mode 100644 po/tr.po delete mode 100644 po/tvl.po delete mode 100644 po/tyv.po delete mode 100644 po/tzm.po delete mode 100644 po/tzo.po delete mode 100644 po/ug.po delete mode 100644 po/ur.po delete mode 100644 po/vi.po delete mode 100644 po/wa.po delete mode 100644 po/yo.po delete mode 100644 po/zh_HK.po delete mode 100644 po/zh_TW.po diff --git a/po/af.po b/po/af.po deleted file mode 100644 index e466cfe..0000000 --- a/po/af.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ak.po b/po/ak.po deleted file mode 100644 index e466cfe..0000000 --- a/po/ak.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/am.po b/po/am.po deleted file mode 100644 index e466cfe..0000000 --- a/po/am.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/an.po b/po/an.po deleted file mode 100644 index b4cb613..0000000 --- a/po/an.po +++ /dev/null @@ -1,191 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: an\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.11.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/bg.po b/po/bg.po deleted file mode 100644 index e466cfe..0000000 --- a/po/bg.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/bn.po b/po/bn.po deleted file mode 100644 index e466cfe..0000000 --- a/po/bn.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/bn_IN.po b/po/bn_IN.po deleted file mode 100644 index e466cfe..0000000 --- a/po/bn_IN.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/bs.po b/po/bs.po deleted file mode 100644 index e466cfe..0000000 --- a/po/bs.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/cpp.po b/po/cpp.po deleted file mode 100644 index e466cfe..0000000 --- a/po/cpp.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/da.po b/po/da.po index 28dd77a..21bcafd 100644 --- a/po/da.po +++ b/po/da.po @@ -7,15 +7,16 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: 2012-10-16 14:21+0200\n" -"Last-Translator: Aputsiaq Niels \n" +"PO-Revision-Date: 2018-10-22 18:24+0000\n" +"Last-Translator: scootergrisen \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.5\n" +"X-Generator: Pootle 2.5.1.1\n" +"X-POOTLE-MTIME: 1540232687.000000\n" #. TRANS: "name" option from activity.info file msgid "Analyze Journal" @@ -28,7 +29,7 @@ msgstr "over over aktivitet fra Sugar-journal" #: activity.py:144 msgid "Save as image" -msgstr "Gem som et billede" +msgstr "Gem som billede" #: activity.py:153 msgid "Read Freespace data" @@ -69,7 +70,7 @@ msgstr "Det valgte objekt skal være en %s-fil" #: activity.py:399 activity.py:617 msgid "Ok" -msgstr "O.k." +msgstr "Ok" #: activity.py:446 msgid "Turtle" diff --git a/po/dz.po b/po/dz.po deleted file mode 100644 index e466cfe..0000000 --- a/po/dz.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/el.po b/po/el.po deleted file mode 100644 index e466cfe..0000000 --- a/po/el.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/fa_AF.po b/po/fa_AF.po deleted file mode 100644 index e466cfe..0000000 --- a/po/fa_AF.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ff.po b/po/ff.po deleted file mode 100644 index e466cfe..0000000 --- a/po/ff.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/fi.po b/po/fi.po deleted file mode 100644 index e466cfe..0000000 --- a/po/fi.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/fil.po b/po/fil.po deleted file mode 100644 index e466cfe..0000000 --- a/po/fil.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/gu.po b/po/gu.po deleted file mode 100644 index e466cfe..0000000 --- a/po/gu.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ha.po b/po/ha.po deleted file mode 100644 index e466cfe..0000000 --- a/po/ha.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/he.po b/po/he.po index e466cfe..df65fca 100644 --- a/po/he.po +++ b/po/he.po @@ -2,191 +2,192 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2018-02-28 14:00+0000\n" +"Last-Translator: Yaron \n" "Language-Team: LANGUAGE \n" -"Language: \n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.5.1.1\n" +"X-POOTLE-MTIME: 1519826452.000000\n" #. TRANS: "name" option from activity.info file msgid "Analyze Journal" -msgstr "" +msgstr "ניתוח יומן" #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file msgid "chart of Sugar Journal activity" -msgstr "" +msgstr "תרשים של יומן הפעילות של סוכר" #: activity.py:144 msgid "Save as image" -msgstr "" +msgstr "שמירה כתמונה" #: activity.py:153 msgid "Read Freespace data" -msgstr "" +msgstr "קריאת נתוני מקום פנוי" #: activity.py:159 msgid "Read Journal data" -msgstr "" +msgstr "קריאת נתוני יומן" #: activity.py:165 msgid "Read Turtle data" -msgstr "" +msgstr "קריאת נתוני צב" #: activity.py:176 msgid "Vertical Bar Chart" -msgstr "" +msgstr "תרשים עמודות אנכי" #: activity.py:183 msgid "Horizontal Bar Chart" -msgstr "" +msgstr "תרשים עמודות אופקי" #: activity.py:190 msgid "Pie Chart" -msgstr "" +msgstr "תרשים עוגה" #: activity.py:206 msgid "Fullscreen" -msgstr "" +msgstr "מסך מלא" #: activity.py:394 msgid "Invalid object" -msgstr "" +msgstr "פריט שגוי" #: activity.py:396 #, python-format msgid "The selected object must be a %s file" -msgstr "" +msgstr "הפריט הנבחר חייב להיות קובץ %s" #: activity.py:399 activity.py:617 msgid "Ok" -msgstr "" +msgstr "אישור" #: activity.py:446 msgid "Turtle" -msgstr "" +msgstr "צב" #: activity.py:536 msgid "Label" -msgstr "" +msgstr "תווית" #: activity.py:547 msgid "Value" -msgstr "" +msgstr "ערך" #: activity.py:612 msgid "Invalid Value" -msgstr "" +msgstr "ערך שגוי" #: activity.py:614 msgid "The value must be a number (integer or decimal)" -msgstr "" +msgstr "הערך חייב להיות מספר (שלם או עשרוני)" #: charthelp.py:12 msgid "Basic usage" -msgstr "" +msgstr "שימוש בסיסי" #: charthelp.py:13 msgid "First select data type:" -msgstr "" +msgstr "תחילה יש לבחור את סוג הנתונים:" #: charthelp.py:14 msgid "The free space in the Journal;" -msgstr "" +msgstr "המקום הפנוי ביומן;" #: charthelp.py:16 msgid "The types of Sugar Activities you have used;" -msgstr "" +msgstr "סוגי הפעילויות בסוכר בהן השתמשת;" #: charthelp.py:18 msgid "The types of blocks used in Turtle Art." -msgstr "" +msgstr "סוג הלבנים בהן נעשה שימוש באומנות צב." #: charthelp.py:20 msgid "The graph title is the same as the Activity title" -msgstr "" +msgstr "כותרת התרשים זהה לכותרת הפעילות" #: charthelp.py:22 msgid "You can change the type of graph:" -msgstr "" +msgstr "ניתן לשנות את סוג התרשים:" #: charthelp.py:23 msgid "Vertical bars" -msgstr "" +msgstr "עמודות אנכיות" #: charthelp.py:24 msgid "Horizontal bars" -msgstr "" +msgstr "עמודות אופקיות" #: charthelp.py:25 msgid "Lines" -msgstr "" +msgstr "קווים" #: charthelp.py:26 msgid "Pie" -msgstr "" +msgstr "עוגה" #: charthelp.py:28 msgid "Saving as an image" -msgstr "" +msgstr "שמירה כתמונה" #: charthelp.py:29 msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" +msgstr "בסרגל כלי הפעילות מופיע כפתור לשמירת התרשים כתמונה" #: helpbutton.py:36 msgid "Help" -msgstr "" +msgstr "עזרה" #: readers.py:41 msgid "Free space" -msgstr "" +msgstr "מקום פנוי" #: readers.py:42 msgid "Used space" -msgstr "" +msgstr "מקום מנוצל" #: readers.py:144 msgid "turtle" -msgstr "" +msgstr "צב" #: readers.py:144 msgid "pen" -msgstr "" +msgstr "עט" #: readers.py:144 msgid "number" -msgstr "" +msgstr "מספר" #: readers.py:144 msgid "flow" -msgstr "" +msgstr "זרימה" #: readers.py:144 msgid "box" -msgstr "" +msgstr "תיבה" #: readers.py:145 msgid "sensor" -msgstr "" +msgstr "חיישן" #: readers.py:145 msgid "media" -msgstr "" +msgstr "מדיה" #: readers.py:145 msgid "extras" -msgstr "" +msgstr "תוספות" #: readers.py:270 msgid "other" -msgstr "" +msgstr "אחר" diff --git a/po/hi.po b/po/hi.po index 8c7eb9f..4645930 100644 --- a/po/hi.po +++ b/po/hi.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: 2017-04-04 16:23+0000\n" -"Last-Translator: GeeKrypter \n" +"PO-Revision-Date: 2020-04-03 09:24+0000\n" +"Last-Translator: Jui \n" "Language-Team: LANGUAGE \n" "Language: hi\n" "MIME-Version: 1.0\n" @@ -16,40 +16,40 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.1.1\n" -"X-POOTLE-MTIME: 1491323018.000000\n" +"X-POOTLE-MTIME: 1585905866.000000\n" #. TRANS: "name" option from activity.info file msgid "Analyze Journal" -msgstr "" +msgstr "जर्नल का विश्लेषण करें" #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file msgid "chart of Sugar Journal activity" -msgstr "" +msgstr "सुगर जर्नल गतिविधि का चार्ट" #: activity.py:144 msgid "Save as image" -msgstr "" +msgstr "छवि के रूप में सहेजें" #: activity.py:153 msgid "Read Freespace data" -msgstr "" +msgstr "फ्रीस्पेस डेटा पढ़ें" #: activity.py:159 msgid "Read Journal data" -msgstr "" +msgstr "जर्नल डेटा पढ़ें" #: activity.py:165 msgid "Read Turtle data" -msgstr "" +msgstr "कछुए डेटा पढ़ें" #: activity.py:176 msgid "Vertical Bar Chart" -msgstr "" +msgstr "वर्टिकल बार चार्ट" #: activity.py:183 msgid "Horizontal Bar Chart" -msgstr "" +msgstr "क्षैतिज बार चार्ट" #: activity.py:190 msgid "Pie Chart" @@ -61,12 +61,12 @@ msgstr "पूर्ण स्क्रीन" #: activity.py:394 msgid "Invalid object" -msgstr "" +msgstr "अमान्य वस्तु" #: activity.py:396 #, python-format msgid "The selected object must be a %s file" -msgstr "" +msgstr "चयनित वस्तु एक% s फ़ाइल होनी चाहिए" #: activity.py:399 activity.py:617 msgid "Ok" @@ -74,7 +74,7 @@ msgstr "ठीक" #: activity.py:446 msgid "Turtle" -msgstr "" +msgstr "कछुआ" #: activity.py:536 msgid "Label" @@ -86,63 +86,63 @@ msgstr "मूल्य" #: activity.py:612 msgid "Invalid Value" -msgstr "" +msgstr "अमान्य मूल्य" #: activity.py:614 msgid "The value must be a number (integer or decimal)" -msgstr "" +msgstr "मान एक संख्या (पूर्णांक या दशमलव) होना चाहिए" #: charthelp.py:12 msgid "Basic usage" -msgstr "" +msgstr "मूल उपयोग" #: charthelp.py:13 msgid "First select data type:" -msgstr "" +msgstr "पहले डेटा प्रकार चुनें:" #: charthelp.py:14 msgid "The free space in the Journal;" -msgstr "" +msgstr "जर्नल में मुक्त स्थान;" #: charthelp.py:16 msgid "The types of Sugar Activities you have used;" -msgstr "" +msgstr "आपके द्वारा उपयोग की जाने वाली चीनी गतिविधियों के प्रकार;" #: charthelp.py:18 msgid "The types of blocks used in Turtle Art." -msgstr "" +msgstr "टार्टल आर्ट में प्रयुक्त ब्लॉक के प्रकार।" #: charthelp.py:20 msgid "The graph title is the same as the Activity title" -msgstr "" +msgstr "ग्राफ शीर्षक खेल शीर्षक के समान है" #: charthelp.py:22 msgid "You can change the type of graph:" -msgstr "" +msgstr "आप ग्राफ के शीर्षक को बदल सकते हैं:" #: charthelp.py:23 msgid "Vertical bars" -msgstr "" +msgstr "लंबवत पट्टियाँ" #: charthelp.py:24 msgid "Horizontal bars" -msgstr "" +msgstr "क्षैतिज पट्टियाँ" #: charthelp.py:25 msgid "Lines" -msgstr "" +msgstr "पंक्तियां" #: charthelp.py:26 msgid "Pie" -msgstr "" +msgstr "पाई" #: charthelp.py:28 msgid "Saving as an image" -msgstr "" +msgstr "एक छवि के रूप में रखना" #: charthelp.py:29 msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" +msgstr "खेल टूलबार में आपके पास छवि के रूप में ग्राफ को बचाने के लिए एक बटन है" #: helpbutton.py:36 msgid "Help" @@ -150,15 +150,15 @@ msgstr "मदद" #: readers.py:41 msgid "Free space" -msgstr "" +msgstr "खाली जगह" #: readers.py:42 msgid "Used space" -msgstr "" +msgstr "उपयोग में लाया गया स्थान" #: readers.py:144 msgid "turtle" -msgstr "" +msgstr "टार्टल" #: readers.py:144 msgid "pen" @@ -170,7 +170,7 @@ msgstr "संख्या" #: readers.py:144 msgid "flow" -msgstr "" +msgstr "प्रवाह" #: readers.py:144 msgid "box" @@ -178,16 +178,16 @@ msgstr "डिब्बा" #: readers.py:145 msgid "sensor" -msgstr "" +msgstr "सेंसर" #: readers.py:145 msgid "media" -msgstr "" +msgstr "मीडिया" #: readers.py:145 msgid "extras" -msgstr "" +msgstr "एक्स्ट्रा " #: readers.py:270 msgid "other" -msgstr "" +msgstr "अन्य" diff --git a/po/hr.po b/po/hr.po deleted file mode 100644 index 81c03ce..0000000 --- a/po/hr.po +++ /dev/null @@ -1,191 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: hr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.11.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/hu.po b/po/hu.po deleted file mode 100644 index 09e4b58..0000000 --- a/po/hu.po +++ /dev/null @@ -1,191 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: hu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/hus.po b/po/hus.po deleted file mode 100644 index e466cfe..0000000 --- a/po/hus.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ibo.po b/po/ibo.po deleted file mode 100644 index 3f0253a..0000000 --- a/po/ibo.po +++ /dev/null @@ -1,191 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: ibo\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.11.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/id.po b/po/id.po deleted file mode 100644 index e466cfe..0000000 --- a/po/id.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ig.po b/po/ig.po deleted file mode 100644 index e466cfe..0000000 --- a/po/ig.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/is.po b/po/is.po deleted file mode 100644 index e466cfe..0000000 --- a/po/is.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/km.po b/po/km.po deleted file mode 100644 index e466cfe..0000000 --- a/po/km.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/kn.po b/po/kn.po deleted file mode 100644 index e466cfe..0000000 --- a/po/kn.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ko.po b/po/ko.po deleted file mode 100644 index e466cfe..0000000 --- a/po/ko.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/kos.po b/po/kos.po deleted file mode 100644 index e466cfe..0000000 --- a/po/kos.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ku.po b/po/ku.po deleted file mode 100644 index e466cfe..0000000 --- a/po/ku.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/lt.po b/po/lt.po index e466cfe..69b8b13 100644 --- a/po/lt.po +++ b/po/lt.po @@ -2,20 +2,22 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2017-11-10 22:03+0000\n" +"Last-Translator: Moo \n" "Language-Team: LANGUAGE \n" -"Language: \n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.5.1.1\n" +"X-POOTLE-MTIME: 1510351438.000000\n" #. TRANS: "name" option from activity.info file msgid "Analyze Journal" @@ -28,7 +30,7 @@ msgstr "" #: activity.py:144 msgid "Save as image" -msgstr "" +msgstr "Įrašyti kaip paveikslą" #: activity.py:153 msgid "Read Freespace data" @@ -60,7 +62,7 @@ msgstr "" #: activity.py:394 msgid "Invalid object" -msgstr "" +msgstr "Neteisingas objektas" #: activity.py:396 #, python-format @@ -69,7 +71,7 @@ msgstr "" #: activity.py:399 activity.py:617 msgid "Ok" -msgstr "" +msgstr "Gerai" #: activity.py:446 msgid "Turtle" @@ -77,19 +79,19 @@ msgstr "" #: activity.py:536 msgid "Label" -msgstr "" +msgstr "Etiketė" #: activity.py:547 msgid "Value" -msgstr "" +msgstr "Reikšmė" #: activity.py:612 msgid "Invalid Value" -msgstr "" +msgstr "Neteisinga reikšmė" #: activity.py:614 msgid "The value must be a number (integer or decimal)" -msgstr "" +msgstr "Reikšmė privalo būti skaičius (sveikasis arba dešimtainis)" #: charthelp.py:12 msgid "Basic usage" diff --git a/po/lv.po b/po/lv.po deleted file mode 100644 index e466cfe..0000000 --- a/po/lv.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/mg.po b/po/mg.po deleted file mode 100644 index e466cfe..0000000 --- a/po/mg.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/mi.po b/po/mi.po deleted file mode 100644 index e466cfe..0000000 --- a/po/mi.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/mk.po b/po/mk.po deleted file mode 100644 index e466cfe..0000000 --- a/po/mk.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ml.po b/po/ml.po deleted file mode 100644 index e466cfe..0000000 --- a/po/ml.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/mn.po b/po/mn.po deleted file mode 100644 index e466cfe..0000000 --- a/po/mn.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/mr.po b/po/mr.po deleted file mode 100644 index e466cfe..0000000 --- a/po/mr.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/mvo.po b/po/mvo.po deleted file mode 100644 index e466cfe..0000000 --- a/po/mvo.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/na.po b/po/na.po deleted file mode 100644 index e466cfe..0000000 --- a/po/na.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/nah.po b/po/nah.po deleted file mode 100644 index e466cfe..0000000 --- a/po/nah.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/nb.po b/po/nb.po deleted file mode 100644 index e466cfe..0000000 --- a/po/nb.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ne.po b/po/ne.po deleted file mode 100644 index e466cfe..0000000 --- a/po/ne.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/nn.po b/po/nn.po deleted file mode 100644 index e466cfe..0000000 --- a/po/nn.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/pa.po b/po/pa.po deleted file mode 100644 index e466cfe..0000000 --- a/po/pa.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/pap.po b/po/pap.po deleted file mode 100644 index e466cfe..0000000 --- a/po/pap.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/pbs.po b/po/pbs.po deleted file mode 100644 index e466cfe..0000000 --- a/po/pbs.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ps.po b/po/ps.po deleted file mode 100644 index e466cfe..0000000 --- a/po/ps.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index fae6403..49c80fc 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: 2016-08-02 17:52+0000\n" -"Last-Translator: betoraposa \n" +"PO-Revision-Date: 2018-09-10 20:21+0000\n" +"Last-Translator: Paulo Francisco \n" "Language-Team: LANGUAGE \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.1.1\n" -"X-POOTLE-MTIME: 1470160379.000000\n" +"X-POOTLE-MTIME: 1536610872.000000\n" #. TRANS: "name" option from activity.info file msgid "Analyze Journal" @@ -33,7 +33,7 @@ msgstr "Salvar como imagem" #: activity.py:153 msgid "Read Freespace data" -msgstr "Ler dados do Freespace" +msgstr "Ler dados do espaço livre" #: activity.py:159 msgid "Read Journal data" @@ -41,7 +41,7 @@ msgstr "Ler dados do Diário" #: activity.py:165 msgid "Read Turtle data" -msgstr "Ler dados de Tartaruga" +msgstr "Ler dados da Tartaruga" #: activity.py:176 msgid "Vertical Bar Chart" @@ -78,7 +78,7 @@ msgstr "Tartaruga" #: activity.py:536 msgid "Label" -msgstr "Rótulo" +msgstr "Etiqueta" #: activity.py:547 msgid "Value" @@ -98,7 +98,7 @@ msgstr "Uso básico" #: charthelp.py:13 msgid "First select data type:" -msgstr "Primeiro, selecione o tipo de dado:" +msgstr "Primeiro selecione o tipo de dados:" #: charthelp.py:14 msgid "The free space in the Journal;" diff --git a/po/quy.po b/po/quy.po deleted file mode 100644 index e466cfe..0000000 --- a/po/quy.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/quz.po b/po/quz.po deleted file mode 100644 index e466cfe..0000000 --- a/po/quz.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/rw.po b/po/rw.po deleted file mode 100644 index e466cfe..0000000 --- a/po/rw.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/sd.po b/po/sd.po deleted file mode 100644 index e466cfe..0000000 --- a/po/sd.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/si.po b/po/si.po deleted file mode 100644 index e466cfe..0000000 --- a/po/si.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/sk.po b/po/sk.po deleted file mode 100644 index e466cfe..0000000 --- a/po/sk.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/sl.po b/po/sl.po deleted file mode 100644 index e466cfe..0000000 --- a/po/sl.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/sm.po b/po/sm.po deleted file mode 100644 index e466cfe..0000000 --- a/po/sm.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/son.po b/po/son.po deleted file mode 100644 index e466cfe..0000000 --- a/po/son.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/sq.po b/po/sq.po index e01bc42..f5961e1 100644 --- a/po/sq.po +++ b/po/sq.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: 2017-05-24 05:58+0000\n" -"Last-Translator: Chris \n" +"PO-Revision-Date: 2018-02-10 15:57+0000\n" +"Last-Translator: Besnik_b \n" "Language-Team: LANGUAGE \n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.1.1\n" -"X-POOTLE-MTIME: 1495605536.000000\n" +"X-POOTLE-MTIME: 1518278264.000000\n" #. TRANS: "name" option from activity.info file msgid "Analyze Journal" @@ -138,7 +138,7 @@ msgstr "Rrethore" #: charthelp.py:28 msgid "Saving as an image" -msgstr "Po ruhet si pamje" +msgstr "Ruajtje si pamje" #: charthelp.py:29 msgid "In the activity toolbar you have button to save the graph as an image" @@ -160,7 +160,7 @@ msgstr "Hapësirë e përdorur" #: readers.py:144 msgid "turtle" -msgstr "breshka" +msgstr "breshkë" #: readers.py:144 msgid "pen" diff --git a/po/sr.po b/po/sr.po deleted file mode 100644 index e466cfe..0000000 --- a/po/sr.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/st.po b/po/st.po deleted file mode 100644 index e466cfe..0000000 --- a/po/st.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/sw.po b/po/sw.po deleted file mode 100644 index e466cfe..0000000 --- a/po/sw.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ta.po b/po/ta.po deleted file mode 100644 index e466cfe..0000000 --- a/po/ta.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/te.po b/po/te.po deleted file mode 100644 index e466cfe..0000000 --- a/po/te.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/to.po b/po/to.po deleted file mode 100644 index e466cfe..0000000 --- a/po/to.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/tr.po b/po/tr.po deleted file mode 100644 index e466cfe..0000000 --- a/po/tr.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/tvl.po b/po/tvl.po deleted file mode 100644 index e466cfe..0000000 --- a/po/tvl.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/tyv.po b/po/tyv.po deleted file mode 100644 index e466cfe..0000000 --- a/po/tyv.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/tzm.po b/po/tzm.po deleted file mode 100644 index e466cfe..0000000 --- a/po/tzm.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/tzo.po b/po/tzo.po deleted file mode 100644 index e466cfe..0000000 --- a/po/tzo.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ug.po b/po/ug.po deleted file mode 100644 index e466cfe..0000000 --- a/po/ug.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/ur.po b/po/ur.po deleted file mode 100644 index e466cfe..0000000 --- a/po/ur.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/vi.po b/po/vi.po deleted file mode 100644 index e466cfe..0000000 --- a/po/vi.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/wa.po b/po/wa.po deleted file mode 100644 index e466cfe..0000000 --- a/po/wa.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/yo.po b/po/yo.po deleted file mode 100644 index 4839a98..0000000 --- a/po/yo.po +++ /dev/null @@ -1,191 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: yo\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/zh_HK.po b/po/zh_HK.po deleted file mode 100644 index e466cfe..0000000 --- a/po/zh_HK.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po deleted file mode 100644 index 7f8b374..0000000 --- a/po/zh_TW.po +++ /dev/null @@ -1,191 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: zh_TW\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.7.0\n" - -#. TRANS: "name" option from activity.info file -msgid "Analyze Journal" -msgstr "" - -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file -msgid "chart of Sugar Journal activity" -msgstr "" - -#: activity.py:144 -msgid "Save as image" -msgstr "" - -#: activity.py:153 -msgid "Read Freespace data" -msgstr "" - -#: activity.py:159 -msgid "Read Journal data" -msgstr "" - -#: activity.py:165 -msgid "Read Turtle data" -msgstr "" - -#: activity.py:176 -msgid "Vertical Bar Chart" -msgstr "" - -#: activity.py:183 -msgid "Horizontal Bar Chart" -msgstr "" - -#: activity.py:190 -msgid "Pie Chart" -msgstr "" - -#: activity.py:206 -msgid "Fullscreen" -msgstr "" - -#: activity.py:394 -msgid "Invalid object" -msgstr "" - -#: activity.py:396 -#, python-format -msgid "The selected object must be a %s file" -msgstr "" - -#: activity.py:399 activity.py:617 -msgid "Ok" -msgstr "" - -#: activity.py:446 -msgid "Turtle" -msgstr "" - -#: activity.py:536 -msgid "Label" -msgstr "" - -#: activity.py:547 -msgid "Value" -msgstr "" - -#: activity.py:612 -msgid "Invalid Value" -msgstr "" - -#: activity.py:614 -msgid "The value must be a number (integer or decimal)" -msgstr "" - -#: charthelp.py:12 -msgid "Basic usage" -msgstr "" - -#: charthelp.py:13 -msgid "First select data type:" -msgstr "" - -#: charthelp.py:14 -msgid "The free space in the Journal;" -msgstr "" - -#: charthelp.py:16 -msgid "The types of Sugar Activities you have used;" -msgstr "" - -#: charthelp.py:18 -msgid "The types of blocks used in Turtle Art." -msgstr "" - -#: charthelp.py:20 -msgid "The graph title is the same as the Activity title" -msgstr "" - -#: charthelp.py:22 -msgid "You can change the type of graph:" -msgstr "" - -#: charthelp.py:23 -msgid "Vertical bars" -msgstr "" - -#: charthelp.py:24 -msgid "Horizontal bars" -msgstr "" - -#: charthelp.py:25 -msgid "Lines" -msgstr "" - -#: charthelp.py:26 -msgid "Pie" -msgstr "" - -#: charthelp.py:28 -msgid "Saving as an image" -msgstr "" - -#: charthelp.py:29 -msgid "In the activity toolbar you have button to save the graph as an image" -msgstr "" - -#: helpbutton.py:36 -msgid "Help" -msgstr "" - -#: readers.py:41 -msgid "Free space" -msgstr "" - -#: readers.py:42 -msgid "Used space" -msgstr "" - -#: readers.py:144 -msgid "turtle" -msgstr "" - -#: readers.py:144 -msgid "pen" -msgstr "" - -#: readers.py:144 -msgid "number" -msgstr "" - -#: readers.py:144 -msgid "flow" -msgstr "" - -#: readers.py:144 -msgid "box" -msgstr "" - -#: readers.py:145 -msgid "sensor" -msgstr "" - -#: readers.py:145 -msgid "media" -msgstr "" - -#: readers.py:145 -msgid "extras" -msgstr "" - -#: readers.py:270 -msgid "other" -msgstr "" From 3699390b091e451b44b41b195313d73bc004b4f3 Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 15:05:58 +0530 Subject: [PATCH 09/21] refresh pot file --- po/AnalyzeJournal.pot | 64 +++++++++++++++++++++---------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/po/AnalyzeJournal.pot b/po/AnalyzeJournal.pot index f660370..c7cd712 100644 --- a/po/AnalyzeJournal.pot +++ b/po/AnalyzeJournal.pot @@ -8,20 +8,20 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-04 00:32-0400\n" +"POT-Creation-Date: 2020-04-03 15:03+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#. TRANS: "name" option from activity.info file +#: activity/activity.info:2 msgid "Analyze Journal" msgstr "" -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file +#: activity/activity.info:3 msgid "chart of Sugar Journal activity" msgstr "" @@ -57,20 +57,20 @@ msgstr "" msgid "Fullscreen" msgstr "" -#: activity.py:394 +#: activity.py:393 msgid "Invalid object" msgstr "" -#: activity.py:396 +#: activity.py:394 #, python-format msgid "The selected object must be a %s file" msgstr "" -#: activity.py:399 activity.py:617 +#: activity.py:397 activity.py:611 msgid "Ok" msgstr "" -#: activity.py:446 +#: activity.py:443 msgid "Turtle" msgstr "" @@ -82,11 +82,11 @@ msgstr "" msgid "Value" msgstr "" -#: activity.py:612 +#: activity.py:607 msgid "Invalid Value" msgstr "" -#: activity.py:614 +#: activity.py:608 msgid "The value must be a number (integer or decimal)" msgstr "" @@ -102,90 +102,90 @@ msgstr "" msgid "The free space in the Journal;" msgstr "" -#: charthelp.py:16 +#: charthelp.py:15 msgid "The types of Sugar Activities you have used;" msgstr "" -#: charthelp.py:18 +#: charthelp.py:16 msgid "The types of blocks used in Turtle Art." msgstr "" -#: charthelp.py:20 +#: charthelp.py:17 msgid "The graph title is the same as the Activity title" msgstr "" -#: charthelp.py:22 +#: charthelp.py:19 msgid "You can change the type of graph:" msgstr "" -#: charthelp.py:23 +#: charthelp.py:20 msgid "Vertical bars" msgstr "" -#: charthelp.py:24 +#: charthelp.py:21 msgid "Horizontal bars" msgstr "" -#: charthelp.py:25 +#: charthelp.py:22 msgid "Lines" msgstr "" -#: charthelp.py:26 +#: charthelp.py:23 msgid "Pie" msgstr "" -#: charthelp.py:28 +#: charthelp.py:25 msgid "Saving as an image" msgstr "" -#: charthelp.py:29 +#: charthelp.py:26 msgid "In the activity toolbar you have button to save the graph as an image" msgstr "" -#: helpbutton.py:36 +#: helpbutton.py:38 msgid "Help" msgstr "" -#: readers.py:41 +#: readers.py:40 msgid "Free space" msgstr "" -#: readers.py:42 +#: readers.py:41 msgid "Used space" msgstr "" -#: readers.py:144 +#: readers.py:100 msgid "turtle" msgstr "" -#: readers.py:144 +#: readers.py:100 msgid "pen" msgstr "" -#: readers.py:144 +#: readers.py:100 msgid "number" msgstr "" -#: readers.py:144 +#: readers.py:100 msgid "flow" msgstr "" -#: readers.py:144 +#: readers.py:100 msgid "box" msgstr "" -#: readers.py:145 +#: readers.py:100 msgid "sensor" msgstr "" -#: readers.py:145 +#: readers.py:100 msgid "media" msgstr "" -#: readers.py:145 +#: readers.py:100 msgid "extras" msgstr "" -#: readers.py:270 +#: readers.py:227 msgid "other" msgstr "" From 12d739d7a4f3c1483c6dfe1ad393f0bf05c8ccbc Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 15:07:13 +0530 Subject: [PATCH 10/21] Add .flake8, not added in flake8 fix --- .flake8 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..690f9dc --- /dev/null +++ b/.flake8 @@ -0,0 +1,10 @@ +[flake8] + +# E402 module level import not at top of file +# gi.require_version() is required before later imports + +ignore = E402, E501 + +#E501 line too long +#readers.py definition of TACAT, TAPAL, TASCORE can't be shortened + From fcd40b6690dbaa891007f42904aa547c1eb96da4 Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 15:13:27 +0530 Subject: [PATCH 11/21] Added Screenshots --- .../Screenshot from 2020-04-03 15-09-42.png | Bin 0 -> 49710 bytes .../Screenshot from 2020-04-03 15-10-33.png | Bin 0 -> 59934 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 Screenshots/Screenshot from 2020-04-03 15-09-42.png create mode 100644 Screenshots/Screenshot from 2020-04-03 15-10-33.png diff --git a/Screenshots/Screenshot from 2020-04-03 15-09-42.png b/Screenshots/Screenshot from 2020-04-03 15-09-42.png new file mode 100644 index 0000000000000000000000000000000000000000..8d9f55238cff64ae2ae75b3145ca9a36a3d82c8c GIT binary patch literal 49710 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Ν5|SFO3MuCPZFi1&X-bMY5E{ZA=;)w%5VX$?c+ zd+V_pb23VtfQ@0}c^3YKOUig@t@1TyhzXmaq8OzyfOn0pTM46?tuNUVuGPiCOV6_XizINVKEMT`YepQ#7|cznQc8Vt1d! zq0#)iG!6Yl*En&aWu|WDSzW>-hcCJ5LT0TOW`e&Of2%1Dn(EmSrG$lbrEb~L8{U1h z`|UqKh^Yd|TB8k0%vR0(=96r<0ej^#C;Q&l!UNVl7bhomz_-}Y^gCEkB{sGbmFB+* zJ6!W=?r&*%&cwvz30Th@0ps4<6JXs0z<_HAq{;Me(Dnhw*X-(sIewAe&B;~&rb$4* z9?(c!DhO?Vj9mAdEC>yyfMEguE()k1E<3yWeb}$OGvOHr@zUWTCOMNs6#*s)p5c zp5M4IG1{MHjP%oI&;m1WIR;)IvQF(6cc)TfyXbx=5jH_?sii0t}&e&~S56DNO z`&5+o&-7IfsxMSDRX4qpVzQVmpG ziUH*>pevo!b95|doi6oW|5?=Nx2x(dH+?*Rrx_g?NnK=Ap>*ZS6+k>#Kh-<~7!?O2 z?)=P~1nUjR-usiq9X)}x%-5>aW5J_EWqIsH!G@1O3mP{xw7gcoJ_y7dxnO|t9SL~9 zy{1}7v-|CxC+hUqpLIyzxV129zFysYSR~N6t-Bj2#)NC!{ki-T$Ve{}06X*2pN$!p zDIieOC%ZeIE2phSszOKDQ7An=06XcioHxFr7+d)m?{-< zb_!^3BY~FFHqdfXnwy(jT3bu7HtMnxL9Uc_U>tC~vc$zKCKi?fNOebCOw6u7M+5qo zC*VauwxENj&{vl`8wU{#gR%kX>T;O*L8jB#AdoYL=2x(GHdb`dXLA-d;oi;P zB%cMA8&D_P0aEt0N+43Y2-Gd$YHDG?h%1AR1A!>tdPCrR$#EbM#US=Y1)|`**+5np zjYh+qot=S<`TL*5!Rj=EpP0Bf9?0}A5O%-uoCcVWQ}N2F99sm9-olOzvxUoBokd>! z)|fV?K59orbAz#l;3)3(3o}k39}M$jVWva!A5#Mk>-_B&duk~=N3d08So;qSh3_jz z!bct(CH&f`(M*$pRI2lei#21nxDS9{ED~_dTPNoLN?#ykD{x30YBuootpyCKUO;7_ zTTH`wyhaC5iZ)MyDJ(Xvx6(|LtpElgyEhx>GF9^{lyAIbtkxqpkl3G|Us0i#q^<16@+NjxCV><9K-0DT4-2V7r28+?wo z+LXG^6p>$Fzn>B`>3>?5UkMHM8GO=Bn>)8;l|CT)D=_4azdy{GmidufksxujwKV9?y#t{wg zDiQ*;+{-`;r~=Xef}R?vx#Iw*ZZ=@|1uz$|=8^tkrv_*?tc1VP%prOG8=txBQ$+AT)1Cr-_mpVN6>O{RExDR=-(Lvbm*Q&pdcRFZF zpZzBR$bZ6O1NXYk9Y8V;ezRZnyG)i=z>*$vt#)A>kkl_~xFX|j*!%mNl%4(KfB!W4 zT`nr+FG9>7FsVsiiK@a+a~6iXRK51B5JxqKrwmMcD$2tQ7CSms51Y{x0z#;I_ne`04LIzA$4-nTDYyd@b9-w6&_3$?| zOaz8Eu`lht@*|Q}T1-Z!&^2J$7~(bc0)Cv2LMf&nA1r(y_QeC$P!I-_y`A0MeusAj z4~-l}qVG(AKSY&NQhgO*mW5&Q{ka5)UY`gA6P{EbE`mUh5=jboaBu*!dbw62zDkRE zX!M5Z{s^>yfX~(?STPoh$3Vh}d~uzNFUZ;6(-#B36&Df7oT&HVyG((ut3v?U#_T{s zf%)FKNR!F$j-H-y`QyFs5ST23Q6b8$LLOv5VZA8mpd-k$xwx^>bgar*dZF35X|992 z_vG;PLqU4?Ubz~}qV3ljnuM&J?QlV3d(B0VE2Z&Ep(4vCm!!+GkhXb--Qjgtn60#gbCSK!u%Nfr11KDh?%8&8V=Ib_vK3)nFNG1=bAN)gginy8G3 zh^SQ}uIRe*B=*N|&65&GWd&b=9`Qcgv=-s;X|cACCcI zSQjE9BbT6X31*)*f8{U@tq&Q^H^n(aKP`reV9ZZOmWg5B`u-5D7}CzEcW4L zXC>3^_~?oJnz|Q_Vgl!=R^%q`7@?o>v-Wv(ipVAk3?0Mb3q(`*=XPlUsP?%2lOvKe zkgd=*Dj|vLe)9%nb#VL5hDMn>kJatscgeh|_kW*V0g=W4T=gVMHs{3)Qho$R1*jo- z@UhX+(GfxRR#03lFj7?npmiz2)jx}}?Z-|Cz z0*-EdBcr6Pe(z?0w?HF;kS!PhrQ+ zeJ%I<1(_=R z0(K`xD{P~{FxU_K*zrJ?U;q$j7Xc||AbznFDZS>_ykias*Kt^Erp5<})UACDDG;=P zvZW`GmsfMQk*;!?$X8|$fKR(UTKE0#cSEY)p$Jjw@X0xZ52nQJQN^u55-kT@#&M#~ ztG{ZM%#9w684ypQx|VgM9}$i+#OlZ<-X03W>o!K;mVI)>X?EngM%l41Q8;wJsy&sV zGUSy2BU>L=Tid9NOeXG0mWW5ATIjH@LNJ{WQ&(ymw=f@D;2+BXKqUS2rK0xcDry4+ zg}q+XKOqz+bsEXSCy~_D*GxQbOvt~WdO2)|3eqfZB^3o;jg?568NJLl^k#qywxm9W z6gJIg(96CX8&YG*X?gW7t@OTt)cd4ZxT>Ra2gbz{zO1Z-@wJ*=A^+_=k^?tRm@xSm zd+pJpOZ{rq$3(ZEaz`6cSZEWwo1I9%N^Th(Jq3xbG4Kg|8?l<3z??iz*)_!iWW-v0sVd86Ef@b(av6)Km zU?q+Vo7wqXM{mi5%+pqPnbfzs=AgB!r9Sp3ESmByz4inaS5k$#NHNuR@LLE*P37(Mg<vRuSw2TPGwrcP5F5$uY_)r5Z&~SGblT*rN*M*oJUqFZ+vk$EqTgvmByc;n*Vc zWN8hQB@4lB-b6;U$l1+|hSbhHff(%onc^=YHB2*4`IFxNz;0X+*9tF?@eTZ>5vzy3 z8Fe=!v+gt646ev9PU?S;<77`k?TV0AS5|LHLZ|4z+_BiHJTWm2LX?y!$IF?1@7B$H zRc?K8nL_?H+an{a&;T<9nvX?S>n3VVduR7WbkY58Y_zpwOBEUV-Bm{P?RZ^ZUUVp2 z6&Lar!=+Wh%g}Vpx>~Fa+ zF>R&92wBZh^Sn;EmZ7c$j!A=aH)Q~KJrOZ*q=*#?o?Q1l|8wnd4xB!|>v|k1Coeen zj(uz6M$P%05jsQ*?6&mYRi!H0O=Q+np73yW$!g_aam`wixY#W#n-rz9l}M>R{|zACSN!m%**&^zSJ=HEui^D`Dny}8HMF&;tA+%vDDth%J6Z^U~C zYUQBdU-kmJ_Fl#Puo}}J_U09kO=8P4Fu4bCLysoJvBl_LeffH#F3DYK7%RVho4*kdC=)y(7_54 r5)1Cr-J1XZSN-4Z|J$kibxiL687urBAv^|5FA40Sreg5}i~s%~i>F)B literal 0 HcmV?d00001 diff --git a/Screenshots/Screenshot from 2020-04-03 15-10-33.png b/Screenshots/Screenshot from 2020-04-03 15-10-33.png new file mode 100644 index 0000000000000000000000000000000000000000..94c0082835b3b019fd6306672fdad2ca0038edce GIT binary patch literal 59934 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

dK`#6FbtZD78dE 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 alPoz!&Mp_lqAQV`QA&zxyBYF_&;1KN115O@ literal 0 HcmV?d00001 From a428d4e96e6b3e85989bac38c43f0fb91266f744 Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 15:16:39 +0530 Subject: [PATCH 12/21] Rename screenshots --- ...creenshot from 2020-04-03 15-09-42.png => 1.png} | Bin ...creenshot from 2020-04-03 15-10-33.png => 2.png} | Bin 2 files changed, 0 insertions(+), 0 deletions(-) rename Screenshots/{Screenshot from 2020-04-03 15-09-42.png => 1.png} (100%) rename Screenshots/{Screenshot from 2020-04-03 15-10-33.png => 2.png} (100%) diff --git a/Screenshots/Screenshot from 2020-04-03 15-09-42.png b/Screenshots/1.png similarity index 100% rename from Screenshots/Screenshot from 2020-04-03 15-09-42.png rename to Screenshots/1.png diff --git a/Screenshots/Screenshot from 2020-04-03 15-10-33.png b/Screenshots/2.png similarity index 100% rename from Screenshots/Screenshot from 2020-04-03 15-10-33.png rename to Screenshots/2.png From cfa54d56a10a95bfe1878736802645d3f099503e Mon Sep 17 00:00:00 2001 From: Jui Pradhan <46154968+JuiP@users.noreply.github.com> Date: Fri, 3 Apr 2020 15:35:03 +0530 Subject: [PATCH 13/21] Update README.md --- README.md | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0999e4f..7b7e69d 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,23 @@ -# AnalyzeJournal Activity # +AnalyzeJournal Activity +=============== +This Activity charts data from the Sugar Journal and gives you a visual representation of Disk usage, Activity usage and Turtle data usage using a vertical bar chart, a horizontal bar chart or a pie chart. -This Activity charts data from the Sugar Journal: - -1. free space -2. activity usage -3. turtle block usage - -This activity gives you the possibility to graphically, the journal usage. - -### To Know more about AnalyzeJournal and Sugar, Please refer to ### +How to use? +=============== +AnalyzeJournal Activity is not a part of Sugar Desktop but can be added. Refer to the following links- * [How to Get Sugar on sugarlabs.org](https://sugarlabs.org/) * [How to use Sugar](https://help.sugarlabs.org/) * [Download AnalyzeJournal](https://activities.sugarlabs.org/en-US/sugar/addon/4545) + + + +First select Disk usage, Activity usage or Turtle data (the one you wish to see the graphical represenation of) and then click on the type of chart you wish to see. You can also save the chart dispayed as an image by clicking on 'save as image'. + +How to upgrade? +=============== +On Sugar Desktop systems; + +* [Use My Settings,](https://help.sugarlabs.org/my_settings.html) [Software Update](https://help.sugarlabs.org/my_settings.html#software-update) +* Use Browse to open [activities.sugarlabs.org](https://activities.sugarlabs.org/) Search for Paths, then download + From c813d97d9c0f8dbe8ad584e16ac4149fb99e9b82 Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 20:51:51 +0530 Subject: [PATCH 14/21] demote logging --- activity.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/activity.py b/activity.py index b7f87c6..dfa2fcc 100644 --- a/activity.py +++ b/activity.py @@ -61,7 +61,6 @@ # Logging _logger = logging.getLogger('analyze-journal-activity') -_logger.setLevel(logging.DEBUG) logging.basicConfig() DRAG_ACTION = Gdk.DragAction.COPY @@ -572,21 +571,27 @@ def add_value(self, label, value): self.set_cursor(self.model.get_path(_iter), self.get_column(1), True) + + logging.debug("Added: %s, Value: %s" % (label, value)) + return path def remove_selected_value(self): model, iter = self._selection.get_selected() value = (self.model.get(iter, 0)[0], float(self.model.get(iter, 1)[0])) + logging.debug('VALUE: ' + str(value)) self.model.remove(iter) return value def _label_changed(self, cell, path, new_text, model): + logging.debug("Change '%s' to '%s'" % (model[path][0], new_text)) model[path][0] = new_text self.emit("label-changed", str(path), new_text) def _value_changed(self, cell, path, new_text, model, activity): + logging.debug("Change '%s' to '%s'" % (model[path][1], new_text)) is_number = True number = new_text.replace(",", ".") try: From 1f1bb362fd70c394d4dcf596516ee0d76a12f0d7 Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 3 Apr 2020 21:04:59 +0530 Subject: [PATCH 15/21] Update exec and use os.statvfs instead of shutil.disk_usage --- readers.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/readers.py b/readers.py index 4ab1312..f75a613 100644 --- a/readers.py +++ b/readers.py @@ -21,7 +21,6 @@ import os import glob -import shutil from gettext import gettext as _ @@ -63,7 +62,9 @@ def get_chart_data(self): def _get_space(self): path = env.get_profile_path() - total_space, used_space, free_space = shutil.disk_usage(path) + stat = os.statvfs(path) + free_space = stat[0] * stat[4] + total_space = stat[0] * stat[2] free_space = self._get_MBs(free_space) total_space = self._get_MBs(total_space) From 4d4eb129759671ec321470acfda7306e6578058a Mon Sep 17 00:00:00 2001 From: JuiP Date: Tue, 12 May 2020 12:59:31 +0530 Subject: [PATCH 16/21] Added line chart - Fixes the WARNING root: No icon with the name line was found in the theme - Adds a feature: Line chart to the activity --- activity.py | 7 +++++++ icons/line.svg | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 icons/line.svg diff --git a/activity.py b/activity.py index dfa2fcc..007a3b0 100644 --- a/activity.py +++ b/activity.py @@ -184,6 +184,13 @@ def __init__(self, handle): add_hbar_chart.props.group = charts_group toolbarbox.toolbar.insert(add_hbar_chart, -1) + add_line_chart = RadioToolButton() + add_line_chart.connect("clicked", self._add_chart_cb, "line") + add_line_chart.set_tooltip(_("Line Bar Chart")) + add_line_chart.props.icon_name = "line" + add_line_chart.props.group = charts_group + toolbarbox.toolbar.insert(add_line_chart, -1) + add_pie_chart = RadioToolButton() add_pie_chart.connect("clicked", self._add_chart_cb, "pie") add_pie_chart.set_tooltip(_("Pie Chart")) diff --git a/icons/line.svg b/icons/line.svg new file mode 100644 index 0000000..d6a1a5c --- /dev/null +++ b/icons/line.svg @@ -0,0 +1,34 @@ + + + +]> + + + + + + + + + + + \ No newline at end of file From ef16be6fa4dd12ede29ff29bd31d954bb9672b65 Mon Sep 17 00:00:00 2001 From: JuiP Date: Wed, 13 May 2020 13:00:04 +0530 Subject: [PATCH 17/21] Added improvements: - Fixes index error : reported by @Saumya-Mishra9129 and @srevinsaju - Fixed : Object Chooser focus --- activity.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/activity.py b/activity.py index 007a3b0..dea2090 100644 --- a/activity.py +++ b/activity.py @@ -201,6 +201,7 @@ def __init__(self, handle): self.chart_type_buttons = [add_vbar_chart, add_hbar_chart, + add_line_chart, add_pie_chart] separator = Gtk.SeparatorToolItem() @@ -381,7 +382,8 @@ def _set_chart_line_color(self, widget, pspec): self._render_chart() def _object_chooser(self, mime_type, type_name): - chooser = ObjectChooser() + chooser = None + chooser = ObjectChooser(parent=self, what_filter=mime_type) matches_mime_type = False response = chooser.run() From 8181469d561f3c4300d259e55730d62c9d40b095 Mon Sep 17 00:00:00 2001 From: JuiP Date: Wed, 13 May 2020 13:54:16 +0530 Subject: [PATCH 18/21] Flake8 fix for E501: line too long --- .flake8 | 5 +---- activity.py | 16 ++++++++++++---- charthelp.py | 11 +++++++---- charts.py | 9 ++++++--- helpbutton.py | 3 ++- readers.py | 53 ++++++++++++++++++++++++++++++++++++++++++++++----- 6 files changed, 76 insertions(+), 21 deletions(-) diff --git a/.flake8 b/.flake8 index 690f9dc..e05a0a2 100644 --- a/.flake8 +++ b/.flake8 @@ -3,8 +3,5 @@ # E402 module level import not at top of file # gi.require_version() is required before later imports -ignore = E402, E501 - -#E501 line too long -#readers.py definition of TACAT, TAPAL, TASCORE can't be shortened +ignore = E402 diff --git a/activity.py b/activity.py index dea2090..13b6064 100644 --- a/activity.py +++ b/activity.py @@ -399,7 +399,8 @@ def _object_chooser(self, mime_type, type_name): alert = Alert() alert.props.title = _('Invalid object') - alert.props.msg = _('The selected object must be a %s file' % (type_name)) + alert.props.msg = _('The selected object must be a %s file' + % (type_name)) ok_icon = Icon(icon_name='dialog-ok') alert.add_button(Gtk.ResponseType.OK, _('Ok'), ok_icon) @@ -448,7 +449,10 @@ def __import_journal_cb(self, widget): def __import_turtle_cb(self, widget): try: - matches_mime_type, file_path, title = self._object_chooser('application/x-turtle-art', _('Turtle')) + matches_mime_type, \ + file_path, \ + title = self._object_chooser('application/x-turtle-art', + _('Turtle')) if matches_mime_type: reader = TurtleReader(file_path) self._graph_from_reader(reader) @@ -527,7 +531,10 @@ def read_file(self, file_path): class ChartData(Gtk.TreeView): - __gsignals__ = {'label-changed': (GObject.SignalFlags.RUN_FIRST, None, [str, str], ), 'value-changed': (GObject.SignalFlags.RUN_FIRST, None, [str, str], ), } + __gsignals__ = {'label-changed': (GObject.SignalFlags.RUN_FIRST, + None, [str, str], ), + 'value-changed': (GObject.SignalFlags.RUN_FIRST, + None, [str, str], ), } def __init__(self, activity): @@ -619,7 +626,8 @@ def _value_changed(self, cell, path, new_text, model, activity): alert = Alert() alert.props.title = _('Invalid Value') - alert.props.msg = _('The value must be a number (integer or decimal)') + alert.props.msg = \ + _('The value must be a number (integer or decimal)') ok_icon = Icon(icon_name='dialog-ok') alert.add_button(Gtk.ResponseType.OK, _('Ok'), ok_icon) diff --git a/charthelp.py b/charthelp.py index 0fae340..06ce0fb 100644 --- a/charthelp.py +++ b/charthelp.py @@ -11,10 +11,13 @@ def create_help(toolbar): helpitem.show() helpitem.add_section(_('Basic usage')) helpitem.add_paragraph(_('First select data type:')) - helpitem.add_paragraph(_('The free space in the Journal;'), 'import-freespace') - helpitem.add_paragraph(_('The types of Sugar Activities you have used;'), 'import-journal') - helpitem.add_paragraph(_('The types of blocks used in Turtle Art.'), 'import-turtle') - helpitem.add_paragraph(_('The graph title is the same as the Activity title')) + helpitem.add_paragraph(_('The free space in the Journal;'), + 'import-freespace') + helpitem.add_paragraph(_('The types of Sugar Activities you have used;'), + 'import-journal') + helpitem.add_paragraph(_('The types of blocks used in Turtle Art.'), + 'import-turtle') + helpitem.add_paragraph(_('The graph title is same as the Activity title')) helpitem.add_paragraph(_('You can change the type of graph:')) helpitem.add_paragraph(_('Vertical bars'), 'vbar') diff --git a/charts.py b/charts.py index 65f4d0d..efcbbbe 100644 --- a/charts.py +++ b/charts.py @@ -53,7 +53,8 @@ def data_set(self, data): 'labelFontSize': 14, 'lineColor': '#b3b3b3', 'x': { - 'ticks': [dict(v=i, label=l[0]) for i, l in enumerate(data)], + 'ticks': [dict(v=i, label=l[0]) for i, + l in enumerate(data)], 'label': 'X', }, 'y': { 'tickCount': 5, @@ -101,7 +102,8 @@ def set_title(self, title="Chart"): def render(self, sg=None): """Draw the chart Use the self.surface variable for show the chart""" - self.surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, self.width, self.height) + self.surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, + self.width, self.height) if self.type == "vbar": chart = sugarpycha.bar.VerticalBarChart(self.surface, self.options) @@ -116,7 +118,8 @@ def render(self, sg=None): elif self.type == "pie": self.options["legend"] = {"hide": "False"} chart = sugarpycha.pie.PieChart(self.surface, self.options) - self.dataSet = [(data[0], [[0, data[1]]]) for data in sg.chart_data] + self.dataSet = [(data[0], + [[0, data[1]]]) for data in sg.chart_data] else: chart = sugarpycha.bar.HorizontalBarChart(self.surface, diff --git a/helpbutton.py b/helpbutton.py index c9981ab..73e32fa 100644 --- a/helpbutton.py +++ b/helpbutton.py @@ -41,7 +41,8 @@ def __init__(self, **kwargs): self._palette = help_button.get_palette() sw = Gtk.ScrolledWindow() - sw.set_size_request(int(Gdk.Screen.width() / 2.8), Gdk.Screen.height() - style.GRID_CELL_SIZE * 3) + sw.set_size_request(int(Gdk.Screen.width() / 2.8), + Gdk.Screen.height() - style.GRID_CELL_SIZE * 3) sw.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC) self._max_text_width = int(Gdk.Screen.width() / 3) - 20 diff --git a/readers.py b/readers.py index f75a613..ca9c27d 100644 --- a/readers.py +++ b/readers.py @@ -94,11 +94,54 @@ class TurtleReader(): Import chart data from journal activity analysis """ - TACAT = {'clean': 'forward', 'forward': 'forward', 'back': 'forward', 'left': 'forward', 'right': 'forward', 'arc': 'arc', 'xcor': 'coord', 'ycor': 'coord', 'heading': 'coord', 'setxy2': 'setxy', 'seth': 'setxy', 'penup': 'pen', 'pendown': 'pen', 'setpensize': 'pen', 'setcolor': 'pen', 'pensize': 'pen', 'color': 'pen', 'setshade': 'pen', 'setgray': 'pen', 'shade': 'pen', 'gray': 'pen', 'fillscreen': 'pen', 'startfill': 'fill', 'stopfill': 'fill', 'plus2': 'number', 'minus2': 'number', 'product2': 'number', 'division2': 'number', 'remainder2': 'number', 'sqrt': 'number', 'identity2': 'number', 'and2': 'boolean', 'or2': 'boolean', 'not': 'boolean', 'greater2': 'boolean', 'less2': 'boolean', 'equal2': 'boolean', 'random': 'random', 'repeat': 'repeat', 'forever': 'repeat', 'if': 'ifthen', 'ifelse': 'ifthen', 'while': 'ifthen', 'until': 'ifthen', 'hat': 'action', 'stack': 'action', 'storein': 'box', 'box': 'box', 'luminance': 'sensor', 'mousex': 'sensor', 'mousey': 'sensor', 'mousebutton2': 'sensor', 'keyboard': 'sensor', 'kbinput': 'sensor', 'readpixel': 'sensor', 'see': 'sensor', 'time': 'sensor', 'sound': 'sensor', 'volume': 'sensor', 'pitch': 'sensor', 'resistance': 'sensor', 'voltage': 'sensor', 'video': 'media', 'wait': 'media', 'camera': 'media', 'journal': 'media', 'audio': 'media', 'show': 'media', 'setscale': 'media', 'savepix': 'media', 'savesvg': 'media', 'mediawait': 'media', 'mediapause': 'media', 'mediastop': 'media', 'mediaplay': 'media', 'speak': 'media', 'sinewave': 'media', 'description': 'media', 'push': 'extras', 'pop': 'extras', 'printheap': 'extras', 'clearheap': 'extras', 'isheapempty2': 'extras', 'chr': 'extras', 'int': 'extras', 'myfunction': 'python', 'userdefined': 'python', 'loadblock': 'python', 'loadpalette': 'python'} - TAPAL = {'forward': 'turtlep', 'arc': 'turtlep', 'coord': 'turtlep', 'setxy': 'turtlep', 'pen': 'penp', 'fill': 'penp', 'number': 'numberp', 'random': 'numberp', 'boolean': 'numberp', 'repeat': 'flowp', 'ifthen': 'flowp', 'action': 'boxp', 'box': 'boxp', 'sensor': 'sensorp', 'media': 'mediap', 'extras': 'extrasp', 'python': 'extrasp'} - TASCORE = {'forward': 3, 'arc': 3, 'setxy': 2.5, 'coord': 4, 'turtlep': 5, 'pen': 2.5, 'fill': 2.5, 'penp': 5, 'number': 2.5, 'boolean': 2.5, 'random': 2.5, 'numberp': 0, 'repeat': 2.5, 'ifthen': 7.5, 'flowp': 10, 'box': 7.5, 'action': 7.5, 'boxp': 0, 'media': 5, 'mediap': 0, 'python': 5, 'extras': 5, 'extrasp': 0, 'sensor': 5, 'sensorp': 0} - PALS = ['turtlep', 'penp', 'numberp', 'flowp', 'boxp', 'sensorp', 'mediap', 'extrasp'] - PALNAMES = [_('turtle'), _('pen'), _('number'), _('flow'), _('box'), _('sensor'), _('media'), _('extras')] + TACAT = {'clean': 'forward', 'forward': 'forward', 'back': 'forward', + 'left': 'forward', 'right': 'forward', 'arc': 'arc', + 'xcor': 'coord', 'ycor': 'coord', 'heading': 'coord', + 'setxy2': 'setxy', 'seth': 'setxy', 'penup': 'pen', + 'pendown': 'pen', 'setpensize': 'pen', 'setcolor': 'pen', + 'pensize': 'pen', 'color': 'pen', 'setshade': 'pen', + 'setgray': 'pen', 'shade': 'pen', 'gray': 'pen', + 'fillscreen': 'pen', 'startfill': 'fill', 'stopfill': 'fill', + 'plus2': 'number', 'minus2': 'number', 'product2': 'number', + 'division2': 'number', 'remainder2': 'number', 'sqrt': 'number', + 'identity2': 'number', 'and2': 'boolean', 'or2': 'boolean', + 'not': 'boolean', 'greater2': 'boolean', 'less2': 'boolean', + 'equal2': 'boolean', 'random': 'random', 'repeat': 'repeat', + 'forever': 'repeat', 'if': 'ifthen', 'ifelse': 'ifthen', + 'while': 'ifthen', 'until': 'ifthen', 'hat': 'action', + 'stack': 'action', 'storein': 'box', 'box': 'box', + 'luminance': 'sensor', 'mousex': 'sensor', 'mousey': 'sensor', + 'mousebutton2': 'sensor', 'keyboard': 'sensor', + 'kbinput': 'sensor', 'readpixel': 'sensor', 'see': 'sensor', + 'time': 'sensor', 'sound': 'sensor', 'volume': 'sensor', + 'pitch': 'sensor', 'resistance': 'sensor', 'voltage': 'sensor', + 'video': 'media', 'wait': 'media', 'camera': 'media', + 'journal': 'media', 'audio': 'media', 'show': 'media', + 'setscale': 'media', 'savepix': 'media', 'savesvg': 'media', + 'mediawait': 'media', 'mediapause': 'media', 'mediastop': 'media', + 'mediaplay': 'media', 'speak': 'media', 'sinewave': 'media', + 'description': 'media', 'push': 'extras', 'pop': 'extras', + 'printheap': 'extras', 'clearheap': 'extras', + 'isheapempty2': 'extras', 'chr': 'extras', 'int': 'extras', + 'myfunction': 'python', 'userdefined': 'python', + 'loadblock': 'python', 'loadpalette': 'python'} + TAPAL = {'forward': 'turtlep', 'arc': 'turtlep', 'coord': 'turtlep', + 'setxy': 'turtlep', 'pen': 'penp', 'fill': 'penp', + 'number': 'numberp', 'random': 'numberp', + 'boolean': 'numberp', 'repeat': 'flowp', 'ifthen': 'flowp', + 'action': 'boxp', 'box': 'boxp', 'sensor': 'sensorp', + 'media': 'mediap', 'extras': 'extrasp', 'python': 'extrasp'} + TASCORE = {'forward': 3, 'arc': 3, 'setxy': 2.5, 'coord': 4, + 'turtlep': 5, 'pen': 2.5, 'fill': 2.5, 'penp': 5, + 'number': 2.5, 'boolean': 2.5, 'random': 2.5, + 'numberp': 0, 'repeat': 2.5, 'ifthen': 7.5, + 'flowp': 10, 'box': 7.5, 'action': 7.5, + 'boxp': 0, 'media': 5, 'mediap': 0, 'python': 5, + 'extras': 5, 'extrasp': 0, 'sensor': 5, 'sensorp': 0} + PALS = ['turtlep', 'penp', 'numberp', 'flowp', 'boxp', 'sensorp', + 'mediap', 'extrasp'] + PALNAMES = [_('turtle'), _('pen'), _('number'), _('flow'), _('box'), + _('sensor'), _('media'), _('extras')] def hasturtleblocks(self, path): ''' Parse turtle block data and generate score based on rubric ''' From a7f1b91bdef39fc58ae8ab0126249018454902d5 Mon Sep 17 00:00:00 2001 From: JuiP Date: Fri, 15 May 2020 15:14:24 +0530 Subject: [PATCH 19/21] Changes to ObjectChooser - Removed chooser = None assignment - Removed what_filter kwarg --- activity.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/activity.py b/activity.py index 13b6064..382ad88 100644 --- a/activity.py +++ b/activity.py @@ -382,8 +382,7 @@ def _set_chart_line_color(self, widget, pspec): self._render_chart() def _object_chooser(self, mime_type, type_name): - chooser = None - chooser = ObjectChooser(parent=self, what_filter=mime_type) + chooser = ObjectChooser(parent=self) matches_mime_type = False response = chooser.run() From 14f008460e72e52db4f0570377d2828fa585bf4d Mon Sep 17 00:00:00 2001 From: JuiP Date: Mon, 18 May 2020 11:42:26 +0530 Subject: [PATCH 20/21] More Changes - fixed unnecessary capitalization and typos in README.md - Use _logger instead of calling the module - Change back the wording in charthelp.py - Used stat.f_blocks and f_bavail ... instead of indexing method --- .flake8 | 1 - README.md | 6 +++--- activity.py | 8 ++++---- charthelp.py | 2 +- readers.py | 4 ++-- 5 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.flake8 b/.flake8 index e05a0a2..0146a5f 100644 --- a/.flake8 +++ b/.flake8 @@ -4,4 +4,3 @@ # gi.require_version() is required before later imports ignore = E402 - diff --git a/README.md b/README.md index 7b7e69d..c26e6f8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ AnalyzeJournal Activity =============== -This Activity charts data from the Sugar Journal and gives you a visual representation of Disk usage, Activity usage and Turtle data usage using a vertical bar chart, a horizontal bar chart or a pie chart. +This activity charts data from the Sugar Journal and gives you a visual representation of Disk usage, Activity usage and Turtle data usage using a vertical bar chart, a horizontal bar chart or a pie chart. How to use? =============== @@ -12,12 +12,12 @@ AnalyzeJournal Activity is not a part of Sugar Desktop but can be added. Refer t -First select Disk usage, Activity usage or Turtle data (the one you wish to see the graphical represenation of) and then click on the type of chart you wish to see. You can also save the chart dispayed as an image by clicking on 'save as image'. +First select Disk usage, Activity usage or Turtle data (the one you wish to see the graphical representation of) and then click on the type of chart you wish to see. You can also save the chart dispayed as an image by clicking on 'save as image'. How to upgrade? =============== On Sugar Desktop systems; * [Use My Settings,](https://help.sugarlabs.org/my_settings.html) [Software Update](https://help.sugarlabs.org/my_settings.html#software-update) -* Use Browse to open [activities.sugarlabs.org](https://activities.sugarlabs.org/) Search for Paths, then download +* Use Browse to open [activities.sugarlabs.org](https://activities.sugarlabs.org/) Search for AnalyzeJournal, then download diff --git a/activity.py b/activity.py index 382ad88..529aa92 100644 --- a/activity.py +++ b/activity.py @@ -587,26 +587,26 @@ def add_value(self, label, value): self.get_column(1), True) - logging.debug("Added: %s, Value: %s" % (label, value)) + _logger.debug("Added: %s, Value: %s" % (label, value)) return path def remove_selected_value(self): model, iter = self._selection.get_selected() value = (self.model.get(iter, 0)[0], float(self.model.get(iter, 1)[0])) - logging.debug('VALUE: ' + str(value)) + _logger.debug('VALUE: ' + str(value)) self.model.remove(iter) return value def _label_changed(self, cell, path, new_text, model): - logging.debug("Change '%s' to '%s'" % (model[path][0], new_text)) + _logger.debug("Change '%s' to '%s'" % (model[path][0], new_text)) model[path][0] = new_text self.emit("label-changed", str(path), new_text) def _value_changed(self, cell, path, new_text, model, activity): - logging.debug("Change '%s' to '%s'" % (model[path][1], new_text)) + _logger.debug("Change '%s' to '%s'" % (model[path][1], new_text)) is_number = True number = new_text.replace(",", ".") try: diff --git a/charthelp.py b/charthelp.py index 06ce0fb..88fb5a6 100644 --- a/charthelp.py +++ b/charthelp.py @@ -17,7 +17,7 @@ def create_help(toolbar): 'import-journal') helpitem.add_paragraph(_('The types of blocks used in Turtle Art.'), 'import-turtle') - helpitem.add_paragraph(_('The graph title is same as the Activity title')) + helpitem.add_paragraph(_('The graph title is the same as the Activity title')) helpitem.add_paragraph(_('You can change the type of graph:')) helpitem.add_paragraph(_('Vertical bars'), 'vbar') diff --git a/readers.py b/readers.py index ca9c27d..206823c 100644 --- a/readers.py +++ b/readers.py @@ -63,8 +63,8 @@ def get_chart_data(self): def _get_space(self): path = env.get_profile_path() stat = os.statvfs(path) - free_space = stat[0] * stat[4] - total_space = stat[0] * stat[2] + free_space = stat.f_bsize * stat.f_bavail + total_space = stat.f_bsize * stat.f_blocks free_space = self._get_MBs(free_space) total_space = self._get_MBs(total_space) From 137edbdc1b700d418a5d3c86441af57aa192e9c1 Mon Sep 17 00:00:00 2001 From: JuiP Date: Wed, 20 May 2020 21:22:16 +0530 Subject: [PATCH 21/21] Added end of line marker --- icons/hbar.svg | 2 +- icons/import-freespace.svg | 2 +- icons/import-turtle.svg | 2 +- icons/line.svg | 2 +- icons/pie.svg | 2 +- icons/save-as-image.svg | 2 +- icons/vbar.svg | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/icons/hbar.svg b/icons/hbar.svg index f042b84..b7c622d 100644 --- a/icons/hbar.svg +++ b/icons/hbar.svg @@ -63,4 +63,4 @@ y="112.30204" id="rect3761" style="color:#000000;fill:&fill_color;;fill-opacity:1;stroke:&stroke_color;;stroke-width:33.73588181;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - \ No newline at end of file + diff --git a/icons/import-freespace.svg b/icons/import-freespace.svg index 19cf982..633f6aa 100644 --- a/icons/import-freespace.svg +++ b/icons/import-freespace.svg @@ -111,4 +111,4 @@ transform="matrix(-0.469241,0.469241,-0.469241,-0.469241,66.2906,1019.03)" /> \ No newline at end of file + style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> diff --git a/icons/import-turtle.svg b/icons/import-turtle.svg index d0869da..8e43b07 100644 --- a/icons/import-turtle.svg +++ b/icons/import-turtle.svg @@ -155,4 +155,4 @@ id="polyline4774" /> \ No newline at end of file + style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> diff --git a/icons/line.svg b/icons/line.svg index d6a1a5c..26741cc 100644 --- a/icons/line.svg +++ b/icons/line.svg @@ -31,4 +31,4 @@ d="m 594.07188,325.15231 0,-360.47952 L 434.51609,52.953494 274.96046,-175.105 115.4045,109.35506 l 0,215.79736 z" id="rect3757" style="color:#000000;fill:&fill_color;;fill-opacity:1;stroke:&stroke_color;;stroke-width:33.73588181;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - \ No newline at end of file + diff --git a/icons/pie.svg b/icons/pie.svg index 6c4cd5f..503ca15 100644 --- a/icons/pie.svg +++ b/icons/pie.svg @@ -45,4 +45,4 @@ transform="matrix(8.3764085,0,0,9.1150996,519.78184,-368.75804)" id="path6107" style="color:#000000;fill:none;stroke:&stroke_color;;stroke-width:3.8608458;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - \ No newline at end of file + diff --git a/icons/save-as-image.svg b/icons/save-as-image.svg index 365f578..6877b0e 100644 --- a/icons/save-as-image.svg +++ b/icons/save-as-image.svg @@ -113,4 +113,4 @@ id="polyline4774" /> \ No newline at end of file + style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> diff --git a/icons/vbar.svg b/icons/vbar.svg index 4d06f10..be41a7c 100644 --- a/icons/vbar.svg +++ b/icons/vbar.svg @@ -63,4 +63,4 @@ y="112.30204" id="rect3761" style="color:#000000;fill:&fill_color;;fill-opacity:1;stroke:&stroke_color;;stroke-width:33.73588181;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - \ No newline at end of file +