diff --git a/.flake8 b/.flake8
new file mode 100644
index 0000000..0146a5f
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,6 @@
+[flake8]
+
+# E402 module level import not at top of file
+# gi.require_version() is required before later imports
+
+ignore = E402
diff --git a/README.md b/README.md
index 0999e4f..c26e6f8 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 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 AnalyzeJournal, then download
+
diff --git a/Screenshots/1.png b/Screenshots/1.png
new file mode 100644
index 0000000..8d9f552
Binary files /dev/null and b/Screenshots/1.png differ
diff --git a/Screenshots/2.png b/Screenshots/2.png
new file mode 100644
index 0000000..94c0082
Binary files /dev/null and b/Screenshots/2.png differ
diff --git a/activity.py b/activity.py
index 83be001..529aa92 100644
--- a/activity.py
+++ b/activity.py
@@ -30,17 +30,15 @@
import logging
import utils
-from StringIO import StringIO
+from io import StringIO
from gettext import gettext as _
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
@@ -63,9 +61,10 @@
# Logging
_logger = logging.getLogger('analyze-journal-activity')
-_logger.setLevel(logging.DEBUG)
logging.basicConfig()
+DRAG_ACTION = Gdk.DragAction.COPY
+
class ChartArea(Gtk.DrawingArea):
@@ -73,9 +72,12 @@ 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)
self.drag_dest_set_target_list(Gtk.TargetList.new([]))
self.drag_dest_add_text_targets()
self.connect('drag_data_received', self._drag_data_received)
@@ -182,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"))
@@ -192,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()
@@ -228,8 +238,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)
@@ -373,7 +382,7 @@ def _set_chart_line_color(self, widget, pspec):
self._render_chart()
def _object_chooser(self, mime_type, type_name):
- chooser = ObjectChooser()
+ chooser = ObjectChooser(parent=self)
matches_mime_type = False
response = chooser.run()
@@ -389,8 +398,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)
@@ -402,7 +411,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()
@@ -412,39 +421,42 @@ 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()
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:
@@ -486,11 +498,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):
@@ -519,15 +530,15 @@ 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)
@@ -572,31 +583,30 @@ 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)
- _logger.info("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]))
- _logger.info('VALUE: ' + str(value))
+ _logger.debug('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))
+ _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):
- _logger.info("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:
@@ -616,7 +626,7 @@ def _value_changed(self, cell, path, new_text, model, activity):
alert.props.title = _('Invalid Value')
alert.props.msg = \
- _('The value must be a number (integer or decimal)')
+ _('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/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/charthelp.py b/charthelp.py
index 6150141..88fb5a6 100644
--- a/charthelp.py
+++ b/charthelp.py
@@ -12,11 +12,11 @@ def create_help(toolbar):
helpitem.add_section(_('Basic usage'))
helpitem.add_paragraph(_('First select data type:'))
helpitem.add_paragraph(_('The free space in the Journal;'),
- 'import-freespace')
+ 'import-freespace')
helpitem.add_paragraph(_('The types of Sugar Activities you have used;'),
- 'import-journal')
+ 'import-journal')
helpitem.add_paragraph(_('The types of blocks used in Turtle Art.'),
- 'import-turtle')
+ '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 +26,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..efcbbbe 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},
@@ -57,13 +54,11 @@ def data_set(self, data):
'lineColor': '#b3b3b3',
'x': {
'ticks': [dict(v=i, label=l[0]) for i,
- l in enumerate(data)],
- 'label': 'X',
- },
+ l in enumerate(data)],
+ 'label': 'X', },
'y': {
'tickCount': 5,
- 'label': 'Y',
- }
+ 'label': 'Y', }
},
'stroke': {
'width': 3
@@ -108,8 +103,7 @@ 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.width, self.height)
if self.type == "vbar":
chart = sugarpycha.bar.VerticalBarChart(self.surface, self.options)
diff --git a/helpbutton.py b/helpbutton.py
index 08695b1..73e32fa 100644
--- a/helpbutton.py
+++ b/helpbutton.py
@@ -42,7 +42,7 @@ def __init__(self, **kwargs):
sw = Gtk.ScrolledWindow()
sw.set_size_request(int(Gdk.Screen.width() / 2.8),
- Gdk.Screen.height() - style.GRID_CELL_SIZE * 3)
+ 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/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
new file mode 100644
index 0000000..26741cc
--- /dev/null
+++ b/icons/line.svg
@@ -0,0 +1,34 @@
+
+
+
+]>
+
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
+
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 ""
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 ""
diff --git a/readers.py b/readers.py
index 5d523e0..206823c 100644
--- a/readers.py
+++ b/readers.py
@@ -21,12 +21,10 @@
import os
import glob
-import statvfs
from gettext import gettext as _
from sugar3 import env
-from sugar3 import profile
class FreeSpaceReader():
@@ -63,9 +61,10 @@ 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]
+ path = env.get_profile_path()
+ stat = os.statvfs(path)
+ 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)
@@ -95,51 +94,52 @@ 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'}
+ 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']
+ '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')]
@@ -213,6 +213,8 @@ def get_labels_name(self):
MAX = 19
DIROFINTEREST = 'datastore'
+
+
class ParseJournal():
''' Simple parser of datastore '''
@@ -239,7 +241,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/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 2ce6e05..d8cd9c0 100644
--- a/sugarpycha/chart.py
+++ b/sugarpycha/chart.py
@@ -23,6 +23,8 @@
from sugarpycha.color import ColorScheme, hex2rgb, DEFAULT_COLOR
from sugarpycha.utils import safe_unicode
+import collections
+from functools import reduce
class Chart(object):
@@ -139,7 +141,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 +244,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:
@@ -357,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()
@@ -613,7 +615,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 +766,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 +784,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/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:
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)
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':