Merge lp:~jm-leddy/ubuntu/precise/ubuntu-online-tour/precise-backports into lp:ubuntu/precise-backports/ubuntu-online-tour

Proposed by James M. Leddy
Status: Rejected
Rejected by: Micah Gersten
Proposed branch: lp:~jm-leddy/ubuntu/precise/ubuntu-online-tour/precise-backports
Merge into: lp:ubuntu/precise-backports/ubuntu-online-tour
Diff against target: 12395 lines (+12356/-0)
7 files modified
.pc/.quilt_patches (+1/-0)
.pc/.quilt_series (+1/-0)
.pc/.version (+1/-0)
debian/changelog (+15/-0)
debian/patches/fix_lp1019025.patch (+138/-0)
debian/patches/series (+3/-0)
debian/patches/update-translations.patch (+12197/-0)
To merge this branch: bzr merge lp:~jm-leddy/ubuntu/precise/ubuntu-online-tour/precise-backports
Reviewer Review Type Date Requested Status
Micah Gersten (community) Disapprove
Review via email: mp+141816@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Micah Gersten (micahg) wrote :

We don't do backports like this. I was waiting for ubuntu-online-tour to migrate to quantal-updates before pushing the backport. Assuming that someone has test built and install this version on precise.

review: Disapprove
Revision history for this message
Micah Gersten (micahg) wrote :

Oh, hrm, I see this version is migrated. We need a bug for the backport, so, please use requestbackport and mark it as tested (assuming that's done) and I'll process it over the weekend.

Revision history for this message
Micah Gersten (micahg) wrote :

Apologies, I see the bug has been filed, so I'll process it now.

Revision history for this message
James M. Leddy (jm-leddy) wrote :

Thanks Micah,

Again, as I said in bug 1095819. I've tested and verified using this branch. My only motivation for creating a branch was to make the job the least bit easier.

Unmerged revisions

5. By James M. Leddy

No-change backport to precise.

4. By James M. Leddy

* debian/patches/fix_lp1019025+translations.patch
  - Pick fix to tour becoming unreadable (LP: #1019025)
* debian/patches/update-translations.patch:
  - Update translations form Launchpad

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory '.pc'
2=== added file '.pc/.quilt_patches'
3--- .pc/.quilt_patches 1970-01-01 00:00:00 +0000
4+++ .pc/.quilt_patches 2013-01-03 20:55:27 +0000
5@@ -0,0 +1,1 @@
6+debian/patches
7
8=== added file '.pc/.quilt_series'
9--- .pc/.quilt_series 1970-01-01 00:00:00 +0000
10+++ .pc/.quilt_series 2013-01-03 20:55:27 +0000
11@@ -0,0 +1,1 @@
12+series
13
14=== added file '.pc/.version'
15--- .pc/.version 1970-01-01 00:00:00 +0000
16+++ .pc/.version 2013-01-03 20:55:27 +0000
17@@ -0,0 +1,1 @@
18+2
19
20=== modified file 'debian/changelog'
21--- debian/changelog 2012-05-23 08:58:11 +0000
22+++ debian/changelog 2013-01-03 20:55:27 +0000
23@@ -1,3 +1,18 @@
24+ubuntu-online-tour (0.11-0ubuntu1.1~ubuntu12.04.1) precise-backports; urgency=low
25+
26+ * No-change backport to precise.
27+
28+ -- James M Leddy <james.leddy@canonical.com> Thu, 03 Jan 2013 15:32:50 -0500
29+
30+ubuntu-online-tour (0.11-0ubuntu1.1) quantal-proposed; urgency=low
31+
32+ * debian/patches/fix_lp1019025+translations.patch
33+ - Pick fix to tour becoming unreadable (LP: #1019025)
34+ * debian/patches/update-translations.patch:
35+ - Update translations form Launchpad
36+
37+ -- Timo Jyrinki <timo-jyrinki@ubuntu.com> Mon, 08 Oct 2012 16:32:05 +0300
38+
39 ubuntu-online-tour (0.11-0ubuntu1~ubuntu12.04.1) precise-backports; urgency=low
40
41 * No-change backport to precise.
42
43=== added directory 'debian/patches'
44=== added file 'debian/patches/fix_lp1019025.patch'
45--- debian/patches/fix_lp1019025.patch 1970-01-01 00:00:00 +0000
46+++ debian/patches/fix_lp1019025.patch 2013-01-03 20:55:27 +0000
47@@ -0,0 +1,138 @@
48+Description: Fix LP: #1019025 and update translations.
49+ Bring upstream bug fix as a patch.
50+Author: Timo Jyrinki <timo-jyrinki@ubuntu.com>
51+Bug-Ubuntu: https://bugs.launchpad.net/bugs/1019025
52+Last-Update: 2012-10-05
53+
54+--- ubuntu-online-tour-0.11.orig/css/welcome.css
55++++ ubuntu-online-tour-0.11/css/welcome.css
56+@@ -28,11 +28,11 @@
57+ -webkit-box-shadow: 0 0 10px #000;
58+ box-shadow: 0 0 10px #000;
59+ position: absolute;
60+- background-color: #efedec;
61+ color: #4c4c4c;
62+ display: none;
63+ padding-top: 30px;
64+ z-index:2;
65++ background: url("../img/folder/chrome.png") repeat-x scroll 0 0 #F2F1F0;
66+ }
67+ #welcome-screen .control{
68+ margin-bottom: 6px;
69+--- ubuntu-online-tour-0.11.orig/js/scripts.js
70++++ ubuntu-online-tour-0.11/js/scripts.js
71+@@ -76,22 +76,6 @@ function init(){
72+ }
73+ systemMenu.resize();
74+ });
75+-
76+- /*$(document).mousemove(function(e){
77+- if(movingFolder != null){
78+- movingFolder.css('left', e.pageX - folderXOffset);
79+- movingFolder.css('top',Math.max(24, e.pageY - folderYOffset));
80+- }
81+- });
82+-
83+- $('.control').mousedown(function(e) {
84+- movingFolder = $(this).parent();
85+- folderXOffset = e.pageX - movingFolder.position().left;
86+- folderYOffset = e.pageY - movingFolder.position().top;
87+- });
88+- $(document).mouseup(function() {
89+- movingFolder = null;
90+- });*/
91+
92+ $('.window').mousedown(function(){
93+ if($(this).attr('class').indexOf("firefox-window") != -1){
94+@@ -132,8 +116,6 @@ function init(){
95+ if(set == 'email-window'){ set = 'email'; }
96+
97+ $('#menu ul li.'+set+' .selected-window-arrow').show();
98+-
99+- // guidedTourSystem.setSystem(set);
100+ }
101+ });
102+ setupTopMenu();
103+--- ubuntu-online-tour-0.11.orig/js/systemoverlay.js
104++++ ubuntu-online-tour-0.11/js/systemoverlay.js
105+@@ -75,69 +75,6 @@ function SystemOverlay($parent){
106+
107+ this.resize();
108+
109+- /*$('#systemOverlay #shortcut-title').bind('mouseover',function(){
110+- $('#systemOverlay #shortcut-title .shortcut-arrow').addClass('hover');
111+- });
112+-
113+- $('#systemOverlay #shortcut-title').bind('mouseout',function(){
114+- $('#systemOverlay #shortcut-title .shortcut-arrow').removeClass('hover');
115+- });
116+-
117+- $('#systemOverlay #shortcut-title').bind('click',function(){
118+- if($('#systemOverlay #shortcut-title p').hasClass('closed')){
119+- $('#systemOverlay #shortcut-title .shortcut-arrow').removeClass('closed');
120+- $('#systemOverlay #shortcuts #shortcut-contents').show();
121+- }else{
122+- $('#systemOverlay #shortcut-title .shortcut-arrow').addClass('closed');
123+- $('#systemOverlay #shortcuts #shortcut-contents').hide();
124+- }
125+- });
126+-
127+- $('#systemOverlay #shortcuts #shortcut-contents div').bind('mouseover',function(){
128+- $('div', this).addClass('hover');
129+- });
130+-
131+- $('#systemOverlay #shortcuts #shortcut-contents div').bind('mouseout',function(){
132+- $('div', this).removeClass('hover');
133+- });
134+-
135+- $('#systemOverlay #shortcuts #shortcut-contents div').bind('mousedown',function(){
136+- var theID = $(this).attr('id');
137+- if(theID != undefined){
138+- switch(theID){
139+- case 'browse-the-web':
140+- _this.closeOverlay();
141+- _parent.systemMenu.handleMenuClick('firefox');
142+- break;
143+- case 'view-photos':
144+- _this.closeOverlay();
145+- _parent.systemMenu.handleMenuClick('shotwell');
146+- break;
147+- case 'check-email':
148+- _this.closeOverlay();
149+- _parent.systemMenu.handleMenuClick('email');
150+- break;
151+- case 'listen-to-music':
152+- _this.closeOverlay();
153+- _parent.errorMessage.open();
154+- break;
155+- case 'media-apps':
156+- _this.displayApps('media');
157+- break;
158+- case 'internet-apps':
159+- _this.displayApps('internet');
160+- break;
161+- case 'more-apps':
162+- _this.displayApps('more');
163+- break;
164+- case 'find-apps':
165+- _this.displayFindApps();
166+- break;
167+-
168+- }
169+- }
170+- });*/
171+-
172+ $('#systemOverlay #dash-bottom-bar .bottom-wrapper div').click(function(){
173+ $('#systemOverlay #dash-bottom-bar .bottom-wrapper div').removeClass('active');
174+ switch($(this).attr('class').replace(' last','')){
175+--- ubuntu-online-tour-0.11.orig/en/index.html
176++++ ubuntu-online-tour-0.11/en/index.html
177+@@ -1039,7 +1039,7 @@
178+ </div>
179+ </div>
180+ <div id="welcome">
181+- <div id="welcome-screen" class="window selected-window">
182++ <div id="welcome-screen" class="selected-window">
183+ <div class="control">
184+ <div class="window-title">Ubuntu tour</div>
185+ </div>
186
187=== added file 'debian/patches/series'
188--- debian/patches/series 1970-01-01 00:00:00 +0000
189+++ debian/patches/series 2013-01-03 20:55:27 +0000
190@@ -0,0 +1,3 @@
191+fix_lp1019025.patch
192+update-translations.patch
193+
194
195=== added file 'debian/patches/update-translations.patch'
196--- debian/patches/update-translations.patch 1970-01-01 00:00:00 +0000
197+++ debian/patches/update-translations.patch 2013-01-03 20:55:27 +0000
198@@ -0,0 +1,12197 @@
199+=== modified file 'po-html/az.po'
200+--- old/po-html/az.po 2012-05-10 06:03:16 +0000
201++++ new/po-html/az.po 2012-10-08 13:23:36 +0000
202+@@ -14,8 +14,8 @@
203+ "MIME-Version: 1.0\n"
204+ "Content-Type: text/plain; charset=UTF-8\n"
205+ "Content-Transfer-Encoding: 8bit\n"
206+-"X-Launchpad-Export-Date: 2012-05-10 06:02+0000\n"
207+-"X-Generator: Launchpad (build 15213)\n"
208++"X-Launchpad-Export-Date: 2012-08-09 05:26+0000\n"
209++"X-Generator: Launchpad (build 15761)\n"
210+
211+ #: ../en/index.html
212+ msgid "2. Switch to the Music Lens."
213+@@ -31,7 +31,7 @@
214+
215+ #: ../en/index.html
216+ msgid "Momiji Dream"
217+-msgstr ""
218++msgstr "İnanılmaz Yuxu"
219+
220+ #: ../en/index.html
221+ msgid "to"
222+@@ -63,11 +63,11 @@
223+
224+ #: ../en/index.html
225+ msgid "About Me"
226+-msgstr ""
227++msgstr "Haqqımda"
228+
229+ #: ../en/index.html
230+ msgid "Secure"
231+-msgstr ""
232++msgstr "Qorumalı"
233+
234+ #: ../en/index.html
235+ msgid "You can also learn about:"
236+@@ -363,7 +363,7 @@
237+
238+ #: ../en/index.html
239+ msgid "Get Mail"
240+-msgstr ""
241++msgstr "Məktub Al"
242+
243+ #: ../en/index.html
244+ msgid "Science &amp; Engineering"
245+@@ -378,7 +378,7 @@
246+
247+ #: ../en/index.html
248+ msgid "Untitled 1 - LibreOffice Impress"
249+-msgstr ""
250++msgstr "Adsız 1 - LibreOffice Impress"
251+
252+ #: ../en/index.html
253+ msgid ""
254+@@ -396,27 +396,27 @@
255+
256+ #: ../en/index.html
257+ msgid "Keep Connected"
258+-msgstr ""
259++msgstr "Qoşulu Qal"
260+
261+ #: ../en/index.html
262+ msgid "Happyness"
263+-msgstr ""
264++msgstr "Xoşbəxtlik"
265+
266+ #: ../en/index.html
267+ msgid "Compatible"
268+-msgstr ""
269++msgstr "Uyğunluq"
270+
271+ #: ../en/index.html
272+ msgid "Physics based puzzle/construction game"
273+-msgstr ""
274++msgstr "Fizikaya əsaslanan məntiqi oyunlar."
275+
276+ #: ../en/index.html
277+ msgid "Auto eth0"
278+-msgstr ""
279++msgstr "Auto eth0"
280+
281+ #: ../en/index.html
282+ msgid "Recent Files"
283+-msgstr ""
284++msgstr "Son Fayllar"
285+
286+ #: ../en/index.html
287+ msgid "Browse the Internet"
288+@@ -448,7 +448,7 @@
289+
290+ #: ../en/index.html
291+ msgid "From"
292+-msgstr ""
293++msgstr "Kimdən"
294+
295+ #: ../en/index.html
296+ msgid "Preferences"
297+@@ -612,7 +612,7 @@
298+
299+ #: ../en/index.html
300+ msgid "Manipulate the flow of time to solve puzzles"
301+-msgstr ""
302++msgstr "Pazl yığmaq üçün zaman axınını idarə edin"
303+
304+ #: ../en/index.html
305+ msgid "Backup"
306+@@ -676,11 +676,11 @@
307+
308+ #: ../en/index.html
309+ msgid "Graphics"
310+-msgstr ""
311++msgstr "Qrafikalar"
312+
313+ #: ../en/index.html
314+ msgid "Dash home"
315+-msgstr ""
316++msgstr "Əsas Menyu"
317+
318+ #: ../en/index.html
319+ msgid "Albums"
320+@@ -724,7 +724,7 @@
321+
322+ #: ../en/index.html
323+ msgid "Create documents"
324+-msgstr ""
325++msgstr "Sənədlər yarat"
326+
327+ #: ../en/index.html
328+ msgid "Files Anywhere"
329+@@ -744,7 +744,7 @@
330+
331+ #: ../en/index.html
332+ msgid "Join now"
333+-msgstr ""
334++msgstr "İndi Qoşul"
335+
336+ #: ../en/index.html
337+ msgid "3. Here are your photos."
338+@@ -760,7 +760,7 @@
339+
340+ #: ../en/index.html
341+ msgid "(91 Ratings)"
342+-msgstr ""
343++msgstr "(91 Reytinq)"
344+
345+ #: ../en/index.html
346+ msgid "This package contains the Chromium browser"
347+@@ -936,7 +936,7 @@
348+
349+ #: ../en/index.html
350+ msgid "Gwibber Social Client"
351+-msgstr ""
352++msgstr "Gwibber Sosial Şəbəkə Klienti"
353+
354+ #: ../en/index.html
355+ msgid "Size:"
356+@@ -1152,7 +1152,7 @@
357+
358+ #: ../en/index.html
359+ msgid "no subject"
360+-msgstr ""
361++msgstr "mövzu yoxdur"
362+
363+ #: ../en/index.html
364+ msgid "3. Type in the email address of the recipient."
365+@@ -1166,18 +1166,19 @@
366+ msgid ""
367+ "Are you sure you want to close all programs and shutdown the computer?"
368+ msgstr ""
369++"Bütün tətbiqləri bağlayıb kompüteri söndürmək istədiyinizdən əminsiniz?"
370+
371+ #: ../en/index.html
372+ msgid "Ubuntu One"
373+-msgstr ""
374++msgstr "Ubuntu One"
375+
376+ #: ../en/index.html
377+ msgid "Download Ubuntu"
378+-msgstr ""
379++msgstr "Ubuntu-nu Yüklə"
380+
381+ #: ../en/index.html
382+ msgid "Applications"
383+-msgstr ""
384++msgstr "Tətbiqlər"
385+
386+ #: ../en/index.html
387+ msgid "Pictures"
388+@@ -1189,11 +1190,11 @@
389+
390+ #: ../en/index.html
391+ msgid "On"
392+-msgstr ""
393++msgstr "Qoşulu"
394+
395+ #: ../en/index.html
396+ msgid "Top Rated"
397+-msgstr ""
398++msgstr "Ən Çox Qiymətləndirilən"
399+
400+ #: ../en/index.html
401+ msgid "Invisible"
402+@@ -1209,7 +1210,7 @@
403+
404+ #: ../en/index.html
405+ msgid "Send files to device…"
406+-msgstr ""
407++msgstr "Faylları cihaza göndər..."
408+
409+ #: ../en/index.html
410+ msgid "2. Select your application to get more details about it."
411+@@ -1303,7 +1304,7 @@
412+
413+ #: ../en/index.html
414+ msgid "15.2KB"
415+-msgstr ""
416++msgstr "15.2KB"
417+
418+ #: ../en/index.html
419+ msgid ""
420+@@ -1344,7 +1345,7 @@
421+
422+ #: ../en/index.html
423+ msgid "Weds 14 October, 2010"
424+-msgstr ""
425++msgstr "Çərşənbə, 14 Oktyabr 2010"
426+
427+ #: ../en/index.html
428+ msgid ""
429+@@ -1527,3 +1528,12 @@
430+ #: ../en/index.html
431+ msgid "Braid"
432+ msgstr ""
433++
434++#~ msgid "Find apps"
435++#~ msgstr "Tətbiqetmələri yoxla"
436++
437++#~ msgid "Show yourself around"
438++#~ msgstr "Özün yoxla"
439++
440++#~ msgid "Surf the web"
441++#~ msgstr "İnternetdə gəz"
442+
443+=== added file 'po-html/bs.po'
444+--- old/po-html/bs.po 1970-01-01 00:00:00 +0000
445++++ new/po-html/bs.po 2012-10-08 13:23:36 +0000
446+@@ -0,0 +1,1529 @@
447++# Bosnian translation for ubuntu-online-tour
448++# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
449++# This file is distributed under the same license as the ubuntu-online-tour package.
450++# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
451++#
452++msgid ""
453++msgstr ""
454++"Project-Id-Version: ubuntu-online-tour\n"
455++"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
456++"POT-Creation-Date: 2012-05-09 08:37+0000\n"
457++"PO-Revision-Date: 2012-05-20 14:03+0000\n"
458++"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
459++"Language-Team: Bosnian <bs@li.org>\n"
460++"MIME-Version: 1.0\n"
461++"Content-Type: text/plain; charset=UTF-8\n"
462++"Content-Transfer-Encoding: 8bit\n"
463++"X-Launchpad-Export-Date: 2012-08-09 05:26+0000\n"
464++"X-Generator: Launchpad (build 15761)\n"
465++
466++#: ../en/index.html
467++msgid "2. Switch to the Music Lens."
468++msgstr ""
469++
470++#: ../en/index.html
471++msgid "Desktop"
472++msgstr ""
473++
474++#: ../en/index.html
475++msgid "5. Write your message."
476++msgstr ""
477++
478++#: ../en/index.html
479++msgid "Momiji Dream"
480++msgstr ""
481++
482++#: ../en/index.html
483++msgid "to"
484++msgstr ""
485++
486++#: ../en/index.html
487++msgid "3. Select the Videos folder."
488++msgstr ""
489++
490++#: ../en/index.html
491++msgid "PCB CNC converter"
492++msgstr ""
493++
494++#: ../en/index.html
495++msgid "5. Click the Bluetooth indicator."
496++msgstr ""
497++
498++#: ../en/index.html
499++msgid "3. Click on Appearance to change the background image."
500++msgstr ""
501++
502++#: ../en/index.html
503++msgid "Insert"
504++msgstr ""
505++
506++#: ../en/index.html
507++msgid "Thanks for exploring Ubuntu!"
508++msgstr ""
509++
510++#: ../en/index.html
511++msgid "About Me"
512++msgstr ""
513++
514++#: ../en/index.html
515++msgid "Secure"
516++msgstr ""
517++
518++#: ../en/index.html
519++msgid "You can also learn about:"
520++msgstr ""
521++
522++#: ../en/index.html
523++msgid "Canonical"
524++msgstr ""
525++
526++#: ../en/index.html
527++msgid "work"
528++msgstr ""
529++
530++#: ../en/index.html
531++msgid "Disconnect"
532++msgstr ""
533++
534++#: ../en/index.html
535++msgid "Browse"
536++msgstr ""
537++
538++#: ../en/index.html
539++msgid "Date:"
540++msgstr ""
541++
542++#: ../en/index.html
543++msgid "Fast"
544++msgstr ""
545++
546++#: ../en/index.html
547++msgid "AisleRoit Solitaire"
548++msgstr ""
549++
550++#: ../en/index.html
551++msgid "Available"
552++msgstr ""
553++
554++#: ../en/index.html
555++msgid "3.3MB"
556++msgstr ""
557++
558++#: ../en/index.html
559++msgid "Recently Used"
560++msgstr ""
561++
562++#: ../en/index.html
563++msgid "Unmute"
564++msgstr ""
565++
566++#: ../en/index.html
567++msgid "4. Enter the subject of your email."
568++msgstr ""
569++
570++#: ../en/index.html
571++msgid "reply"
572++msgstr ""
573++
574++#: ../en/index.html
575++msgid "Welcome to the Ubuntu tour!"
576++msgstr ""
577++
578++#: ../en/index.html
579++msgid "Connection Information"
580++msgstr ""
581++
582++#: ../en/index.html
583++msgid "Appearance"
584++msgstr ""
585++
586++#: ../en/index.html
587++msgid "LibreOffice Calc"
588++msgstr ""
589++
590++#: ../en/index.html
591++msgid "Thunderbird Mail"
592++msgstr ""
593++
594++#: ../en/index.html
595++msgid "Startup Applications…"
596++msgstr ""
597++
598++#: ../en/index.html
599++msgid "Accessible"
600++msgstr ""
601++
602++#: ../en/index.html
603++msgid "Backup and access your files from Ubuntu, Windows, Web or Mobile"
604++msgstr ""
605++
606++#: ../en/index.html
607++msgid "Setup new device…"
608++msgstr ""
609++
610++#: ../en/index.html
611++msgid ""
612++"Inkscape loads and saves a subset of the SVG (Scalable Vector Graphics) "
613++"format, a standard maintained by the WWW consortium."
614++msgstr ""
615++
616++#: ../en/index.html
617++msgid ""
618++"Congratulations on choosing an award-winning operating system, used by over "
619++"20 million people worldwide every day. This quick tutorial introduces many "
620++"important features to help you get the most from your Ubuntu experience."
621++msgstr ""
622++
623++#: ../en/index.html
624++msgid "Files &amp; Folders"
625++msgstr ""
626++
627++#: ../en/index.html
628++msgid ""
629++"Remember, this is just a demo. You'll have to download it to enjoy the real "
630++"thing!"
631++msgstr ""
632++
633++#: ../en/index.html
634++msgid "Home"
635++msgstr ""
636++
637++#: ../en/index.html
638++msgid "2. You can create professional presentations."
639++msgstr ""
640++
641++#: ../en/index.html
642++msgid "Thunderbird Mail/News"
643++msgstr ""
644++
645++#: ../en/index.html
646++msgid "Displays…"
647++msgstr ""
648++
649++#: ../en/index.html
650++msgid "from"
651++msgstr ""
652++
653++#: ../en/index.html
654++msgid "next"
655++msgstr ""
656++
657++#: ../en/index.html
658++msgid ""
659++"Drag and drop living, squirming, talking globs of goo to build structures, "
660++"bridges, cannonballs, zeppelins, and giant tongues. The millions of innocent "
661++"goo balls that live in the beautiful World of Goo are curious to explore."
662++msgstr ""
663++
664++#: ../en/index.html
665++msgid "Recipient"
666++msgstr ""
667++
668++#: ../en/index.html
669++msgid "Recent"
670++msgstr ""
671++
672++#: ../en/index.html
673++msgid "To:"
674++msgstr ""
675++
676++#: ../en/index.html
677++msgid "Set Up Broadcast Account…"
678++msgstr ""
679++
680++#: ../en/index.html
681++msgid "Fonts"
682++msgstr ""
683++
684++#: ../en/index.html
685++msgid "I already have an account!"
686++msgstr ""
687++
688++#: ../en/index.html
689++msgid "Ubuntu tour"
690++msgstr ""
691++
692++#: ../en/index.html
693++msgid "Not Alone"
694++msgstr ""
695++
696++#: ../en/index.html
697++msgid "Library"
698++msgstr ""
699++
700++#: ../en/index.html
701++msgid "System Settings…"
702++msgstr ""
703++
704++#: ../en/index.html
705++msgid ""
706++"All gameplay is based on time manipulation. Journey into worlds where time "
707++"behaves strangely; observe, learn from, and then master these worlds."
708++msgstr ""
709++
710++#: ../en/index.html
711++msgid ""
712++"Thanks for exploring Ubuntu! Remember, this is just a demo. You'll have to "
713++"download it to enjoy the real thing!"
714++msgstr ""
715++
716++#: ../en/index.html
717++msgid "Archive"
718++msgstr ""
719++
720++#: ../en/index.html
721++msgid "Edit Connections…"
722++msgstr ""
723++
724++#: ../en/index.html
725++msgid "Jardin Polar"
726++msgstr ""
727++
728++#: ../en/index.html
729++msgid "Shotwell Photo Manager"
730++msgstr ""
731++
732++#: ../en/index.html
733++msgid "Folders"
734++msgstr ""
735++
736++#: ../en/index.html
737++msgid "2. You can create spreadsheets and charts."
738++msgstr ""
739++
740++#: ../en/index.html
741++msgid "Format"
742++msgstr ""
743++
744++#: ../en/index.html
745++msgid "Browse files on device…"
746++msgstr ""
747++
748++#: ../en/index.html
749++msgid "1"
750++msgstr ""
751++
752++#: ../en/index.html
753++msgid "Create and edit Scalable Vector Graphics images"
754++msgstr ""
755++
756++#: ../en/index.html
757++msgid "Movie Player"
758++msgstr ""
759++
760++#: ../en/index.html
761++msgid "Shut Down…"
762++msgstr ""
763++
764++#: ../en/index.html
765++msgid "Bluetooth On"
766++msgstr ""
767++
768++#: ../en/index.html
769++msgid ""
770++"1. The launcher contains quick links to your applications. Select one and "
771++"see what happens."
772++msgstr ""
773++
774++#: ../en/index.html
775++msgid "View"
776++msgstr ""
777++
778++#: ../en/index.html
779++msgid "Suspend"
780++msgstr ""
781++
782++#: ../en/index.html
783++msgid "branches"
784++msgstr ""
785++
786++#: ../en/index.html
787++msgid "2. Enter the website address in the address bar."
788++msgstr ""
789++
790++#: ../en/index.html
791++msgid "Select One"
792++msgstr ""
793++
794++#: ../en/index.html
795++msgid "File"
796++msgstr ""
797++
798++#: ../en/index.html
799++msgid "Blender"
800++msgstr ""
801++
802++#: ../en/index.html
803++msgid "5.3MB"
804++msgstr ""
805++
806++#: ../en/index.html
807++msgid "Customize desktop"
808++msgstr ""
809++
810++#: ../en/index.html
811++msgid "Get Mail"
812++msgstr ""
813++
814++#: ../en/index.html
815++msgid "Science &amp; Engineering"
816++msgstr ""
817++
818++#: ../en/index.html
819++msgid ""
820++"BEEP has traveled for thousands of years through deep space to explore the "
821++"Galaxy. Traverse a foreign star system with the BEEP-ship and send robots to "
822++"the surface of the planets."
823++msgstr ""
824++
825++#: ../en/index.html
826++msgid "Untitled 1 - LibreOffice Impress"
827++msgstr ""
828++
829++#: ../en/index.html
830++msgid ""
831++"4. Choose your preferred wallpaper from the available selection, or choose "
832++"an image from your photo library or other source."
833++msgstr ""
834++
835++#: ../en/index.html
836++msgid "2. You can create documents like letters and reports, for example."
837++msgstr ""
838++
839++#: ../en/index.html
840++msgid "A 2D platformer/shooter game with physics-based puzzles"
841++msgstr ""
842++
843++#: ../en/index.html
844++msgid "Keep Connected"
845++msgstr ""
846++
847++#: ../en/index.html
848++msgid "Happyness"
849++msgstr ""
850++
851++#: ../en/index.html
852++msgid "Compatible"
853++msgstr ""
854++
855++#: ../en/index.html
856++msgid "Physics based puzzle/construction game"
857++msgstr ""
858++
859++#: ../en/index.html
860++msgid "Auto eth0"
861++msgstr ""
862++
863++#: ../en/index.html
864++msgid "Recent Files"
865++msgstr ""
866++
867++#: ../en/index.html
868++msgid "Browse the Internet"
869++msgstr ""
870++
871++#: ../en/index.html
872++msgid "$9.99"
873++msgstr ""
874++
875++#: ../en/index.html
876++msgid "Accessories"
877++msgstr ""
878++
879++#: ../en/index.html
880++msgid "Shut Down"
881++msgstr ""
882++
883++#: ../en/index.html
884++msgid "Brasero Disc Burner"
885++msgstr ""
886++
887++#: ../en/index.html
888++msgid "Finding new applications"
889++msgstr ""
890++
891++#: ../en/index.html
892++msgid "Subject"
893++msgstr ""
894++
895++#: ../en/index.html
896++msgid "From"
897++msgstr ""
898++
899++#: ../en/index.html
900++msgid "Preferences"
901++msgstr ""
902++
903++#: ../en/index.html
904++msgid "Clock"
905++msgstr ""
906++
907++#: ../en/index.html
908++msgid "Sound Settings…"
909++msgstr ""
910++
911++#: ../en/index.html
912++msgid ""
913++"Chromium is an open-source browser project that aims to build a safer, "
914++"faster, and more stable way for all Internet users to experience the web."
915++msgstr ""
916++
917++#: ../en/index.html
918++msgid "Fri 26 Oct, 2001"
919++msgstr ""
920++
921++#: ../en/index.html
922++msgid "Hibernate"
923++msgstr ""
924++
925++#: ../en/index.html
926++msgid "Your Ubuntu, your way"
927++msgstr ""
928++
929++#: ../en/index.html
930++msgid "2. Select Ubuntu One from the menu."
931++msgstr ""
932++
933++#: ../en/index.html
934++msgid "Set Up Mail…"
935++msgstr ""
936++
937++#: ../en/index.html
938++msgid "Turn Off Bluetooth"
939++msgstr ""
940++
941++#: ../en/index.html
942++msgid "$19.99"
943++msgstr ""
944++
945++#: ../en/index.html
946++msgid "1. Click the LibreOffice Writer icon in the Launcher."
947++msgstr ""
948++
949++#: ../en/index.html
950++msgid "Which feature would you like to learn?"
951++msgstr ""
952++
953++#: ../en/index.html
954++msgid "LibreOffice Impress"
955++msgstr ""
956++
957++#: ../en/index.html
958++msgid "Videos"
959++msgstr ""
960++
961++#: ../en/index.html
962++msgid "3. Click on the music file."
963++msgstr ""
964++
965++#: ../en/index.html
966++msgid "Unread:"
967++msgstr ""
968++
969++#: ../en/index.html
970++msgid "Write: (no subject)"
971++msgstr ""
972++
973++#: ../en/index.html
974++msgid "Installed"
975++msgstr ""
976++
977++#: ../en/index.html
978++msgid "Visible"
979++msgstr ""
980++
981++#: ../en/index.html
982++msgid "Chat"
983++msgstr ""
984++
985++#: ../en/index.html
986++msgid "Recent Apps"
987++msgstr ""
988++
989++#: ../en/index.html
990++msgid "Sending email"
991++msgstr ""
992++
993++#: ../en/index.html
994++msgid ""
995++"Inkscape user interface should be familiar from CorelDraw and similar "
996++"drawing programs. There are rectangles, ellipses, text items, bitmap images "
997++"and freehand curves. As an added bonus, both vector and bitmap objects can "
998++"have alpha transparency and can be arbitrarily transformed."
999++msgstr ""
1000++
1001++#: ../en/index.html
1002++msgid ""
1003++"9. Here you can adjust time and date settings, or add other locations to "
1004++"your world clock."
1005++msgstr ""
1006++
1007++#: ../en/index.html
1008++msgid "Software Up to Date"
1009++msgstr ""
1010++
1011++#: ../en/index.html
1012++msgid "Local"
1013++msgstr ""
1014++
1015++#: ../en/index.html
1016++msgid "Files and Folders"
1017++msgstr ""
1018++
1019++#: ../en/index.html
1020++msgid "Ubuntu One Control Panel"
1021++msgstr ""
1022++
1023++#: ../en/index.html
1024++msgid "4. Double-click on the video you wish to play."
1025++msgstr ""
1026++
1027++#: ../en/index.html
1028++msgid "Your browser does not support iframes."
1029++msgstr ""
1030++
1031++#: ../en/index.html
1032++msgid "Date"
1033++msgstr ""
1034++
1035++#: ../en/index.html
1036++msgid "New applications"
1037++msgstr ""
1038++
1039++#: ../en/index.html
1040++msgid "Not Junk"
1041++msgstr ""
1042++
1043++#: ../en/index.html
1044++msgid "Search"
1045++msgstr ""
1046++
1047++#: ../en/index.html
1048++msgid "Ubuntu Software Centre"
1049++msgstr ""
1050++
1051++#: ../en/index.html
1052++msgid "Untitled 1 - LibreOffice Calc"
1053++msgstr ""
1054++
1055++#: ../en/index.html
1056++msgid "Install"
1057++msgstr ""
1058++
1059++#: ../en/index.html
1060++msgid "Manipulate the flow of time to solve puzzles"
1061++msgstr ""
1062++
1063++#: ../en/index.html
1064++msgid "Backup"
1065++msgstr ""
1066++
1067++#: ../en/index.html
1068++msgid "History"
1069++msgstr ""
1070++
1071++#: ../en/index.html
1072++msgid "Home Folder"
1073++msgstr ""
1074++
1075++#: ../en/index.html
1076++msgid "2. Here, you can adjust volume settings."
1077++msgstr ""
1078++
1079++#: ../en/index.html
1080++msgid "Purple Dancers"
1081++msgstr ""
1082++
1083++#: ../en/index.html
1084++msgid "Cancel"
1085++msgstr ""
1086++
1087++#: ../en/index.html
1088++msgid "4. There you have it. The application is installed on your computer."
1089++msgstr ""
1090++
1091++#: ../en/index.html
1092++msgid "Untitled 1 - LibreOffice Writer"
1093++msgstr ""
1094++
1095++#: ../en/index.html
1096++msgid "Small Flowers"
1097++msgstr ""
1098++
1099++#: ../en/index.html
1100++msgid "Turn On Bluetooth"
1101++msgstr ""
1102++
1103++#: ../en/index.html
1104++msgid "Window"
1105++msgstr ""
1106++
1107++#: ../en/index.html
1108++msgid "Trash"
1109++msgstr ""
1110++
1111++#: ../en/index.html
1112++msgid "1. Click the Ubuntu Dash icon."
1113++msgstr ""
1114++
1115++#: ../en/index.html
1116++msgid "3. Click Join now to get your 5GB of free storage."
1117++msgstr ""
1118++
1119++#: ../en/index.html
1120++msgid "2. Switch to the Document Lens."
1121++msgstr ""
1122++
1123++#: ../en/index.html
1124++msgid "Graphics"
1125++msgstr ""
1126++
1127++#: ../en/index.html
1128++msgid "Dash home"
1129++msgstr ""
1130++
1131++#: ../en/index.html
1132++msgid "Albums"
1133++msgstr ""
1134++
1135++#: ../en/index.html
1136++msgid "LibreOffice Writer"
1137++msgstr ""
1138++
1139++#: ../en/index.html
1140++msgid "Create a word document"
1141++msgstr ""
1142++
1143++#: ../en/index.html
1144++msgid "Remote Desktop Viewer"
1145++msgstr ""
1146++
1147++#: ../en/index.html
1148++msgid "Create presentations"
1149++msgstr ""
1150++
1151++#: ../en/index.html
1152++msgid "Installing"
1153++msgstr ""
1154++
1155++#: ../en/index.html
1156++msgid "Games"
1157++msgstr ""
1158++
1159++#: ../en/index.html
1160++msgid "Attached Devices"
1161++msgstr ""
1162++
1163++#: ../en/index.html
1164++msgid "Sound Recorder"
1165++msgstr ""
1166++
1167++#: ../en/index.html
1168++msgid "The Power of Your Personal Cloud"
1169++msgstr ""
1170++
1171++#: ../en/index.html
1172++msgid "Create documents"
1173++msgstr ""
1174++
1175++#: ../en/index.html
1176++msgid "Files Anywhere"
1177++msgstr ""
1178++
1179++#: ../en/index.html
1180++msgid "Firefox Web Browser"
1181++msgstr ""
1182++
1183++#: ../en/index.html
1184++msgid "2. Click the Write button."
1185++msgstr ""
1186++
1187++#: ../en/index.html
1188++msgid "Free"
1189++msgstr ""
1190++
1191++#: ../en/index.html
1192++msgid "Join now"
1193++msgstr ""
1194++
1195++#: ../en/index.html
1196++msgid "3. Here are your photos."
1197++msgstr ""
1198++
1199++#: ../en/index.html
1200++msgid "2. Here, you can browse your folders. Double click on Downloads."
1201++msgstr ""
1202++
1203++#: ../en/index.html
1204++msgid "6. That's everything filled in. Now just click Send."
1205++msgstr ""
1206++
1207++#: ../en/index.html
1208++msgid "(91 Ratings)"
1209++msgstr ""
1210++
1211++#: ../en/index.html
1212++msgid "This package contains the Chromium browser"
1213++msgstr ""
1214++
1215++#: ../en/index.html
1216++msgid "Help"
1217++msgstr ""
1218++
1219++#: ../en/index.html
1220++msgid "Mute"
1221++msgstr ""
1222++
1223++#: ../en/index.html
1224++msgid "All Software"
1225++msgstr ""
1226++
1227++#: ../en/index.html
1228++msgid "Darkening Clockwork"
1229++msgstr ""
1230++
1231++#: ../en/index.html
1232++msgid "Bluetooth"
1233++msgstr ""
1234++
1235++#: ../en/index.html
1236++msgid "Education"
1237++msgstr ""
1238++
1239++#: ../en/index.html
1240++msgid "wrote"
1241++msgstr ""
1242++
1243++#: ../en/index.html
1244++msgid "Shotwell"
1245++msgstr ""
1246++
1247++#: ../en/index.html
1248++msgid "3. Congratulations! You're browsing the web."
1249++msgstr ""
1250++
1251++#: ../en/index.html
1252++msgid ""
1253++"Ubuntu works brilliantly with a range of devices. Simply plug in your mp3 "
1254++"player, camera or printer and you’ll be up and running straight away. No "
1255++"installation CDs. No fuss. And it’s compatible with Windows too! So you can "
1256++"open, edit and share Microsoft Office documents stress-free."
1257++msgstr ""
1258++
1259++#: ../en/index.html
1260++msgid "Send"
1261++msgstr ""
1262++
1263++#: ../en/index.html
1264++msgid "1. Click on the Ubuntu Dash icon."
1265++msgstr ""
1266++
1267++#: ../en/index.html
1268++msgid ""
1269++"Enjoy the simplicity of Ubuntu's stylish, intuitive interface. Fast, secure "
1270++"and with thousands of apps to choose from, Ubuntu gives you a clean and "
1271++"streamlined experience that you can really make your own."
1272++msgstr ""
1273++
1274++#: ../en/index.html
1275++msgid "Sent"
1276++msgstr ""
1277++
1278++#: ../en/index.html
1279++msgid "subject"
1280++msgstr ""
1281++
1282++#: ../en/index.html
1283++msgid "Time &amp; Date Settings…"
1284++msgstr ""
1285++
1286++#: ../en/index.html
1287++msgid "1. Click the LibreOffice Calc icon in the Launcher."
1288++msgstr ""
1289++
1290++#: ../en/index.html
1291++msgid "Stalking Ocelot"
1292++msgstr ""
1293++
1294++#: ../en/index.html
1295++msgid "Unify you contacts across Desktop, Mobile and Web"
1296++msgstr ""
1297++
1298++#: ../en/index.html
1299++msgid "Title:"
1300++msgstr ""
1301++
1302++#: ../en/index.html
1303++msgid "1. Click the LibreOffice Impress icon in the Launcher."
1304++msgstr ""
1305++
1306++#: ../en/index.html
1307++msgid ""
1308++"Accessibility is central to the Ubuntu philosophy. We believe that computing "
1309++"is for everyone regardless of nationality, race, gender or disability. Fully "
1310++"translated into 38 languages, Ubuntu also includes essential assistive "
1311++"technologies, which are, of course, completely free."
1312++msgstr ""
1313++
1314++#: ../en/index.html
1315++msgid "Dybbølsbro Station"
1316++msgstr ""
1317++
1318++#: ../en/index.html
1319++msgid "Log Out…"
1320++msgstr ""
1321++
1322++#: ../en/index.html
1323++msgid ""
1324++"Your entire collection follows you around with music streaming to Android "
1325++"and iPhone"
1326++msgstr ""
1327++
1328++#: ../en/index.html
1329++msgid ""
1330++"Braid treats your time and attention as precious, and it does everything it "
1331++"can to give you a mind-expanding experience."
1332++msgstr ""
1333++
1334++#: ../en/index.html
1335++msgid "Mount Snowdon"
1336++msgstr ""
1337++
1338++#: ../en/index.html
1339++msgid "Songs"
1340++msgstr ""
1341++
1342++#: ../en/index.html
1343++msgid ""
1344++"You can surf in safety with Ubuntu – confident that your files and data will "
1345++"stay protected. A built-in firewall and virus protection come as standard. "
1346++"And if a potential threat appears, we provide automatic updates which you "
1347++"can install in a single click. You get added security with AppArmor, which "
1348++"protects your important applications so attackers can’t access your system. "
1349++"And thanks to Firefox and gnome-keyring, Ubuntu helps you keep your private "
1350++"information private. So whether it’s accessing your bank account or sharing "
1351++"sensitive data with friends or colleagues, you’ll have peace of mind when "
1352++"you need it the most."
1353++msgstr ""
1354++
1355++#: ../en/index.html
1356++msgid "Click"
1357++msgstr ""
1358++
1359++#: ../en/index.html
1360++msgid "BEEP"
1361++msgstr ""
1362++
1363++#: ../en/index.html
1364++msgid "Computer"
1365++msgstr ""
1366++
1367++#: ../en/index.html
1368++msgid "1. Click the Email icon in the launcher."
1369++msgstr ""
1370++
1371++#: ../en/index.html
1372++msgid "Developer Tools"
1373++msgstr ""
1374++
1375++#: ../en/index.html
1376++msgid "Inkscape"
1377++msgstr ""
1378++
1379++#: ../en/index.html
1380++msgid "cc"
1381++msgstr ""
1382++
1383++#: ../en/index.html
1384++msgid "Gwibber Social Client"
1385++msgstr ""
1386++
1387++#: ../en/index.html
1388++msgid "Size:"
1389++msgstr ""
1390++
1391++#: ../en/index.html
1392++msgid "Music"
1393++msgstr ""
1394++
1395++#: ../en/index.html
1396++msgid "How to play video"
1397++msgstr ""
1398++
1399++#: ../en/index.html
1400++msgid "Browse the web"
1401++msgstr ""
1402++
1403++#: ../en/index.html
1404++msgid ""
1405++"If you want to use the spellchecker, you have to install aspell and the "
1406++"respective language-pack, e.g. aspell-en or aspell-de."
1407++msgstr ""
1408++
1409++#: ../en/index.html
1410++msgid "Sand Maze"
1411++msgstr ""
1412++
1413++#: ../en/index.html
1414++msgid "1. Click the Audio Indicator."
1415++msgstr ""
1416++
1417++#: ../en/index.html
1418++msgid "System Indicators"
1419++msgstr ""
1420++
1421++#: ../en/index.html
1422++msgid "Our star apps"
1423++msgstr ""
1424++
1425++#: ../en/index.html
1426++msgid "3. Click the Install button to begin installing."
1427++msgstr ""
1428++
1429++#: ../en/index.html
1430++msgid "Total:"
1431++msgstr ""
1432++
1433++#: ../en/index.html
1434++msgid ""
1435++"Ubuntu loads quickly on any computer, but it's super-fast on newer machines. "
1436++"With no unnecessary programs and trial software slowing things down, booting "
1437++"up and opening a browser takes seconds. Unlike other operating systems that "
1438++"leave you staring at the screen, waiting to get online. And Ubuntu won’t "
1439++"grow sluggish over time. It’s fast. And it stays fast."
1440++msgstr ""
1441++
1442++#: ../en/index.html
1443++msgid "Items:"
1444++msgstr ""
1445++
1446++#: ../en/index.html
1447++msgid "Subject:"
1448++msgstr ""
1449++
1450++#: ../en/index.html
1451++msgid ""
1452++"1. Click the Firefox icon on the left to launch the popular web browser."
1453++msgstr ""
1454++
1455++#: ../en/index.html
1456++msgid "16 Photos"
1457++msgstr ""
1458++
1459++#: ../en/index.html
1460++msgid ""
1461++"Some of the import and export features are provided using the packages dia, "
1462++"libwmf-bin, pstoedit, skencil, imagemagick, and perlmagick."
1463++msgstr ""
1464++
1465++#: ../en/index.html
1466++msgid "Themes &amp; Tweaks"
1467++msgstr ""
1468++
1469++#: ../en/index.html
1470++msgid "8. Click the Time indicator."
1471++msgstr ""
1472++
1473++#: ../en/index.html
1474++msgid "Busy"
1475++msgstr ""
1476++
1477++#: ../en/index.html
1478++msgid ""
1479++"But they dont know that they are in a game, or that they are extremely "
1480++"delicious. The most addicting and awe-inspiring puzzle game will set you on "
1481++"an adventure that youll never forget!"
1482++msgstr ""
1483++
1484++#: ../en/index.html
1485++msgid "Write"
1486++msgstr ""
1487++
1488++#: ../en/index.html
1489++msgid "Ubuntu online tour"
1490++msgstr ""
1491++
1492++#: ../en/index.html
1493++msgid ""
1494++"BEEP is a 2D side-scrolling platformer with physics-based gameplay. You "
1495++"control a small robot equipped with an anti-gravity device, a jet-pack and a "
1496++"gun. Drive, jump, fly, swim and shoot your way through 24 levels scattered "
1497++"across 6 unique environments."
1498++msgstr ""
1499++
1500++#: ../en/index.html
1501++msgid "You"
1502++msgstr ""
1503++
1504++#: ../en/index.html
1505++msgid "Junk Mail"
1506++msgstr ""
1507++
1508++#: ../en/index.html
1509++msgid "What's New"
1510++msgstr ""
1511++
1512++#: ../en/index.html
1513++msgid "App Available for Download"
1514++msgstr ""
1515++
1516++#: ../en/index.html
1517++msgid "Langelinie Alle"
1518++msgstr ""
1519++
1520++#: ../en/index.html
1521++msgid "Browse the internet"
1522++msgstr ""
1523++
1524++#: ../en/index.html
1525++msgid "Terminal Server Client"
1526++msgstr ""
1527++
1528++#: ../en/index.html
1529++msgid "2. Select the View Photos icon."
1530++msgstr ""
1531++
1532++#: ../en/index.html
1533++msgid "Launcher"
1534++msgstr ""
1535++
1536++#: ../en/index.html
1537++msgid "Clear"
1538++msgstr ""
1539++
1540++#: ../en/index.html
1541++msgid "Listen to music"
1542++msgstr ""
1543++
1544++#: ../en/index.html
1545++msgid "7. Close the menu."
1546++msgstr ""
1547++
1548++#: ../en/index.html
1549++msgid "Visolate"
1550++msgstr ""
1551++
1552++#: ../en/index.html
1553++msgid ""
1554++"6. Here, you can turn Bluetooth on and off to use wireless keyboards, mice, "
1555++"headsets, or to share files with another Bluetooth enabled device."
1556++msgstr ""
1557++
1558++#: ../en/index.html
1559++msgid "Sound &amp; Video"
1560++msgstr ""
1561++
1562++#: ../en/index.html
1563++msgid "Stay Productive"
1564++msgstr ""
1565++
1566++#: ../en/index.html
1567++msgid "Table"
1568++msgstr ""
1569++
1570++#: ../en/index.html
1571++msgid ""
1572++"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse quam "
1573++"augue, convallis id commodo id, tristique ac mi. Ut dapibus, neque eget "
1574++"elementum pretium, nunc turpis congue eros, et interdum nisi nisi at diam. "
1575++"Duis dictum, justo eget imperdiet pulvinar, dolor est fermentum nisl, luctus "
1576++"imperdiet metus elit a purus. Quisque nisl enim, lacinia ut venenatis in, "
1577++"porttitor eget orci. Quisque non nibh nec risus tincidunt sollicitudin vitae "
1578++"et nisl. Proin odio lacus, vulputate non auctor sit amet, dapibus quis "
1579++"tortor. Donec elit libero, pellentesque quis dictum sed, hendrerit non "
1580++"libero. Aliquam eu diam id leo auctor tincidunt. Phasellus cursus felis at "
1581++"nulla facilisis semper. Cras mauris urna, adipiscing sed scelerisque ut, "
1582++"gravida id neque. Mauris ut vestibulum justo. Curabitur convallis elementum "
1583++"pellentesque. Duis sit amet arcu ac eros pretium scelerisque. Nunc nec nisi "
1584++"nulla."
1585++msgstr ""
1586++
1587++#: ../en/index.html
1588++msgid "Tools"
1589++msgstr ""
1590++
1591++#: ../en/index.html
1592++msgid "Back to menu"
1593++msgstr ""
1594++
1595++#: ../en/index.html
1596++msgid "1. Click the Messaging Indicator."
1597++msgstr ""
1598++
1599++#: ../en/index.html
1600++msgid "no subject"
1601++msgstr ""
1602++
1603++#: ../en/index.html
1604++msgid "3. Type in the email address of the recipient."
1605++msgstr ""
1606++
1607++#: ../en/index.html
1608++msgid "Internet"
1609++msgstr ""
1610++
1611++#: ../en/index.html
1612++msgid ""
1613++"Are you sure you want to close all programs and shutdown the computer?"
1614++msgstr ""
1615++
1616++#: ../en/index.html
1617++msgid "Ubuntu One"
1618++msgstr ""
1619++
1620++#: ../en/index.html
1621++msgid "Download Ubuntu"
1622++msgstr ""
1623++
1624++#: ../en/index.html
1625++msgid "Applications"
1626++msgstr ""
1627++
1628++#: ../en/index.html
1629++msgid "Pictures"
1630++msgstr ""
1631++
1632++#: ../en/index.html
1633++msgid "3. Let's go back by clicking Back."
1634++msgstr ""
1635++
1636++#: ../en/index.html
1637++msgid "On"
1638++msgstr ""
1639++
1640++#: ../en/index.html
1641++msgid "Top Rated"
1642++msgstr ""
1643++
1644++#: ../en/index.html
1645++msgid "Invisible"
1646++msgstr ""
1647++
1648++#: ../en/index.html
1649++msgid "Watching a video"
1650++msgstr ""
1651++
1652++#: ../en/index.html
1653++msgid "2. Select System Settings from the menu."
1654++msgstr ""
1655++
1656++#: ../en/index.html
1657++msgid "Send files to device…"
1658++msgstr ""
1659++
1660++#: ../en/index.html
1661++msgid "2. Select your application to get more details about it."
1662++msgstr ""
1663++
1664++#: ../en/index.html
1665++msgid "Create spreadsheets"
1666++msgstr ""
1667++
1668++#: ../en/index.html
1669++msgid "Rhythmbox"
1670++msgstr ""
1671++
1672++#: ../en/index.html
1673++msgid "Documents"
1674++msgstr ""
1675++
1676++#: ../en/index.html
1677++msgid "Come and explore our favourites"
1678++msgstr ""
1679++
1680++#: ../en/index.html
1681++msgid "System"
1682++msgstr ""
1683++
1684++#: ../en/index.html
1685++msgid "Inkscape Vector Graphics Editor"
1686++msgstr ""
1687++
1688++#: ../en/index.html
1689++msgid "Original Message"
1690++msgstr ""
1691++
1692++#: ../en/index.html
1693++msgid "Rock Out"
1694++msgstr ""
1695++
1696++#: ../en/index.html
1697++msgid "Email"
1698++msgstr ""
1699++
1700++#: ../en/index.html
1701++msgid "Send an E-mail"
1702++msgstr ""
1703++
1704++#: ../en/index.html
1705++msgid "All Folders"
1706++msgstr ""
1707++
1708++#: ../en/index.html
1709++msgid "Downloads"
1710++msgstr ""
1711++
1712++#: ../en/index.html
1713++msgid "PiTiVi Video Editor"
1714++msgstr ""
1715++
1716++#: ../en/index.html
1717++msgid "1. Click the Ubuntu Software Centre icon."
1718++msgstr ""
1719++
1720++#: ../en/index.html
1721++msgid "5. Success! You can now watch your video."
1722++msgstr ""
1723++
1724++#: ../en/index.html
1725++msgid "Look at photos"
1726++msgstr ""
1727++
1728++#: ../en/index.html
1729++msgid ""
1730++"Other extensions use ruby, libxml-xql-perl, python-numpy, and python-lxml. "
1731++"You must have these packages to make full use of all extensions and effects."
1732++msgstr ""
1733++
1734++#: ../en/index.html
1735++msgid "Fwd"
1736++msgstr ""
1737++
1738++#: ../en/index.html
1739++msgid "Buck Off"
1740++msgstr ""
1741++
1742++#: ../en/index.html
1743++msgid "WildWheat"
1744++msgstr ""
1745++
1746++#: ../en/index.html
1747++msgid "1. Click the File Manager icon in the Launcher."
1748++msgstr ""
1749++
1750++#: ../en/index.html
1751++msgid "15.2KB"
1752++msgstr ""
1753++
1754++#: ../en/index.html
1755++msgid ""
1756++"Inkscape supports multiple opened files and multiple views per file. "
1757++"Graphics can be printed and exported to png bitmaps."
1758++msgstr ""
1759++
1760++#: ../en/index.html
1761++msgid "Learn More"
1762++msgstr ""
1763++
1764++#: ../en/index.html
1765++msgid ""
1766++"Chromium serves as a base for Google Chrome, which is Chromium rebranded "
1767++"(name and logo) with very few additions such as usage tracking and an auto-"
1768++"updater system."
1769++msgstr ""
1770++
1771++#: ../en/index.html
1772++msgid "Create a spreadsheet"
1773++msgstr ""
1774++
1775++#: ../en/index.html
1776++msgid "Away"
1777++msgstr ""
1778++
1779++#: ../en/index.html
1780++msgid "Draft"
1781++msgstr ""
1782++
1783++#: ../en/index.html
1784++msgid "Keep you firefox bookmarks and Tomboy notes synced"
1785++msgstr ""
1786++
1787++#: ../en/index.html
1788++msgid "World of Goo"
1789++msgstr ""
1790++
1791++#: ../en/index.html
1792++msgid "Weds 14 October, 2010"
1793++msgstr ""
1794++
1795++#: ../en/index.html
1796++msgid ""
1797++"2. The outside arrow shows running applications. The inside arrow shows the "
1798++"application you are using right now."
1799++msgstr ""
1800++
1801++#: ../en/index.html
1802++msgid "Introduction Ubuntu"
1803++msgstr ""
1804++
1805++#: ../en/index.html
1806++msgid "Banshee Media Player"
1807++msgstr ""
1808++
1809++#: ../en/index.html
1810++msgid ""
1811++"Blender is an integrated 3d suite for modelling, animation, rendering, post-"
1812++"production, interactive creation and playback (games). Blender has its own "
1813++"particular user interface, which is implemented entirely in OpenGL and "
1814++"designed with speed in mind. Python bindings are available for scripting; "
1815++"import/export features for popular file formats like 3D Studio and Wavefront "
1816++"Obj are implemented as scripts by the community. Stills, animations, models "
1817++"for games or other third party engines and interactive content in the form "
1818++"of a standalone binary and/or a web plug-in are common products of Blender "
1819++"use."
1820++msgstr ""
1821++
1822++#: ../en/index.html
1823++msgid "The Grass Aint Greener"
1824++msgstr ""
1825++
1826++#: ../en/index.html
1827++msgid "forward"
1828++msgstr ""
1829++
1830++#: ../en/index.html
1831++msgid "Chromium Web Browser"
1832++msgstr ""
1833++
1834++#: ../en/index.html
1835++msgid "4. Close the menu."
1836++msgstr ""
1837++
1838++#: ../en/index.html
1839++msgid ""
1840++"Use BEEP’s anti-gravity device to directly manipulate the physics-based "
1841++"environments. The anti-gravity device is both a tool and a weapon. Use it to "
1842++"smash enemy robots, build towers and solve puzzles."
1843++msgstr ""
1844++
1845++#: ../en/index.html
1846++msgid "Mon 11 October, 2010"
1847++msgstr ""
1848++
1849++#: ../en/index.html
1850++msgid ""
1851++"1. To configure or modify your computer settings, click the System Indicator."
1852++msgstr ""
1853++
1854++#: ../en/index.html
1855++msgid "Office"
1856++msgstr ""
1857++
1858++#: ../en/index.html
1859++msgid "Chromium"
1860++msgstr ""
1861++
1862++#: ../en/index.html
1863++msgid "delete"
1864++msgstr ""
1865++
1866++#: ../en/index.html
1867++msgid "4. So you can navigate your files and folders."
1868++msgstr ""
1869++
1870++#: ../en/index.html
1871++msgid "Printers"
1872++msgstr ""
1873++
1874++#: ../en/index.html
1875++msgid "Additional Drivers"
1876++msgstr ""
1877++
1878++#: ../en/index.html
1879++msgid ""
1880++"Manipulate the flow of time to solve puzzles Braid is a platform game in "
1881++"painterly style where you manipulate the flow of time to solve puzzles. "
1882++"Every puzzle in Braid is unique; there is no filler."
1883++msgstr ""
1884++
1885++#: ../en/index.html
1886++msgid "Attach"
1887++msgstr ""
1888++
1889++#: ../en/index.html
1890++msgid "System Settings"
1891++msgstr ""
1892++
1893++#: ../en/index.html
1894++msgid "Federica Miglio"
1895++msgstr ""
1896++
1897++#: ../en/index.html
1898++msgid "Offline"
1899++msgstr ""
1900++
1901++#: ../en/index.html
1902++msgid "archive"
1903++msgstr ""
1904++
1905++#: ../en/index.html
1906++msgid "Lock Screen"
1907++msgstr ""
1908++
1909++#: ../en/index.html
1910++msgid "Launch the photo manager"
1911++msgstr ""
1912++
1913++#: ../en/index.html
1914++msgid "From:"
1915++msgstr ""
1916++
1917++#: ../en/index.html
1918++msgid "junk"
1919++msgstr ""
1920++
1921++#: ../en/index.html
1922++msgid "Power Of Words"
1923++msgstr ""
1924++
1925++#: ../en/index.html
1926++msgid "Create a presentation"
1927++msgstr ""
1928++
1929++#: ../en/index.html
1930++msgid "Edit"
1931++msgstr ""
1932++
1933++#: ../en/index.html
1934++msgid "Remove"
1935++msgstr ""
1936++
1937++#: ../en/index.html
1938++msgid "Congratulations you completed"
1939++msgstr ""
1940++
1941++#: ../en/index.html
1942++msgid "Access the Internet"
1943++msgstr ""
1944++
1945++#: ../en/index.html
1946++msgid "Audio"
1947++msgstr ""
1948++
1949++#: ../en/index.html
1950++msgid "3. Get quick access to your music player."
1951++msgstr ""
1952++
1953++#: ../en/index.html
1954++msgid "Rubbish bin"
1955++msgstr ""
1956++
1957++#: ../en/index.html
1958++msgid "How to play Music"
1959++msgstr ""
1960++
1961++#: ../en/index.html
1962++msgid "Create and edit 3D models and animations"
1963++msgstr ""
1964++
1965++#: ../en/index.html
1966++msgid "Inbox"
1967++msgstr ""
1968++
1969++#: ../en/index.html
1970++msgid "Empathy Internet Messageing"
1971++msgstr ""
1972++
1973++#: ../en/index.html
1974++msgid "Braid"
1975++msgstr ""
1976+
1977+=== added file 'po-html/en_GB.po'
1978+--- old/po-html/en_GB.po 1970-01-01 00:00:00 +0000
1979++++ new/po-html/en_GB.po 2012-10-08 13:23:36 +0000
1980+@@ -0,0 +1,1576 @@
1981++# English (United Kingdom) translation for ubuntu-online-tour
1982++# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
1983++# This file is distributed under the same license as the ubuntu-online-tour package.
1984++# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
1985++#
1986++msgid ""
1987++msgstr ""
1988++"Project-Id-Version: ubuntu-online-tour\n"
1989++"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1990++"POT-Creation-Date: 2012-05-09 08:37+0000\n"
1991++"PO-Revision-Date: 2012-08-17 22:56+0000\n"
1992++"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1993++"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
1994++"MIME-Version: 1.0\n"
1995++"Content-Type: text/plain; charset=UTF-8\n"
1996++"Content-Transfer-Encoding: 8bit\n"
1997++"X-Launchpad-Export-Date: 2012-08-28 10:09+0000\n"
1998++"X-Generator: Launchpad (build 15864)\n"
1999++
2000++#: ../en/index.html
2001++msgid "2. Switch to the Music Lens."
2002++msgstr ""
2003++
2004++#: ../en/index.html
2005++msgid "Desktop"
2006++msgstr "Desktop"
2007++
2008++#: ../en/index.html
2009++msgid "5. Write your message."
2010++msgstr ""
2011++
2012++#: ../en/index.html
2013++msgid "Momiji Dream"
2014++msgstr "Momiji Dream"
2015++
2016++#: ../en/index.html
2017++msgid "to"
2018++msgstr ""
2019++
2020++#: ../en/index.html
2021++msgid "3. Select the Videos folder."
2022++msgstr ""
2023++
2024++#: ../en/index.html
2025++msgid "PCB CNC converter"
2026++msgstr ""
2027++
2028++#: ../en/index.html
2029++msgid "5. Click the Bluetooth indicator."
2030++msgstr ""
2031++
2032++#: ../en/index.html
2033++msgid "3. Click on Appearance to change the background image."
2034++msgstr ""
2035++
2036++#: ../en/index.html
2037++msgid "Insert"
2038++msgstr ""
2039++
2040++#: ../en/index.html
2041++msgid "Thanks for exploring Ubuntu!"
2042++msgstr ""
2043++
2044++#: ../en/index.html
2045++msgid "About Me"
2046++msgstr "About Me"
2047++
2048++#: ../en/index.html
2049++msgid "Secure"
2050++msgstr ""
2051++
2052++#: ../en/index.html
2053++msgid "You can also learn about:"
2054++msgstr ""
2055++
2056++#: ../en/index.html
2057++msgid "Canonical"
2058++msgstr ""
2059++
2060++#: ../en/index.html
2061++msgid "work"
2062++msgstr ""
2063++
2064++#: ../en/index.html
2065++msgid "Disconnect"
2066++msgstr ""
2067++
2068++#: ../en/index.html
2069++msgid "Browse"
2070++msgstr ""
2071++
2072++#: ../en/index.html
2073++msgid "Date:"
2074++msgstr ""
2075++
2076++#: ../en/index.html
2077++msgid "Fast"
2078++msgstr ""
2079++
2080++#: ../en/index.html
2081++msgid "AisleRoit Solitaire"
2082++msgstr ""
2083++
2084++#: ../en/index.html
2085++msgid "Available"
2086++msgstr ""
2087++
2088++#: ../en/index.html
2089++msgid "3.3MB"
2090++msgstr ""
2091++
2092++#: ../en/index.html
2093++msgid "Recently Used"
2094++msgstr ""
2095++
2096++#: ../en/index.html
2097++msgid "Unmute"
2098++msgstr ""
2099++
2100++#: ../en/index.html
2101++msgid "4. Enter the subject of your email."
2102++msgstr ""
2103++
2104++#: ../en/index.html
2105++msgid "reply"
2106++msgstr ""
2107++
2108++#: ../en/index.html
2109++msgid "Welcome to the Ubuntu tour!"
2110++msgstr ""
2111++
2112++#: ../en/index.html
2113++msgid "Connection Information"
2114++msgstr ""
2115++
2116++#: ../en/index.html
2117++msgid "Appearance"
2118++msgstr ""
2119++
2120++#: ../en/index.html
2121++msgid "LibreOffice Calc"
2122++msgstr ""
2123++
2124++#: ../en/index.html
2125++msgid "Thunderbird Mail"
2126++msgstr ""
2127++
2128++#: ../en/index.html
2129++msgid "Startup Applications…"
2130++msgstr ""
2131++
2132++#: ../en/index.html
2133++msgid "Accessible"
2134++msgstr ""
2135++
2136++#: ../en/index.html
2137++msgid "Backup and access your files from Ubuntu, Windows, Web or Mobile"
2138++msgstr ""
2139++
2140++#: ../en/index.html
2141++msgid "Setup new device…"
2142++msgstr ""
2143++
2144++#: ../en/index.html
2145++msgid ""
2146++"Inkscape loads and saves a subset of the SVG (Scalable Vector Graphics) "
2147++"format, a standard maintained by the WWW consortium."
2148++msgstr ""
2149++
2150++#: ../en/index.html
2151++msgid ""
2152++"Congratulations on choosing an award-winning operating system, used by over "
2153++"20 million people worldwide every day. This quick tutorial introduces many "
2154++"important features to help you get the most from your Ubuntu experience."
2155++msgstr ""
2156++
2157++#: ../en/index.html
2158++msgid "Files &amp; Folders"
2159++msgstr ""
2160++
2161++#: ../en/index.html
2162++msgid ""
2163++"Remember, this is just a demo. You'll have to download it to enjoy the real "
2164++"thing!"
2165++msgstr ""
2166++
2167++#: ../en/index.html
2168++msgid "Home"
2169++msgstr ""
2170++
2171++#: ../en/index.html
2172++msgid "2. You can create professional presentations."
2173++msgstr ""
2174++
2175++#: ../en/index.html
2176++msgid "Thunderbird Mail/News"
2177++msgstr ""
2178++
2179++#: ../en/index.html
2180++msgid "Displays…"
2181++msgstr ""
2182++
2183++#: ../en/index.html
2184++msgid "from"
2185++msgstr ""
2186++
2187++#: ../en/index.html
2188++msgid "next"
2189++msgstr ""
2190++
2191++#: ../en/index.html
2192++msgid ""
2193++"Drag and drop living, squirming, talking globs of goo to build structures, "
2194++"bridges, cannonballs, zeppelins, and giant tongues. The millions of innocent "
2195++"goo balls that live in the beautiful World of Goo are curious to explore."
2196++msgstr ""
2197++
2198++#: ../en/index.html
2199++msgid "Recipient"
2200++msgstr ""
2201++
2202++#: ../en/index.html
2203++msgid "Recent"
2204++msgstr ""
2205++
2206++#: ../en/index.html
2207++msgid "To:"
2208++msgstr ""
2209++
2210++#: ../en/index.html
2211++msgid "Set Up Broadcast Account…"
2212++msgstr ""
2213++
2214++#: ../en/index.html
2215++msgid "Fonts"
2216++msgstr ""
2217++
2218++#: ../en/index.html
2219++msgid "I already have an account!"
2220++msgstr ""
2221++
2222++#: ../en/index.html
2223++msgid "Ubuntu tour"
2224++msgstr ""
2225++
2226++#: ../en/index.html
2227++msgid "Not Alone"
2228++msgstr "Not Alone"
2229++
2230++#: ../en/index.html
2231++msgid "Library"
2232++msgstr ""
2233++
2234++#: ../en/index.html
2235++msgid "System Settings…"
2236++msgstr ""
2237++
2238++#: ../en/index.html
2239++msgid ""
2240++"All gameplay is based on time manipulation. Journey into worlds where time "
2241++"behaves strangely; observe, learn from, and then master these worlds."
2242++msgstr ""
2243++
2244++#: ../en/index.html
2245++msgid ""
2246++"Thanks for exploring Ubuntu! Remember, this is just a demo. You'll have to "
2247++"download it to enjoy the real thing!"
2248++msgstr ""
2249++
2250++#: ../en/index.html
2251++msgid "Archive"
2252++msgstr ""
2253++
2254++#: ../en/index.html
2255++msgid "Edit Connections…"
2256++msgstr ""
2257++
2258++#: ../en/index.html
2259++msgid "Jardin Polar"
2260++msgstr ""
2261++
2262++#: ../en/index.html
2263++msgid "Shotwell Photo Manager"
2264++msgstr ""
2265++
2266++#: ../en/index.html
2267++msgid "Folders"
2268++msgstr ""
2269++
2270++#: ../en/index.html
2271++msgid "2. You can create spreadsheets and charts."
2272++msgstr ""
2273++
2274++#: ../en/index.html
2275++msgid "Format"
2276++msgstr "Format"
2277++
2278++#: ../en/index.html
2279++msgid "Browse files on device…"
2280++msgstr ""
2281++
2282++#: ../en/index.html
2283++msgid "1"
2284++msgstr ""
2285++
2286++#: ../en/index.html
2287++msgid "Create and edit Scalable Vector Graphics images"
2288++msgstr "Create and edit Scalable Vector Graphics images"
2289++
2290++#: ../en/index.html
2291++msgid "Movie Player"
2292++msgstr ""
2293++
2294++#: ../en/index.html
2295++msgid "Shut Down…"
2296++msgstr ""
2297++
2298++#: ../en/index.html
2299++msgid "Bluetooth On"
2300++msgstr ""
2301++
2302++#: ../en/index.html
2303++msgid ""
2304++"1. The launcher contains quick links to your applications. Select one and "
2305++"see what happens."
2306++msgstr ""
2307++
2308++#: ../en/index.html
2309++msgid "View"
2310++msgstr ""
2311++
2312++#: ../en/index.html
2313++msgid "Suspend"
2314++msgstr ""
2315++
2316++#: ../en/index.html
2317++msgid "branches"
2318++msgstr "branches"
2319++
2320++#: ../en/index.html
2321++msgid "2. Enter the website address in the address bar."
2322++msgstr ""
2323++
2324++#: ../en/index.html
2325++msgid "Select One"
2326++msgstr ""
2327++
2328++#: ../en/index.html
2329++msgid "File"
2330++msgstr ""
2331++
2332++#: ../en/index.html
2333++msgid "Blender"
2334++msgstr "Blender"
2335++
2336++#: ../en/index.html
2337++msgid "5.3MB"
2338++msgstr ""
2339++
2340++#: ../en/index.html
2341++msgid "Customize desktop"
2342++msgstr ""
2343++
2344++#: ../en/index.html
2345++msgid "Get Mail"
2346++msgstr "Get Mail"
2347++
2348++#: ../en/index.html
2349++msgid "Science &amp; Engineering"
2350++msgstr "Science &amp; Engineering"
2351++
2352++#: ../en/index.html
2353++msgid ""
2354++"BEEP has traveled for thousands of years through deep space to explore the "
2355++"Galaxy. Traverse a foreign star system with the BEEP-ship and send robots to "
2356++"the surface of the planets."
2357++msgstr ""
2358++"BEEP has traveled for thousands of years through deep space to explore the "
2359++"Galaxy. Traverse a foreign star system with the BEEP-ship and send robots to "
2360++"the surface of the planets."
2361++
2362++#: ../en/index.html
2363++msgid "Untitled 1 - LibreOffice Impress"
2364++msgstr "Untitled 1 - LibreOffice Impress"
2365++
2366++#: ../en/index.html
2367++msgid ""
2368++"4. Choose your preferred wallpaper from the available selection, or choose "
2369++"an image from your photo library or other source."
2370++msgstr ""
2371++
2372++#: ../en/index.html
2373++msgid "2. You can create documents like letters and reports, for example."
2374++msgstr ""
2375++
2376++#: ../en/index.html
2377++msgid "A 2D platformer/shooter game with physics-based puzzles"
2378++msgstr ""
2379++
2380++#: ../en/index.html
2381++msgid "Keep Connected"
2382++msgstr ""
2383++
2384++#: ../en/index.html
2385++msgid "Happyness"
2386++msgstr ""
2387++
2388++#: ../en/index.html
2389++msgid "Compatible"
2390++msgstr ""
2391++
2392++#: ../en/index.html
2393++msgid "Physics based puzzle/construction game"
2394++msgstr "Physics based puzzle/construction game"
2395++
2396++#: ../en/index.html
2397++msgid "Auto eth0"
2398++msgstr ""
2399++
2400++#: ../en/index.html
2401++msgid "Recent Files"
2402++msgstr ""
2403++
2404++#: ../en/index.html
2405++msgid "Browse the Internet"
2406++msgstr ""
2407++
2408++#: ../en/index.html
2409++msgid "$9.99"
2410++msgstr ""
2411++
2412++#: ../en/index.html
2413++msgid "Accessories"
2414++msgstr ""
2415++
2416++#: ../en/index.html
2417++msgid "Shut Down"
2418++msgstr ""
2419++
2420++#: ../en/index.html
2421++msgid "Brasero Disc Burner"
2422++msgstr ""
2423++
2424++#: ../en/index.html
2425++msgid "Finding new applications"
2426++msgstr ""
2427++
2428++#: ../en/index.html
2429++msgid "Subject"
2430++msgstr ""
2431++
2432++#: ../en/index.html
2433++msgid "From"
2434++msgstr ""
2435++
2436++#: ../en/index.html
2437++msgid "Preferences"
2438++msgstr ""
2439++
2440++#: ../en/index.html
2441++msgid "Clock"
2442++msgstr ""
2443++
2444++#: ../en/index.html
2445++msgid "Sound Settings…"
2446++msgstr ""
2447++
2448++#: ../en/index.html
2449++msgid ""
2450++"Chromium is an open-source browser project that aims to build a safer, "
2451++"faster, and more stable way for all Internet users to experience the web."
2452++msgstr ""
2453++
2454++#: ../en/index.html
2455++msgid "Fri 26 Oct, 2001"
2456++msgstr ""
2457++
2458++#: ../en/index.html
2459++msgid "Hibernate"
2460++msgstr ""
2461++
2462++#: ../en/index.html
2463++msgid "Your Ubuntu, your way"
2464++msgstr ""
2465++
2466++#: ../en/index.html
2467++msgid "2. Select Ubuntu One from the menu."
2468++msgstr ""
2469++
2470++#: ../en/index.html
2471++msgid "Set Up Mail…"
2472++msgstr ""
2473++
2474++#: ../en/index.html
2475++msgid "Turn Off Bluetooth"
2476++msgstr ""
2477++
2478++#: ../en/index.html
2479++msgid "$19.99"
2480++msgstr ""
2481++
2482++#: ../en/index.html
2483++msgid "1. Click the LibreOffice Writer icon in the Launcher."
2484++msgstr ""
2485++
2486++#: ../en/index.html
2487++msgid "Which feature would you like to learn?"
2488++msgstr ""
2489++
2490++#: ../en/index.html
2491++msgid "LibreOffice Impress"
2492++msgstr ""
2493++
2494++#: ../en/index.html
2495++msgid "Videos"
2496++msgstr ""
2497++
2498++#: ../en/index.html
2499++msgid "3. Click on the music file."
2500++msgstr ""
2501++
2502++#: ../en/index.html
2503++msgid "Unread:"
2504++msgstr ""
2505++
2506++#: ../en/index.html
2507++msgid "Write: (no subject)"
2508++msgstr ""
2509++
2510++#: ../en/index.html
2511++msgid "Installed"
2512++msgstr ""
2513++
2514++#: ../en/index.html
2515++msgid "Visible"
2516++msgstr ""
2517++
2518++#: ../en/index.html
2519++msgid "Chat"
2520++msgstr ""
2521++
2522++#: ../en/index.html
2523++msgid "Recent Apps"
2524++msgstr ""
2525++
2526++#: ../en/index.html
2527++msgid "Sending email"
2528++msgstr ""
2529++
2530++#: ../en/index.html
2531++msgid ""
2532++"Inkscape user interface should be familiar from CorelDraw and similar "
2533++"drawing programs. There are rectangles, ellipses, text items, bitmap images "
2534++"and freehand curves. As an added bonus, both vector and bitmap objects can "
2535++"have alpha transparency and can be arbitrarily transformed."
2536++msgstr ""
2537++"The Inkscape user interface should be familiar from CorelDraw and similar "
2538++"drawing programs. There are rectangles, ellipses, text items, bitmap images "
2539++"and freehand curves. As an added bonus, both vector and bitmap objects can "
2540++"have alpha transparency and can be arbitrarily transformed."
2541++
2542++#: ../en/index.html
2543++msgid ""
2544++"9. Here you can adjust time and date settings, or add other locations to "
2545++"your world clock."
2546++msgstr ""
2547++
2548++#: ../en/index.html
2549++msgid "Software Up to Date"
2550++msgstr ""
2551++
2552++#: ../en/index.html
2553++msgid "Local"
2554++msgstr ""
2555++
2556++#: ../en/index.html
2557++msgid "Files and Folders"
2558++msgstr ""
2559++
2560++#: ../en/index.html
2561++msgid "Ubuntu One Control Panel"
2562++msgstr ""
2563++
2564++#: ../en/index.html
2565++msgid "4. Double-click on the video you wish to play."
2566++msgstr ""
2567++
2568++#: ../en/index.html
2569++msgid "Your browser does not support iframes."
2570++msgstr ""
2571++
2572++#: ../en/index.html
2573++msgid "Date"
2574++msgstr ""
2575++
2576++#: ../en/index.html
2577++msgid "New applications"
2578++msgstr ""
2579++
2580++#: ../en/index.html
2581++msgid "Not Junk"
2582++msgstr ""
2583++
2584++#: ../en/index.html
2585++msgid "Search"
2586++msgstr ""
2587++
2588++#: ../en/index.html
2589++msgid "Ubuntu Software Centre"
2590++msgstr ""
2591++
2592++#: ../en/index.html
2593++msgid "Untitled 1 - LibreOffice Calc"
2594++msgstr ""
2595++
2596++#: ../en/index.html
2597++msgid "Install"
2598++msgstr ""
2599++
2600++#: ../en/index.html
2601++msgid "Manipulate the flow of time to solve puzzles"
2602++msgstr "Manipulate the flow of time to solve puzzles"
2603++
2604++#: ../en/index.html
2605++msgid "Backup"
2606++msgstr ""
2607++
2608++#: ../en/index.html
2609++msgid "History"
2610++msgstr ""
2611++
2612++#: ../en/index.html
2613++msgid "Home Folder"
2614++msgstr ""
2615++
2616++#: ../en/index.html
2617++msgid "2. Here, you can adjust volume settings."
2618++msgstr ""
2619++
2620++#: ../en/index.html
2621++msgid "Purple Dancers"
2622++msgstr ""
2623++
2624++#: ../en/index.html
2625++msgid "Cancel"
2626++msgstr ""
2627++
2628++#: ../en/index.html
2629++msgid "4. There you have it. The application is installed on your computer."
2630++msgstr ""
2631++
2632++#: ../en/index.html
2633++msgid "Untitled 1 - LibreOffice Writer"
2634++msgstr ""
2635++
2636++#: ../en/index.html
2637++msgid "Small Flowers"
2638++msgstr ""
2639++
2640++#: ../en/index.html
2641++msgid "Turn On Bluetooth"
2642++msgstr ""
2643++
2644++#: ../en/index.html
2645++msgid "Window"
2646++msgstr ""
2647++
2648++#: ../en/index.html
2649++msgid "Trash"
2650++msgstr ""
2651++
2652++#: ../en/index.html
2653++msgid "1. Click the Ubuntu Dash icon."
2654++msgstr ""
2655++
2656++#: ../en/index.html
2657++msgid "3. Click Join now to get your 5GB of free storage."
2658++msgstr ""
2659++
2660++#: ../en/index.html
2661++msgid "2. Switch to the Document Lens."
2662++msgstr ""
2663++
2664++#: ../en/index.html
2665++msgid "Graphics"
2666++msgstr ""
2667++
2668++#: ../en/index.html
2669++msgid "Dash home"
2670++msgstr ""
2671++
2672++#: ../en/index.html
2673++msgid "Albums"
2674++msgstr ""
2675++
2676++#: ../en/index.html
2677++msgid "LibreOffice Writer"
2678++msgstr ""
2679++
2680++#: ../en/index.html
2681++msgid "Create a word document"
2682++msgstr ""
2683++
2684++#: ../en/index.html
2685++msgid "Remote Desktop Viewer"
2686++msgstr "Remote Desktop Viewer"
2687++
2688++#: ../en/index.html
2689++msgid "Create presentations"
2690++msgstr ""
2691++
2692++#: ../en/index.html
2693++msgid "Installing"
2694++msgstr ""
2695++
2696++#: ../en/index.html
2697++msgid "Games"
2698++msgstr ""
2699++
2700++#: ../en/index.html
2701++msgid "Attached Devices"
2702++msgstr ""
2703++
2704++#: ../en/index.html
2705++msgid "Sound Recorder"
2706++msgstr ""
2707++
2708++#: ../en/index.html
2709++msgid "The Power of Your Personal Cloud"
2710++msgstr ""
2711++
2712++#: ../en/index.html
2713++msgid "Create documents"
2714++msgstr ""
2715++
2716++#: ../en/index.html
2717++msgid "Files Anywhere"
2718++msgstr "Files Anywhere"
2719++
2720++#: ../en/index.html
2721++msgid "Firefox Web Browser"
2722++msgstr "Firefox Web Browser"
2723++
2724++#: ../en/index.html
2725++msgid "2. Click the Write button."
2726++msgstr ""
2727++
2728++#: ../en/index.html
2729++msgid "Free"
2730++msgstr ""
2731++
2732++#: ../en/index.html
2733++msgid "Join now"
2734++msgstr "Join now"
2735++
2736++#: ../en/index.html
2737++msgid "3. Here are your photos."
2738++msgstr ""
2739++
2740++#: ../en/index.html
2741++msgid "2. Here, you can browse your folders. Double click on Downloads."
2742++msgstr ""
2743++
2744++#: ../en/index.html
2745++msgid "6. That's everything filled in. Now just click Send."
2746++msgstr ""
2747++
2748++#: ../en/index.html
2749++msgid "(91 Ratings)"
2750++msgstr ""
2751++
2752++#: ../en/index.html
2753++msgid "This package contains the Chromium browser"
2754++msgstr ""
2755++
2756++#: ../en/index.html
2757++msgid "Help"
2758++msgstr ""
2759++
2760++#: ../en/index.html
2761++msgid "Mute"
2762++msgstr ""
2763++
2764++#: ../en/index.html
2765++msgid "All Software"
2766++msgstr ""
2767++
2768++#: ../en/index.html
2769++msgid "Darkening Clockwork"
2770++msgstr ""
2771++
2772++#: ../en/index.html
2773++msgid "Bluetooth"
2774++msgstr ""
2775++
2776++#: ../en/index.html
2777++msgid "Education"
2778++msgstr ""
2779++
2780++#: ../en/index.html
2781++msgid "wrote"
2782++msgstr ""
2783++
2784++#: ../en/index.html
2785++msgid "Shotwell"
2786++msgstr ""
2787++
2788++#: ../en/index.html
2789++msgid "3. Congratulations! You're browsing the web."
2790++msgstr ""
2791++
2792++#: ../en/index.html
2793++msgid ""
2794++"Ubuntu works brilliantly with a range of devices. Simply plug in your mp3 "
2795++"player, camera or printer and you’ll be up and running straight away. No "
2796++"installation CDs. No fuss. And it’s compatible with Windows too! So you can "
2797++"open, edit and share Microsoft Office documents stress-free."
2798++msgstr ""
2799++
2800++#: ../en/index.html
2801++msgid "Send"
2802++msgstr ""
2803++
2804++#: ../en/index.html
2805++msgid "1. Click on the Ubuntu Dash icon."
2806++msgstr ""
2807++
2808++#: ../en/index.html
2809++msgid ""
2810++"Enjoy the simplicity of Ubuntu's stylish, intuitive interface. Fast, secure "
2811++"and with thousands of apps to choose from, Ubuntu gives you a clean and "
2812++"streamlined experience that you can really make your own."
2813++msgstr ""
2814++
2815++#: ../en/index.html
2816++msgid "Sent"
2817++msgstr ""
2818++
2819++#: ../en/index.html
2820++msgid "subject"
2821++msgstr ""
2822++
2823++#: ../en/index.html
2824++msgid "Time &amp; Date Settings…"
2825++msgstr ""
2826++
2827++#: ../en/index.html
2828++msgid "1. Click the LibreOffice Calc icon in the Launcher."
2829++msgstr ""
2830++
2831++#: ../en/index.html
2832++msgid "Stalking Ocelot"
2833++msgstr ""
2834++
2835++#: ../en/index.html
2836++msgid "Unify you contacts across Desktop, Mobile and Web"
2837++msgstr ""
2838++
2839++#: ../en/index.html
2840++msgid "Title:"
2841++msgstr ""
2842++
2843++#: ../en/index.html
2844++msgid "1. Click the LibreOffice Impress icon in the Launcher."
2845++msgstr ""
2846++
2847++#: ../en/index.html
2848++msgid ""
2849++"Accessibility is central to the Ubuntu philosophy. We believe that computing "
2850++"is for everyone regardless of nationality, race, gender or disability. Fully "
2851++"translated into 38 languages, Ubuntu also includes essential assistive "
2852++"technologies, which are, of course, completely free."
2853++msgstr ""
2854++"Accessibility is central to the Ubuntu philosophy. We believe that computing "
2855++"is for everyone regardless of nationality, race, gender or disability. Fully "
2856++"translated into 38 languages, Ubuntu also includes essential assistive "
2857++"technologies, which are, of course, completely free."
2858++
2859++#: ../en/index.html
2860++msgid "Dybbølsbro Station"
2861++msgstr ""
2862++
2863++#: ../en/index.html
2864++msgid "Log Out…"
2865++msgstr ""
2866++
2867++#: ../en/index.html
2868++msgid ""
2869++"Your entire collection follows you around with music streaming to Android "
2870++"and iPhone"
2871++msgstr ""
2872++
2873++#: ../en/index.html
2874++msgid ""
2875++"Braid treats your time and attention as precious, and it does everything it "
2876++"can to give you a mind-expanding experience."
2877++msgstr ""
2878++
2879++#: ../en/index.html
2880++msgid "Mount Snowdon"
2881++msgstr ""
2882++
2883++#: ../en/index.html
2884++msgid "Songs"
2885++msgstr ""
2886++
2887++#: ../en/index.html
2888++msgid ""
2889++"You can surf in safety with Ubuntu – confident that your files and data will "
2890++"stay protected. A built-in firewall and virus protection come as standard. "
2891++"And if a potential threat appears, we provide automatic updates which you "
2892++"can install in a single click. You get added security with AppArmor, which "
2893++"protects your important applications so attackers can’t access your system. "
2894++"And thanks to Firefox and gnome-keyring, Ubuntu helps you keep your private "
2895++"information private. So whether it’s accessing your bank account or sharing "
2896++"sensitive data with friends or colleagues, you’ll have peace of mind when "
2897++"you need it the most."
2898++msgstr ""
2899++
2900++#: ../en/index.html
2901++msgid "Click"
2902++msgstr ""
2903++
2904++#: ../en/index.html
2905++msgid "BEEP"
2906++msgstr ""
2907++
2908++#: ../en/index.html
2909++msgid "Computer"
2910++msgstr ""
2911++
2912++#: ../en/index.html
2913++msgid "1. Click the Email icon in the launcher."
2914++msgstr ""
2915++
2916++#: ../en/index.html
2917++msgid "Developer Tools"
2918++msgstr ""
2919++
2920++#: ../en/index.html
2921++msgid "Inkscape"
2922++msgstr ""
2923++
2924++#: ../en/index.html
2925++msgid "cc"
2926++msgstr ""
2927++
2928++#: ../en/index.html
2929++msgid "Gwibber Social Client"
2930++msgstr "Gwibber Social Client"
2931++
2932++#: ../en/index.html
2933++msgid "Size:"
2934++msgstr ""
2935++
2936++#: ../en/index.html
2937++msgid "Music"
2938++msgstr ""
2939++
2940++#: ../en/index.html
2941++msgid "How to play video"
2942++msgstr ""
2943++
2944++#: ../en/index.html
2945++msgid "Browse the web"
2946++msgstr ""
2947++
2948++#: ../en/index.html
2949++msgid ""
2950++"If you want to use the spellchecker, you have to install aspell and the "
2951++"respective language-pack, e.g. aspell-en or aspell-de."
2952++msgstr ""
2953++
2954++#: ../en/index.html
2955++msgid "Sand Maze"
2956++msgstr ""
2957++
2958++#: ../en/index.html
2959++msgid "1. Click the Audio Indicator."
2960++msgstr ""
2961++
2962++#: ../en/index.html
2963++msgid "System Indicators"
2964++msgstr ""
2965++
2966++#: ../en/index.html
2967++msgid "Our star apps"
2968++msgstr ""
2969++
2970++#: ../en/index.html
2971++msgid "3. Click the Install button to begin installing."
2972++msgstr ""
2973++
2974++#: ../en/index.html
2975++msgid "Total:"
2976++msgstr ""
2977++
2978++#: ../en/index.html
2979++msgid ""
2980++"Ubuntu loads quickly on any computer, but it's super-fast on newer machines. "
2981++"With no unnecessary programs and trial software slowing things down, booting "
2982++"up and opening a browser takes seconds. Unlike other operating systems that "
2983++"leave you staring at the screen, waiting to get online. And Ubuntu won’t "
2984++"grow sluggish over time. It’s fast. And it stays fast."
2985++msgstr ""
2986++"Ubuntu loads quickly on any computer, but it's super-fast on newer machines. "
2987++"With no unnecessary programs and trial software slowing things down, booting "
2988++"up and opening a browser takes seconds. Unlike other operating systems that "
2989++"leave you staring at the screen, waiting to get online. And Ubuntu won’t "
2990++"grow sluggish over time. It’s fast. And it stays fast."
2991++
2992++#: ../en/index.html
2993++msgid "Items:"
2994++msgstr ""
2995++
2996++#: ../en/index.html
2997++msgid "Subject:"
2998++msgstr ""
2999++
3000++#: ../en/index.html
3001++msgid ""
3002++"1. Click the Firefox icon on the left to launch the popular web browser."
3003++msgstr ""
3004++
3005++#: ../en/index.html
3006++msgid "16 Photos"
3007++msgstr ""
3008++
3009++#: ../en/index.html
3010++msgid ""
3011++"Some of the import and export features are provided using the packages dia, "
3012++"libwmf-bin, pstoedit, skencil, imagemagick, and perlmagick."
3013++msgstr ""
3014++
3015++#: ../en/index.html
3016++msgid "Themes &amp; Tweaks"
3017++msgstr ""
3018++
3019++#: ../en/index.html
3020++msgid "8. Click the Time indicator."
3021++msgstr ""
3022++
3023++#: ../en/index.html
3024++msgid "Busy"
3025++msgstr ""
3026++
3027++#: ../en/index.html
3028++msgid ""
3029++"But they dont know that they are in a game, or that they are extremely "
3030++"delicious. The most addicting and awe-inspiring puzzle game will set you on "
3031++"an adventure that youll never forget!"
3032++msgstr ""
3033++
3034++#: ../en/index.html
3035++msgid "Write"
3036++msgstr ""
3037++
3038++#: ../en/index.html
3039++msgid "Ubuntu online tour"
3040++msgstr ""
3041++
3042++#: ../en/index.html
3043++msgid ""
3044++"BEEP is a 2D side-scrolling platformer with physics-based gameplay. You "
3045++"control a small robot equipped with an anti-gravity device, a jet-pack and a "
3046++"gun. Drive, jump, fly, swim and shoot your way through 24 levels scattered "
3047++"across 6 unique environments."
3048++msgstr ""
3049++
3050++#: ../en/index.html
3051++msgid "You"
3052++msgstr "You"
3053++
3054++#: ../en/index.html
3055++msgid "Junk Mail"
3056++msgstr "Junk Mail"
3057++
3058++#: ../en/index.html
3059++msgid "What's New"
3060++msgstr ""
3061++
3062++#: ../en/index.html
3063++msgid "App Available for Download"
3064++msgstr ""
3065++
3066++#: ../en/index.html
3067++msgid "Langelinie Alle"
3068++msgstr ""
3069++
3070++#: ../en/index.html
3071++msgid "Browse the internet"
3072++msgstr ""
3073++
3074++#: ../en/index.html
3075++msgid "Terminal Server Client"
3076++msgstr ""
3077++
3078++#: ../en/index.html
3079++msgid "2. Select the View Photos icon."
3080++msgstr ""
3081++
3082++#: ../en/index.html
3083++msgid "Launcher"
3084++msgstr ""
3085++
3086++#: ../en/index.html
3087++msgid "Clear"
3088++msgstr ""
3089++
3090++#: ../en/index.html
3091++msgid "Listen to music"
3092++msgstr ""
3093++
3094++#: ../en/index.html
3095++msgid "7. Close the menu."
3096++msgstr ""
3097++
3098++#: ../en/index.html
3099++msgid "Visolate"
3100++msgstr ""
3101++
3102++#: ../en/index.html
3103++msgid ""
3104++"6. Here, you can turn Bluetooth on and off to use wireless keyboards, mice, "
3105++"headsets, or to share files with another Bluetooth enabled device."
3106++msgstr ""
3107++
3108++#: ../en/index.html
3109++msgid "Sound &amp; Video"
3110++msgstr "Sound &amp; Video"
3111++
3112++#: ../en/index.html
3113++msgid "Stay Productive"
3114++msgstr "Stay Productive"
3115++
3116++#: ../en/index.html
3117++msgid "Table"
3118++msgstr "Table"
3119++
3120++#: ../en/index.html
3121++msgid ""
3122++"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse quam "
3123++"augue, convallis id commodo id, tristique ac mi. Ut dapibus, neque eget "
3124++"elementum pretium, nunc turpis congue eros, et interdum nisi nisi at diam. "
3125++"Duis dictum, justo eget imperdiet pulvinar, dolor est fermentum nisl, luctus "
3126++"imperdiet metus elit a purus. Quisque nisl enim, lacinia ut venenatis in, "
3127++"porttitor eget orci. Quisque non nibh nec risus tincidunt sollicitudin vitae "
3128++"et nisl. Proin odio lacus, vulputate non auctor sit amet, dapibus quis "
3129++"tortor. Donec elit libero, pellentesque quis dictum sed, hendrerit non "
3130++"libero. Aliquam eu diam id leo auctor tincidunt. Phasellus cursus felis at "
3131++"nulla facilisis semper. Cras mauris urna, adipiscing sed scelerisque ut, "
3132++"gravida id neque. Mauris ut vestibulum justo. Curabitur convallis elementum "
3133++"pellentesque. Duis sit amet arcu ac eros pretium scelerisque. Nunc nec nisi "
3134++"nulla."
3135++msgstr ""
3136++"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse quam "
3137++"augue, convallis id commodo id, tristique ac mi. Ut dapibus, neque eget "
3138++"elementum pretium, nunc turpis congue eros, et interdum nisi nisi at diam. "
3139++"Duis dictum, justo eget imperdiet pulvinar, dolor est fermentum nisl, luctus "
3140++"imperdiet metus elit a purus. Quisque nisl enim, lacinia ut venenatis in, "
3141++"porttitor eget orci. Quisque non nibh nec risus tincidunt sollicitudin vitae "
3142++"et nisl. Proin odio lacus, vulputate non auctor sit amet, dapibus quis "
3143++"tortor. Donec elit libero, pellentesque quis dictum sed, hendrerit non "
3144++"libero. Aliquam eu diam id leo auctor tincidunt. Phasellus cursus felis at "
3145++"nulla facilisis semper. Cras mauris urna, adipiscing sed scelerisque ut, "
3146++"gravida id neque. Mauris ut vestibulum justo. Curabitur convallis elementum "
3147++"pellentesque. Duis sit amet arcu ac eros pretium scelerisque. Nunc nec nisi "
3148++"nulla."
3149++
3150++#: ../en/index.html
3151++msgid "Tools"
3152++msgstr "Tools"
3153++
3154++#: ../en/index.html
3155++msgid "Back to menu"
3156++msgstr ""
3157++
3158++#: ../en/index.html
3159++msgid "1. Click the Messaging Indicator."
3160++msgstr ""
3161++
3162++#: ../en/index.html
3163++msgid "no subject"
3164++msgstr "no subject"
3165++
3166++#: ../en/index.html
3167++msgid "3. Type in the email address of the recipient."
3168++msgstr ""
3169++
3170++#: ../en/index.html
3171++msgid "Internet"
3172++msgstr "Internet"
3173++
3174++#: ../en/index.html
3175++msgid ""
3176++"Are you sure you want to close all programs and shutdown the computer?"
3177++msgstr ""
3178++"Are you sure you want to close all programs and shutdown the computer?"
3179++
3180++#: ../en/index.html
3181++msgid "Ubuntu One"
3182++msgstr "Ubuntu One"
3183++
3184++#: ../en/index.html
3185++msgid "Download Ubuntu"
3186++msgstr "Download Ubuntu"
3187++
3188++#: ../en/index.html
3189++msgid "Applications"
3190++msgstr "Applications"
3191++
3192++#: ../en/index.html
3193++msgid "Pictures"
3194++msgstr ""
3195++
3196++#: ../en/index.html
3197++msgid "3. Let's go back by clicking Back."
3198++msgstr ""
3199++
3200++#: ../en/index.html
3201++msgid "On"
3202++msgstr ""
3203++
3204++#: ../en/index.html
3205++msgid "Top Rated"
3206++msgstr ""
3207++
3208++#: ../en/index.html
3209++msgid "Invisible"
3210++msgstr ""
3211++
3212++#: ../en/index.html
3213++msgid "Watching a video"
3214++msgstr ""
3215++
3216++#: ../en/index.html
3217++msgid "2. Select System Settings from the menu."
3218++msgstr ""
3219++
3220++#: ../en/index.html
3221++msgid "Send files to device…"
3222++msgstr ""
3223++
3224++#: ../en/index.html
3225++msgid "2. Select your application to get more details about it."
3226++msgstr ""
3227++
3228++#: ../en/index.html
3229++msgid "Create spreadsheets"
3230++msgstr ""
3231++
3232++#: ../en/index.html
3233++msgid "Rhythmbox"
3234++msgstr ""
3235++
3236++#: ../en/index.html
3237++msgid "Documents"
3238++msgstr ""
3239++
3240++#: ../en/index.html
3241++msgid "Come and explore our favourites"
3242++msgstr ""
3243++
3244++#: ../en/index.html
3245++msgid "System"
3246++msgstr ""
3247++
3248++#: ../en/index.html
3249++msgid "Inkscape Vector Graphics Editor"
3250++msgstr ""
3251++
3252++#: ../en/index.html
3253++msgid "Original Message"
3254++msgstr ""
3255++
3256++#: ../en/index.html
3257++msgid "Rock Out"
3258++msgstr ""
3259++
3260++#: ../en/index.html
3261++msgid "Email"
3262++msgstr ""
3263++
3264++#: ../en/index.html
3265++msgid "Send an E-mail"
3266++msgstr ""
3267++
3268++#: ../en/index.html
3269++msgid "All Folders"
3270++msgstr ""
3271++
3272++#: ../en/index.html
3273++msgid "Downloads"
3274++msgstr "Downloads"
3275++
3276++#: ../en/index.html
3277++msgid "PiTiVi Video Editor"
3278++msgstr ""
3279++
3280++#: ../en/index.html
3281++msgid "1. Click the Ubuntu Software Centre icon."
3282++msgstr ""
3283++
3284++#: ../en/index.html
3285++msgid "5. Success! You can now watch your video."
3286++msgstr ""
3287++
3288++#: ../en/index.html
3289++msgid "Look at photos"
3290++msgstr ""
3291++
3292++#: ../en/index.html
3293++msgid ""
3294++"Other extensions use ruby, libxml-xql-perl, python-numpy, and python-lxml. "
3295++"You must have these packages to make full use of all extensions and effects."
3296++msgstr ""
3297++
3298++#: ../en/index.html
3299++msgid "Fwd"
3300++msgstr ""
3301++
3302++#: ../en/index.html
3303++msgid "Buck Off"
3304++msgstr ""
3305++
3306++#: ../en/index.html
3307++msgid "WildWheat"
3308++msgstr ""
3309++
3310++#: ../en/index.html
3311++msgid "1. Click the File Manager icon in the Launcher."
3312++msgstr ""
3313++
3314++#: ../en/index.html
3315++msgid "15.2KB"
3316++msgstr ""
3317++
3318++#: ../en/index.html
3319++msgid ""
3320++"Inkscape supports multiple opened files and multiple views per file. "
3321++"Graphics can be printed and exported to png bitmaps."
3322++msgstr ""
3323++"Inkscape supports multiple opened files and multiple views per file. "
3324++"Graphics can be printed and exported to png bitmaps."
3325++
3326++#: ../en/index.html
3327++msgid "Learn More"
3328++msgstr ""
3329++
3330++#: ../en/index.html
3331++msgid ""
3332++"Chromium serves as a base for Google Chrome, which is Chromium rebranded "
3333++"(name and logo) with very few additions such as usage tracking and an auto-"
3334++"updater system."
3335++msgstr ""
3336++
3337++#: ../en/index.html
3338++msgid "Create a spreadsheet"
3339++msgstr ""
3340++
3341++#: ../en/index.html
3342++msgid "Away"
3343++msgstr ""
3344++
3345++#: ../en/index.html
3346++msgid "Draft"
3347++msgstr ""
3348++
3349++#: ../en/index.html
3350++msgid "Keep you firefox bookmarks and Tomboy notes synced"
3351++msgstr ""
3352++
3353++#: ../en/index.html
3354++msgid "World of Goo"
3355++msgstr ""
3356++
3357++#: ../en/index.html
3358++msgid "Weds 14 October, 2010"
3359++msgstr "Weds 14 October, 2010"
3360++
3361++#: ../en/index.html
3362++msgid ""
3363++"2. The outside arrow shows running applications. The inside arrow shows the "
3364++"application you are using right now."
3365++msgstr ""
3366++
3367++#: ../en/index.html
3368++msgid "Introduction Ubuntu"
3369++msgstr ""
3370++
3371++#: ../en/index.html
3372++msgid "Banshee Media Player"
3373++msgstr ""
3374++
3375++#: ../en/index.html
3376++msgid ""
3377++"Blender is an integrated 3d suite for modelling, animation, rendering, post-"
3378++"production, interactive creation and playback (games). Blender has its own "
3379++"particular user interface, which is implemented entirely in OpenGL and "
3380++"designed with speed in mind. Python bindings are available for scripting; "
3381++"import/export features for popular file formats like 3D Studio and Wavefront "
3382++"Obj are implemented as scripts by the community. Stills, animations, models "
3383++"for games or other third party engines and interactive content in the form "
3384++"of a standalone binary and/or a web plug-in are common products of Blender "
3385++"use."
3386++msgstr ""
3387++
3388++#: ../en/index.html
3389++msgid "The Grass Aint Greener"
3390++msgstr "The Grass Aint Greener"
3391++
3392++#: ../en/index.html
3393++msgid "forward"
3394++msgstr ""
3395++
3396++#: ../en/index.html
3397++msgid "Chromium Web Browser"
3398++msgstr ""
3399++
3400++#: ../en/index.html
3401++msgid "4. Close the menu."
3402++msgstr ""
3403++
3404++#: ../en/index.html
3405++msgid ""
3406++"Use BEEP’s anti-gravity device to directly manipulate the physics-based "
3407++"environments. The anti-gravity device is both a tool and a weapon. Use it to "
3408++"smash enemy robots, build towers and solve puzzles."
3409++msgstr ""
3410++
3411++#: ../en/index.html
3412++msgid "Mon 11 October, 2010"
3413++msgstr "Mon 11 October, 2010"
3414++
3415++#: ../en/index.html
3416++msgid ""
3417++"1. To configure or modify your computer settings, click the System Indicator."
3418++msgstr ""
3419++
3420++#: ../en/index.html
3421++msgid "Office"
3422++msgstr ""
3423++
3424++#: ../en/index.html
3425++msgid "Chromium"
3426++msgstr ""
3427++
3428++#: ../en/index.html
3429++msgid "delete"
3430++msgstr ""
3431++
3432++#: ../en/index.html
3433++msgid "4. So you can navigate your files and folders."
3434++msgstr ""
3435++
3436++#: ../en/index.html
3437++msgid "Printers"
3438++msgstr ""
3439++
3440++#: ../en/index.html
3441++msgid "Additional Drivers"
3442++msgstr ""
3443++
3444++#: ../en/index.html
3445++msgid ""
3446++"Manipulate the flow of time to solve puzzles Braid is a platform game in "
3447++"painterly style where you manipulate the flow of time to solve puzzles. "
3448++"Every puzzle in Braid is unique; there is no filler."
3449++msgstr ""
3450++"Manipulate the flow of time to solve puzzles! Braid is a platform game in "
3451++"painterly style, where you manipulate the flow of time to solve puzzles. "
3452++"Every puzzle in Braid is unique; there is no filler."
3453++
3454++#: ../en/index.html
3455++msgid "Attach"
3456++msgstr ""
3457++
3458++#: ../en/index.html
3459++msgid "System Settings"
3460++msgstr ""
3461++
3462++#: ../en/index.html
3463++msgid "Federica Miglio"
3464++msgstr ""
3465++
3466++#: ../en/index.html
3467++msgid "Offline"
3468++msgstr ""
3469++
3470++#: ../en/index.html
3471++msgid "archive"
3472++msgstr ""
3473++
3474++#: ../en/index.html
3475++msgid "Lock Screen"
3476++msgstr ""
3477++
3478++#: ../en/index.html
3479++msgid "Launch the photo manager"
3480++msgstr ""
3481++
3482++#: ../en/index.html
3483++msgid "From:"
3484++msgstr ""
3485++
3486++#: ../en/index.html
3487++msgid "junk"
3488++msgstr ""
3489++
3490++#: ../en/index.html
3491++msgid "Power Of Words"
3492++msgstr ""
3493++
3494++#: ../en/index.html
3495++msgid "Create a presentation"
3496++msgstr ""
3497++
3498++#: ../en/index.html
3499++msgid "Edit"
3500++msgstr ""
3501++
3502++#: ../en/index.html
3503++msgid "Remove"
3504++msgstr ""
3505++
3506++#: ../en/index.html
3507++msgid "Congratulations you completed"
3508++msgstr ""
3509++
3510++#: ../en/index.html
3511++msgid "Access the Internet"
3512++msgstr ""
3513++
3514++#: ../en/index.html
3515++msgid "Audio"
3516++msgstr ""
3517++
3518++#: ../en/index.html
3519++msgid "3. Get quick access to your music player."
3520++msgstr ""
3521++
3522++#: ../en/index.html
3523++msgid "Rubbish bin"
3524++msgstr "Rubbish bin"
3525++
3526++#: ../en/index.html
3527++msgid "How to play Music"
3528++msgstr ""
3529++
3530++#: ../en/index.html
3531++msgid "Create and edit 3D models and animations"
3532++msgstr "Create and edit 3D models and animations"
3533++
3534++#: ../en/index.html
3535++msgid "Inbox"
3536++msgstr "Inbox"
3537++
3538++#: ../en/index.html
3539++msgid "Empathy Internet Messageing"
3540++msgstr "Empathy Internet Messaging"
3541++
3542++#: ../en/index.html
3543++msgid "Braid"
3544++msgstr ""
3545++
3546++#~ msgid "Show yourself around"
3547++#~ msgstr "Show yourself around"
3548++
3549++#~ msgid "View Photos"
3550++#~ msgstr "View Photos"
3551++
3552++#~ msgid "Files"
3553++#~ msgstr "Files"
3554++
3555++#~ msgid "Find apps"
3556++#~ msgstr "Find apps"
3557+
3558+=== modified file 'po-html/eo.po'
3559+--- old/po-html/eo.po 2012-05-10 06:03:16 +0000
3560++++ new/po-html/eo.po 2012-10-08 13:23:36 +0000
3561+@@ -14,8 +14,8 @@
3562+ "MIME-Version: 1.0\n"
3563+ "Content-Type: text/plain; charset=UTF-8\n"
3564+ "Content-Transfer-Encoding: 8bit\n"
3565+-"X-Launchpad-Export-Date: 2012-05-10 06:02+0000\n"
3566+-"X-Generator: Launchpad (build 15213)\n"
3567++"X-Launchpad-Export-Date: 2012-08-09 05:26+0000\n"
3568++"X-Generator: Launchpad (build 15761)\n"
3569+
3570+ #: ../en/index.html
3571+ msgid "2. Switch to the Music Lens."
3572+@@ -23,7 +23,7 @@
3573+
3574+ #: ../en/index.html
3575+ msgid "Desktop"
3576+-msgstr ""
3577++msgstr "Labortablo"
3578+
3579+ #: ../en/index.html
3580+ msgid "5. Write your message."
3581+@@ -31,7 +31,7 @@
3582+
3583+ #: ../en/index.html
3584+ msgid "Momiji Dream"
3585+-msgstr ""
3586++msgstr "Momiji Dream"
3587+
3588+ #: ../en/index.html
3589+ msgid "to"
3590+@@ -43,7 +43,7 @@
3591+
3592+ #: ../en/index.html
3593+ msgid "PCB CNC converter"
3594+-msgstr ""
3595++msgstr "Konvertilo de PCB CNC"
3596+
3597+ #: ../en/index.html
3598+ msgid "5. Click the Bluetooth indicator."
3599+@@ -59,7 +59,7 @@
3600+
3601+ #: ../en/index.html
3602+ msgid "Thanks for exploring Ubuntu!"
3603+-msgstr ""
3604++msgstr "Dankon por eksplori Ubuntu!"
3605+
3606+ #: ../en/index.html
3607+ msgid "About Me"
3608+@@ -75,7 +75,7 @@
3609+
3610+ #: ../en/index.html
3611+ msgid "Canonical"
3612+-msgstr ""
3613++msgstr "Canonical"
3614+
3615+ #: ../en/index.html
3616+ msgid "work"
3617+@@ -83,7 +83,7 @@
3618+
3619+ #: ../en/index.html
3620+ msgid "Disconnect"
3621+-msgstr ""
3622++msgstr "Malkonekti"
3623+
3624+ #: ../en/index.html
3625+ msgid "Browse"
3626+@@ -99,7 +99,7 @@
3627+
3628+ #: ../en/index.html
3629+ msgid "AisleRoit Solitaire"
3630+-msgstr ""
3631++msgstr "Paciencludaro AisleRoit"
3632+
3633+ #: ../en/index.html
3634+ msgid "Available"
3635+@@ -107,7 +107,7 @@
3636+
3637+ #: ../en/index.html
3638+ msgid "3.3MB"
3639+-msgstr ""
3640++msgstr "3.3 MB"
3641+
3642+ #: ../en/index.html
3643+ msgid "Recently Used"
3644+@@ -131,7 +131,7 @@
3645+
3646+ #: ../en/index.html
3647+ msgid "Connection Information"
3648+-msgstr ""
3649++msgstr "Informoj pri konekto"
3650+
3651+ #: ../en/index.html
3652+ msgid "Appearance"
3653+@@ -139,7 +139,7 @@
3654+
3655+ #: ../en/index.html
3656+ msgid "LibreOffice Calc"
3657+-msgstr ""
3658++msgstr "LibreOffice Kalk"
3659+
3660+ #: ../en/index.html
3661+ msgid "Thunderbird Mail"
3662+@@ -176,7 +176,7 @@
3663+
3664+ #: ../en/index.html
3665+ msgid "Files &amp; Folders"
3666+-msgstr "Dosieroj &amp; dosierujoj"
3667++msgstr "Dosieroj kaj dosierujoj"
3668+
3669+ #: ../en/index.html
3670+ msgid ""
3671+@@ -269,7 +269,7 @@
3672+
3673+ #: ../en/index.html
3674+ msgid "Archive"
3675+-msgstr ""
3676++msgstr "Arkivo"
3677+
3678+ #: ../en/index.html
3679+ msgid "Edit Connections…"
3680+@@ -277,7 +277,7 @@
3681+
3682+ #: ../en/index.html
3683+ msgid "Jardin Polar"
3684+-msgstr ""
3685++msgstr "Jardin POLAR"
3686+
3687+ #: ../en/index.html
3688+ msgid "Shotwell Photo Manager"
3689+@@ -355,7 +355,7 @@
3690+
3691+ #: ../en/index.html
3692+ msgid "5.3MB"
3693+-msgstr ""
3694++msgstr "5.3 MB"
3695+
3696+ #: ../en/index.html
3697+ msgid "Customize desktop"
3698+@@ -363,11 +363,11 @@
3699+
3700+ #: ../en/index.html
3701+ msgid "Get Mail"
3702+-msgstr "Recevi retpoŝton"
3703++msgstr "Ricevi retpoŝton"
3704+
3705+ #: ../en/index.html
3706+ msgid "Science &amp; Engineering"
3707+-msgstr "Scienco &amp; enĝinierado"
3708++msgstr "Scienco kaj enĝinierado"
3709+
3710+ #: ../en/index.html
3711+ msgid ""
3712+@@ -378,7 +378,7 @@
3713+
3714+ #: ../en/index.html
3715+ msgid "Untitled 1 - LibreOffice Impress"
3716+-msgstr ""
3717++msgstr "Sentitola 1 - LibreOffice Impress"
3718+
3719+ #: ../en/index.html
3720+ msgid ""
3721+@@ -396,15 +396,15 @@
3722+
3723+ #: ../en/index.html
3724+ msgid "Keep Connected"
3725+-msgstr ""
3726++msgstr "Resti konektita"
3727+
3728+ #: ../en/index.html
3729+ msgid "Happyness"
3730+-msgstr ""
3731++msgstr "Feliĉo"
3732+
3733+ #: ../en/index.html
3734+ msgid "Compatible"
3735+-msgstr ""
3736++msgstr "Kongruebla"
3737+
3738+ #: ../en/index.html
3739+ msgid "Physics based puzzle/construction game"
3740+@@ -412,7 +412,7 @@
3741+
3742+ #: ../en/index.html
3743+ msgid "Auto eth0"
3744+-msgstr ""
3745++msgstr "Aŭtomata eterreto"
3746+
3747+ #: ../en/index.html
3748+ msgid "Recent Files"
3749+@@ -424,7 +424,7 @@
3750+
3751+ #: ../en/index.html
3752+ msgid "$9.99"
3753+-msgstr ""
3754++msgstr "9.99 $"
3755+
3756+ #: ../en/index.html
3757+ msgid "Accessories"
3758+@@ -436,7 +436,7 @@
3759+
3760+ #: ../en/index.html
3761+ msgid "Brasero Disc Burner"
3762+-msgstr ""
3763++msgstr "KD-registrilo Brasero"
3764+
3765+ #: ../en/index.html
3766+ msgid "Finding new applications"
3767+@@ -448,7 +448,7 @@
3768+
3769+ #: ../en/index.html
3770+ msgid "From"
3771+-msgstr "Sendanto"
3772++msgstr "De"
3773+
3774+ #: ../en/index.html
3775+ msgid "Preferences"
3776+@@ -470,15 +470,15 @@
3777+
3778+ #: ../en/index.html
3779+ msgid "Fri 26 Oct, 2001"
3780+-msgstr ""
3781++msgstr "Ven 26-a de oktobro 2001"
3782+
3783+ #: ../en/index.html
3784+ msgid "Hibernate"
3785+-msgstr ""
3786++msgstr "Pasivumigi"
3787+
3788+ #: ../en/index.html
3789+ msgid "Your Ubuntu, your way"
3790+-msgstr ""
3791++msgstr "Via Ubuntu, via maniero"
3792+
3793+ #: ../en/index.html
3794+ msgid "2. Select Ubuntu One from the menu."
3795+@@ -486,7 +486,7 @@
3796+
3797+ #: ../en/index.html
3798+ msgid "Set Up Mail…"
3799+-msgstr ""
3800++msgstr "Agordi retpoŝton..."
3801+
3802+ #: ../en/index.html
3803+ msgid "Turn Off Bluetooth"
3804+@@ -494,7 +494,7 @@
3805+
3806+ #: ../en/index.html
3807+ msgid "$19.99"
3808+-msgstr ""
3809++msgstr "19.99 $"
3810+
3811+ #: ../en/index.html
3812+ msgid "1. Click the LibreOffice Writer icon in the Launcher."
3813+@@ -506,7 +506,7 @@
3814+
3815+ #: ../en/index.html
3816+ msgid "LibreOffice Impress"
3817+-msgstr ""
3818++msgstr "LibreOffice Prezentilo"
3819+
3820+ #: ../en/index.html
3821+ msgid "Videos"
3822+@@ -518,7 +518,7 @@
3823+
3824+ #: ../en/index.html
3825+ msgid "Unread:"
3826+-msgstr ""
3827++msgstr "Nelegita:"
3828+
3829+ #: ../en/index.html
3830+ msgid "Write: (no subject)"
3831+@@ -538,7 +538,7 @@
3832+
3833+ #: ../en/index.html
3834+ msgid "Recent Apps"
3835+-msgstr ""
3836++msgstr "Lasttempaj aplikaĵoj"
3837+
3838+ #: ../en/index.html
3839+ msgid "Sending email"
3840+@@ -612,7 +612,7 @@
3841+
3842+ #: ../en/index.html
3843+ msgid "Manipulate the flow of time to solve puzzles"
3844+-msgstr ""
3845++msgstr "Manipuli la fluon de la tempo por solvi puzlojn"
3846+
3847+ #: ../en/index.html
3848+ msgid "Backup"
3849+@@ -636,7 +636,7 @@
3850+
3851+ #: ../en/index.html
3852+ msgid "Cancel"
3853+-msgstr "Rezigni"
3854++msgstr "Nuligi"
3855+
3856+ #: ../en/index.html
3857+ msgid "4. There you have it. The application is installed on your computer."
3858+@@ -680,7 +680,7 @@
3859+
3860+ #: ../en/index.html
3861+ msgid "Dash home"
3862+-msgstr ""
3863++msgstr "Daŝhejmo"
3864+
3865+ #: ../en/index.html
3866+ msgid "Albums"
3867+@@ -696,11 +696,11 @@
3868+
3869+ #: ../en/index.html
3870+ msgid "Remote Desktop Viewer"
3871+-msgstr ""
3872++msgstr "Fora labortablovidilo"
3873+
3874+ #: ../en/index.html
3875+ msgid "Create presentations"
3876+-msgstr ""
3877++msgstr "Krei prezentaĵojn"
3878+
3879+ #: ../en/index.html
3880+ msgid "Installing"
3881+@@ -732,7 +732,7 @@
3882+
3883+ #: ../en/index.html
3884+ msgid "Firefox Web Browser"
3885+-msgstr ""
3886++msgstr "Retumilo Firefox"
3887+
3888+ #: ../en/index.html
3889+ msgid "2. Click the Write button."
3890+@@ -760,11 +760,11 @@
3891+
3892+ #: ../en/index.html
3893+ msgid "(91 Ratings)"
3894+-msgstr ""
3895++msgstr "(91 pritaksoj)"
3896+
3897+ #: ../en/index.html
3898+ msgid "This package contains the Chromium browser"
3899+-msgstr ""
3900++msgstr "Ĉi tiu pakaĵo enhavas la retumilon Kromiumon"
3901+
3902+ #: ../en/index.html
3903+ msgid "Help"
3904+@@ -772,7 +772,7 @@
3905+
3906+ #: ../en/index.html
3907+ msgid "Mute"
3908+-msgstr "Muta"
3909++msgstr "Silentigi"
3910+
3911+ #: ../en/index.html
3912+ msgid "All Software"
3913+@@ -784,7 +784,7 @@
3914+
3915+ #: ../en/index.html
3916+ msgid "Bluetooth"
3917+-msgstr ""
3918++msgstr "Bludento"
3919+
3920+ #: ../en/index.html
3921+ msgid "Education"
3922+@@ -796,7 +796,7 @@
3923+
3924+ #: ../en/index.html
3925+ msgid "Shotwell"
3926+-msgstr ""
3927++msgstr "Shotwell"
3928+
3929+ #: ../en/index.html
3930+ msgid "3. Congratulations! You're browsing the web."
3931+@@ -827,7 +827,7 @@
3932+
3933+ #: ../en/index.html
3934+ msgid "Sent"
3935+-msgstr "Sendita"
3936++msgstr "Sendi"
3937+
3938+ #: ../en/index.html
3939+ msgid "subject"
3940+@@ -835,7 +835,7 @@
3941+
3942+ #: ../en/index.html
3943+ msgid "Time &amp; Date Settings…"
3944+-msgstr ""
3945++msgstr "Agordoj de tempo kaj dato..."
3946+
3947+ #: ../en/index.html
3948+ msgid "1. Click the LibreOffice Calc icon in the Launcher."
3949+@@ -867,7 +867,7 @@
3950+
3951+ #: ../en/index.html
3952+ msgid "Dybbølsbro Station"
3953+-msgstr ""
3954++msgstr "Stacio Dybbølsbro"
3955+
3956+ #: ../en/index.html
3957+ msgid "Log Out…"
3958+@@ -924,11 +924,11 @@
3959+
3960+ #: ../en/index.html
3961+ msgid "Developer Tools"
3962+-msgstr ""
3963++msgstr "Programistaj iloj"
3964+
3965+ #: ../en/index.html
3966+ msgid "Inkscape"
3967+-msgstr ""
3968++msgstr "Inkskajpo"
3969+
3970+ #: ../en/index.html
3971+ msgid "cc"
3972+@@ -936,7 +936,7 @@
3973+
3974+ #: ../en/index.html
3975+ msgid "Gwibber Social Client"
3976+-msgstr ""
3977++msgstr "Socia kliento Gvibero"
3978+
3979+ #: ../en/index.html
3980+ msgid "Size:"
3981+@@ -1069,7 +1069,7 @@
3982+
3983+ #: ../en/index.html
3984+ msgid "Langelinie Alle"
3985+-msgstr ""
3986++msgstr "Langelinie ALLE"
3987+
3988+ #: ../en/index.html
3989+ msgid "Browse the internet"
3990+@@ -1077,7 +1077,7 @@
3991+
3992+ #: ../en/index.html
3993+ msgid "Terminal Server Client"
3994+-msgstr ""
3995++msgstr "Kliento de terminalservilo"
3996+
3997+ #: ../en/index.html
3998+ msgid "2. Select the View Photos icon."
3999+@@ -1089,7 +1089,7 @@
4000+
4001+ #: ../en/index.html
4002+ msgid "Clear"
4003+-msgstr ""
4004++msgstr "Vakigi"
4005+
4006+ #: ../en/index.html
4007+ msgid "Listen to music"
4008+@@ -1165,12 +1165,11 @@
4009+ #: ../en/index.html
4010+ msgid ""
4011+ "Are you sure you want to close all programs and shutdown the computer?"
4012+-msgstr ""
4013+-"Ĉu vi certas, ke vi volas fermi ĉiujn programojn kaj elŝalti la komputilon?"
4014++msgstr "Ĉu vi certe volas fermi ĉiujn programojn kaj elŝalti la komputilon?"
4015+
4016+ #: ../en/index.html
4017+ msgid "Ubuntu One"
4018+-msgstr ""
4019++msgstr "Ubuntu Unu"
4020+
4021+ #: ../en/index.html
4022+ msgid "Download Ubuntu"
4023+@@ -1190,7 +1189,7 @@
4024+
4025+ #: ../en/index.html
4026+ msgid "On"
4027+-msgstr "Ŝaltita"
4028++msgstr "Enŝaltita"
4029+
4030+ #: ../en/index.html
4031+ msgid "Top Rated"
4032+@@ -1210,7 +1209,7 @@
4033+
4034+ #: ../en/index.html
4035+ msgid "Send files to device…"
4036+-msgstr "Sendi dosierojn al aparato"
4037++msgstr "Sendi dosierojn al aparato..."
4038+
4039+ #: ../en/index.html
4040+ msgid "2. Select your application to get more details about it."
4041+@@ -1218,19 +1217,19 @@
4042+
4043+ #: ../en/index.html
4044+ msgid "Create spreadsheets"
4045+-msgstr ""
4046++msgstr "Krei kalkultabelojn"
4047+
4048+ #: ../en/index.html
4049+ msgid "Rhythmbox"
4050+-msgstr ""
4051++msgstr "Rhythmbox"
4052+
4053+ #: ../en/index.html
4054+ msgid "Documents"
4055+-msgstr "Dokumentoj"
4056++msgstr "Dokumentujo"
4057+
4058+ #: ../en/index.html
4059+ msgid "Come and explore our favourites"
4060+-msgstr ""
4061++msgstr "Malkovru niajn favoraĵojn"
4062+
4063+ #: ../en/index.html
4064+ msgid "System"
4065+@@ -1238,11 +1237,11 @@
4066+
4067+ #: ../en/index.html
4068+ msgid "Inkscape Vector Graphics Editor"
4069+-msgstr ""
4070++msgstr "Vektorgrafika desegnilo Inkscapo"
4071+
4072+ #: ../en/index.html
4073+ msgid "Original Message"
4074+-msgstr ""
4075++msgstr "Originala mesaĝo"
4076+
4077+ #: ../en/index.html
4078+ msgid "Rock Out"
4079+@@ -1258,7 +1257,7 @@
4080+
4081+ #: ../en/index.html
4082+ msgid "All Folders"
4083+-msgstr ""
4084++msgstr "Ĉiuj dosierujoj"
4085+
4086+ #: ../en/index.html
4087+ msgid "Downloads"
4088+@@ -1266,7 +1265,7 @@
4089+
4090+ #: ../en/index.html
4091+ msgid "PiTiVi Video Editor"
4092+-msgstr ""
4093++msgstr "Videoredaktilo PiTiVi"
4094+
4095+ #: ../en/index.html
4096+ msgid "1. Click the Ubuntu Software Centre icon."
4097+@@ -1285,10 +1284,12 @@
4098+ "Other extensions use ruby, libxml-xql-perl, python-numpy, and python-lxml. "
4099+ "You must have these packages to make full use of all extensions and effects."
4100+ msgstr ""
4101++"Aliaj etendaĵoj uzas ruby, libxml-xql-perl, python-numpy kaj python-lxml. Vi "
4102++"devas havi ĉi tiujn pakaĵojn por tute uzi ĉi tiujn etendaĵojn kaj efektojn."
4103+
4104+ #: ../en/index.html
4105+ msgid "Fwd"
4106+-msgstr ""
4107++msgstr "Pls"
4108+
4109+ #: ../en/index.html
4110+ msgid "Buck Off"
4111+@@ -1304,7 +1305,7 @@
4112+
4113+ #: ../en/index.html
4114+ msgid "15.2KB"
4115+-msgstr ""
4116++msgstr "15.2KB"
4117+
4118+ #: ../en/index.html
4119+ msgid ""
4120+@@ -1314,7 +1315,7 @@
4121+
4122+ #: ../en/index.html
4123+ msgid "Learn More"
4124+-msgstr "Lerni pli"
4125++msgstr "Lernu pli"
4126+
4127+ #: ../en/index.html
4128+ msgid ""
4129+@@ -1345,7 +1346,7 @@
4130+
4131+ #: ../en/index.html
4132+ msgid "Weds 14 October, 2010"
4133+-msgstr ""
4134++msgstr "Mer 14-a de oktobro 2010"
4135+
4136+ #: ../en/index.html
4137+ msgid ""
4138+@@ -1359,7 +1360,7 @@
4139+
4140+ #: ../en/index.html
4141+ msgid "Banshee Media Player"
4142+-msgstr ""
4143++msgstr "Plurmedia ludilo Banŝio"
4144+
4145+ #: ../en/index.html
4146+ msgid ""
4147+@@ -1459,7 +1460,7 @@
4148+
4149+ #: ../en/index.html
4150+ msgid "Lock Screen"
4151+-msgstr "Ŝloŝi la ekranon"
4152++msgstr "Ŝlosi ekranon"
4153+
4154+ #: ../en/index.html
4155+ msgid "Launch the photo manager"
4156+@@ -1495,7 +1496,7 @@
4157+
4158+ #: ../en/index.html
4159+ msgid "Access the Internet"
4160+-msgstr ""
4161++msgstr "Akiri interreton"
4162+
4163+ #: ../en/index.html
4164+ msgid "Audio"
4165+@@ -1540,3 +1541,29 @@
4166+
4167+ #~ msgid "Check email"
4168+ #~ msgstr "Kontroli retpoŝton"
4169++
4170++#~ msgid "Show yourself around"
4171++#~ msgstr "Vi mem eksplori"
4172++
4173++#~ msgid "Surf the web"
4174++#~ msgstr "Retumi"
4175++
4176++#~ msgid "Ready to download?"
4177++#~ msgstr "Ĉu preta por elŝuti"
4178++
4179++#~ msgid "Browse files"
4180++#~ msgstr "Foliumi dosierojn"
4181++
4182++#~ msgid "Read, write and send emails with Thunderbird. It’s easy and fast."
4183++#~ msgstr ""
4184++#~ "Legi, skribi kaj sendi retmesaĝojn per Thunderbird. Ĝi estas sekura kaj "
4185++#~ "rapida."
4186++
4187++#~ msgid "We hope you've enjoyed the Ubuntu online tour."
4188++#~ msgstr "Ni esperas, ke vi ĝuis la enkondukan traviziton de Ubuntu."
4189++
4190++#~ msgid "Search and download apps fast from the Ubuntu Software Centre."
4191++#~ msgstr "Serĉi kaj elŝuti aplikaĵojn rapide per la Ubuntu-programarejo."
4192++
4193++#~ msgid "Take the guided tour"
4194++#~ msgstr "Iri al la gvidata travizito"
4195+
4196+=== modified file 'po-html/es.po'
4197+--- old/po-html/es.po 2012-05-10 06:03:16 +0000
4198++++ new/po-html/es.po 2012-10-08 13:23:36 +0000
4199+@@ -8,14 +8,14 @@
4200+ "Project-Id-Version: ubuntu-online-tour\n"
4201+ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4202+ "POT-Creation-Date: 2012-05-09 08:37+0000\n"
4203+-"PO-Revision-Date: 2012-04-30 00:57+0000\n"
4204+-"Last-Translator: Fitoschido <fitoschido@gmail.com>\n"
4205++"PO-Revision-Date: 2012-09-11 15:34+0000\n"
4206++"Last-Translator: Nacho Perea <granadayjose@gmail.com>\n"
4207+ "Language-Team: Spanish <es@li.org>\n"
4208+ "MIME-Version: 1.0\n"
4209+ "Content-Type: text/plain; charset=UTF-8\n"
4210+ "Content-Transfer-Encoding: 8bit\n"
4211+-"X-Launchpad-Export-Date: 2012-05-10 06:03+0000\n"
4212+-"X-Generator: Launchpad (build 15213)\n"
4213++"X-Launchpad-Export-Date: 2012-09-12 04:55+0000\n"
4214++"X-Generator: Launchpad (build 15930)\n"
4215+
4216+ #: ../en/index.html
4217+ msgid "2. Switch to the Music Lens."
4218+@@ -238,7 +238,7 @@
4219+
4220+ #: ../en/index.html
4221+ msgid "Fonts"
4222+-msgstr "Tipografías"
4223++msgstr "Tipografías"
4224+
4225+ #: ../en/index.html
4226+ msgid "I already have an account!"
4227+@@ -384,6 +384,9 @@
4228+ "Galaxy. Traverse a foreign star system with the BEEP-ship and send robots to "
4229+ "the surface of the planets."
4230+ msgstr ""
4231++"BEEP ha viajado por miles de años a través de espacio exterior para explorar "
4232++"la Galaxia. Atraviece un sistema estelar exterior con la nave BEEP y envíe "
4233++"robots a la superficie de los planetas."
4234+
4235+ #: ../en/index.html
4236+ msgid "Untitled 1 - LibreOffice Impress"
4237+@@ -419,7 +422,7 @@
4238+
4239+ #: ../en/index.html
4240+ msgid "Physics based puzzle/construction game"
4241+-msgstr ""
4242++msgstr "Juego de construcción/rompecabezas basado en la física"
4243+
4244+ #: ../en/index.html
4245+ msgid "Auto eth0"
4246+@@ -885,6 +888,11 @@
4247+ "translated into 38 languages, Ubuntu also includes essential assistive "
4248+ "technologies, which are, of course, completely free."
4249+ msgstr ""
4250++"La accesibilidad es central en la filosofia de Ubuntu. Creemos que la "
4251++"computación es para todos, sin importar la nacionalidad, la raza, el género "
4252++"o las discapacidades. Completamente traducido en 38 idiomas, Ubuntu también "
4253++"incluye tecnologías de asistencia esenciales, que son, por supuesto, "
4254++"completamente gratuitas."
4255+
4256+ #: ../en/index.html
4257+ msgid "Dybbølsbro Station"
4258+@@ -899,7 +907,7 @@
4259+ "Your entire collection follows you around with music streaming to Android "
4260+ "and iPhone"
4261+ msgstr ""
4262+-"Su colección entera le acompaña con el streaming de música para Android y "
4263++"Su colección entera le acompaña con el streaming de música en Android y "
4264+ "iPhone"
4265+
4266+ #: ../en/index.html
4267+@@ -910,7 +918,7 @@
4268+
4269+ #: ../en/index.html
4270+ msgid "Mount Snowdon"
4271+-msgstr ""
4272++msgstr "Monte Snowdon"
4273+
4274+ #: ../en/index.html
4275+ msgid "Songs"
4276+@@ -982,10 +990,12 @@
4277+ "If you want to use the spellchecker, you have to install aspell and the "
4278+ "respective language-pack, e.g. aspell-en or aspell-de."
4279+ msgstr ""
4280++"Si desea utilizar el corrector de ortografía, tendrá que instalar aspell y "
4281++"los respectivos paquetes de idioma, por ejemplo aspell-es o aspell-ca."
4282+
4283+ #: ../en/index.html
4284+ msgid "Sand Maze"
4285+-msgstr "Sand Maze"
4286++msgstr "Laberinto de arena"
4287+
4288+ #: ../en/index.html
4289+ msgid "1. Click the Audio Indicator."
4290+@@ -1015,12 +1025,13 @@
4291+ "leave you staring at the screen, waiting to get online. And Ubuntu won’t "
4292+ "grow sluggish over time. It’s fast. And it stays fast."
4293+ msgstr ""
4294+-"Ubuntu se carga rápido en cualquier equipo, pero es súper rápido en las "
4295+-"máquinas más nuevas. El arranque y la apertura del navegador toma segundos "
4296+-"al carecer de programas innecesarios y software de prueba lento. A "
4297+-"diferencia de otros sistemas operativos que le dejan mirando la pantalla, "
4298+-"esperando a conectarse. Y Ubuntu no se vuelve lento al transcurrir el "
4299+-"tiempo. Es rápido. Y se mantiene rápido."
4300++"Ubuntu carga rápidamente en cualquier equipo, especialmente en los más "
4301++"nuevos. No hace uso de programas innecesarios ni software de prueba que "
4302++"ralenticen su funcionamiento, por lo que puede arrancarse y abrir el "
4303++"navegador en cuestión de segundos a diferencia de otros sistemas operativos "
4304++"que obligan al usuario a esperar frente a la pantalla para conectarse. "
4305++"Además, Ubuntu no funcionará más lento con el paso del tiempo: es rápido y "
4306++"continuará siéndolo."
4307+
4308+ #: ../en/index.html
4309+ msgid "Items:"
4310+@@ -1044,6 +1055,9 @@
4311+ "Some of the import and export features are provided using the packages dia, "
4312+ "libwmf-bin, pstoedit, skencil, imagemagick, and perlmagick."
4313+ msgstr ""
4314++"Algunas de las características de importación y exportación se proporcionan "
4315++"usando los paquetes dia, libwmf-bin, pstoedit, skencil, imagemagick y "
4316++"perlmagick."
4317+
4318+ #: ../en/index.html
4319+ msgid "Themes &amp; Tweaks"
4320+@@ -1094,11 +1108,11 @@
4321+
4322+ #: ../en/index.html
4323+ msgid "App Available for Download"
4324+-msgstr ""
4325++msgstr "Aplicación disponible para descargar"
4326+
4327+ #: ../en/index.html
4328+ msgid "Langelinie Alle"
4329+-msgstr ""
4330++msgstr "Langelinie Alle"
4331+
4332+ #: ../en/index.html
4333+ msgid "Browse the internet"
4334+@@ -1332,7 +1346,7 @@
4335+
4336+ #: ../en/index.html
4337+ msgid "Fwd"
4338+-msgstr ""
4339++msgstr "Rem"
4340+
4341+ #: ../en/index.html
4342+ msgid "Buck Off"
4343+@@ -1388,7 +1402,7 @@
4344+
4345+ #: ../en/index.html
4346+ msgid "World of Goo"
4347+-msgstr "World of Goo"
4348++msgstr "El mundo de Goo"
4349+
4350+ #: ../en/index.html
4351+ msgid "Weds 14 October, 2010"
4352+
4353+=== modified file 'po-html/fi.po'
4354+--- old/po-html/fi.po 2012-05-11 06:08:40 +0000
4355++++ new/po-html/fi.po 2012-10-08 13:23:36 +0000
4356+@@ -14,8 +14,8 @@
4357+ "MIME-Version: 1.0\n"
4358+ "Content-Type: text/plain; charset=UTF-8\n"
4359+ "Content-Transfer-Encoding: 8bit\n"
4360+-"X-Launchpad-Export-Date: 2012-05-11 06:08+0000\n"
4361+-"X-Generator: Launchpad (build 15225)\n"
4362++"X-Launchpad-Export-Date: 2012-08-09 05:26+0000\n"
4363++"X-Generator: Launchpad (build 15761)\n"
4364+
4365+ #: ../en/index.html
4366+ msgid "2. Switch to the Music Lens."
4367+@@ -388,6 +388,9 @@
4368+ "Galaxy. Traverse a foreign star system with the BEEP-ship and send robots to "
4369+ "the surface of the planets."
4370+ msgstr ""
4371++"BEEP on matkustanut avaruudessa jo tuhansien vuosien ajan kartoittaen "
4372++"galaksia. Matkaa halki tuntemattomien aurinkokuntien BEEP-aluksella ja "
4373++"kartoita uusia planeettoja tutkimalla näitä robottien avulla."
4374+
4375+ #: ../en/index.html
4376+ msgid "Untitled 1 - LibreOffice Impress"
4377+@@ -406,6 +409,8 @@
4378+ #: ../en/index.html
4379+ msgid "A 2D platformer/shooter game with physics-based puzzles"
4380+ msgstr ""
4381++"2D-tasohyppely- ja ammuskelupeli fysiikkaan perustuvin pulmatehtävin "
4382++"varustettuna"
4383+
4384+ #: ../en/index.html
4385+ msgid "Keep Connected"
4386+@@ -1107,6 +1112,10 @@
4387+ "gun. Drive, jump, fly, swim and shoot your way through 24 levels scattered "
4388+ "across 6 unique environments."
4389+ msgstr ""
4390++"BEEP on fysiikkapohjanen sivustapäin kuvattu tasohyppely. Aja, hypi, lennä, "
4391++"ui ja ammu pienen robotin tie halki 24:n tason ja kuuden yksilöllisen "
4392++"ympäristön läpi käyttämällä apunasi painovoiman kumoavaa laitetta, joka "
4393++"toimii sekä työkaluna että aseena."
4394+
4395+ #: ../en/index.html
4396+ msgid "You"
4397+@@ -1484,10 +1493,14 @@
4398+ "environments. The anti-gravity device is both a tool and a weapon. Use it to "
4399+ "smash enemy robots, build towers and solve puzzles."
4400+ msgstr ""
4401++"Käytä BEEP:n painovoiman kumoavaa laitetta muokataksesi ympäristöäsi. Muista "
4402++"myös, että laite on sekä ase että työkalu - käytä sitä murskataksesi "
4403++"vihollisesi, rakentaaksesi torneja ja ratkaistaksesi vastaan tulevat "
4404++"pulmatehtävät."
4405+
4406+ #: ../en/index.html
4407+ msgid "Mon 11 October, 2010"
4408+-msgstr ""
4409++msgstr "Maanantai 11. lokakuuta 2010"
4410+
4411+ #: ../en/index.html
4412+ msgid ""
4413+
4414+=== modified file 'po-html/fr.po'
4415+--- old/po-html/fr.po 2012-05-10 06:03:16 +0000
4416++++ new/po-html/fr.po 2012-10-08 13:23:36 +0000
4417+@@ -8,14 +8,14 @@
4418+ "Project-Id-Version: ubuntu-online-tour\n"
4419+ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4420+ "POT-Creation-Date: 2012-05-09 08:37+0000\n"
4421+-"PO-Revision-Date: 2012-03-21 09:30+0000\n"
4422+-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
4423++"PO-Revision-Date: 2012-09-29 13:48+0000\n"
4424++"Last-Translator: Pierre Slamich <pierre.slamich@gmail.com>\n"
4425+ "Language-Team: French <fr@li.org>\n"
4426+ "MIME-Version: 1.0\n"
4427+ "Content-Type: text/plain; charset=UTF-8\n"
4428+ "Content-Transfer-Encoding: 8bit\n"
4429+-"X-Launchpad-Export-Date: 2012-05-10 06:02+0000\n"
4430+-"X-Generator: Launchpad (build 15213)\n"
4431++"X-Launchpad-Export-Date: 2012-09-30 05:09+0000\n"
4432++"X-Generator: Launchpad (build 16049)\n"
4433+
4434+ #: ../en/index.html
4435+ msgid "2. Switch to the Music Lens."
4436+@@ -107,15 +107,15 @@
4437+
4438+ #: ../en/index.html
4439+ msgid "3.3MB"
4440+-msgstr "3.3MB"
4441++msgstr "3,3 Mo"
4442+
4443+ #: ../en/index.html
4444+ msgid "Recently Used"
4445+-msgstr ""
4446++msgstr "Récemment utilisés"
4447+
4448+ #: ../en/index.html
4449+ msgid "Unmute"
4450+-msgstr ""
4451++msgstr "Non muet"
4452+
4453+ #: ../en/index.html
4454+ msgid "4. Enter the subject of your email."
4455+@@ -156,10 +156,12 @@
4456+ #: ../en/index.html
4457+ msgid "Backup and access your files from Ubuntu, Windows, Web or Mobile"
4458+ msgstr ""
4459++"Sauvegardez et accédez à vos fichiers depuis Ubuntu, Windows, le web ou un "
4460++"téléphone portable."
4461+
4462+ #: ../en/index.html
4463+ msgid "Setup new device…"
4464+-msgstr ""
4465++msgstr "Installer un nouveau périphérique..."
4466+
4467+ #: ../en/index.html
4468+ msgid ""
4469+@@ -179,7 +181,7 @@
4470+
4471+ #: ../en/index.html
4472+ msgid "Files &amp; Folders"
4473+-msgstr ""
4474++msgstr "Fichiers &amp; Dossiers"
4475+
4476+ #: ../en/index.html
4477+ msgid ""
4478+@@ -195,7 +197,7 @@
4479+
4480+ #: ../en/index.html
4481+ msgid "2. You can create professional presentations."
4482+-msgstr ""
4483++msgstr "2. Vous pouvez créer des présentations professionnelles."
4484+
4485+ #: ../en/index.html
4486+ msgid "Thunderbird Mail/News"
4487+@@ -203,7 +205,7 @@
4488+
4489+ #: ../en/index.html
4490+ msgid "Displays…"
4491+-msgstr ""
4492++msgstr "Affichage…"
4493+
4494+ #: ../en/index.html
4495+ msgid "from"
4496+@@ -234,11 +236,11 @@
4497+
4498+ #: ../en/index.html
4499+ msgid "Set Up Broadcast Account…"
4500+-msgstr ""
4501++msgstr "Configurer le microblogage…"
4502+
4503+ #: ../en/index.html
4504+ msgid "Fonts"
4505+-msgstr ""
4506++msgstr "Polices de caractères"
4507+
4508+ #: ../en/index.html
4509+ msgid "I already have an account!"
4510+@@ -246,15 +248,15 @@
4511+
4512+ #: ../en/index.html
4513+ msgid "Ubuntu tour"
4514+-msgstr ""
4515++msgstr "Visite Guidée Ubuntu"
4516+
4517+ #: ../en/index.html
4518+ msgid "Not Alone"
4519+-msgstr ""
4520++msgstr "Not Alone"
4521+
4522+ #: ../en/index.html
4523+ msgid "Library"
4524+-msgstr ""
4525++msgstr "Bibliothèque"
4526+
4527+ #: ../en/index.html
4528+ msgid "System Settings…"
4529+@@ -265,6 +267,9 @@
4530+ "All gameplay is based on time manipulation. Journey into worlds where time "
4531+ "behaves strangely; observe, learn from, and then master these worlds."
4532+ msgstr ""
4533++"Tout la mécanique de jeu est basée sur la manipulation du temps. Voyagez "
4534++"dans des mondes où le temps se comporte étrangement, observez, apprenez puis "
4535++"maîtrisez ces mondes."
4536+
4537+ #: ../en/index.html
4538+ msgid ""
4539+@@ -284,7 +289,7 @@
4540+
4541+ #: ../en/index.html
4542+ msgid "Jardin Polar"
4543+-msgstr ""
4544++msgstr "Jardin polaire"
4545+
4546+ #: ../en/index.html
4547+ msgid "Shotwell Photo Manager"
4548+@@ -292,11 +297,11 @@
4549+
4550+ #: ../en/index.html
4551+ msgid "Folders"
4552+-msgstr ""
4553++msgstr "Dossiers"
4554+
4555+ #: ../en/index.html
4556+ msgid "2. You can create spreadsheets and charts."
4557+-msgstr ""
4558++msgstr "2. Vous pouvez créer des feuilles de calcul et des graphiques."
4559+
4560+ #: ../en/index.html
4561+ msgid "Format"
4562+@@ -308,23 +313,23 @@
4563+
4564+ #: ../en/index.html
4565+ msgid "1"
4566+-msgstr ""
4567++msgstr "1"
4568+
4569+ #: ../en/index.html
4570+ msgid "Create and edit Scalable Vector Graphics images"
4571+-msgstr ""
4572++msgstr "Créer et éditer des images vectorielles au format SVG"
4573+
4574+ #: ../en/index.html
4575+ msgid "Movie Player"
4576+-msgstr ""
4577++msgstr "Lecteur vidéo"
4578+
4579+ #: ../en/index.html
4580+ msgid "Shut Down…"
4581+-msgstr ""
4582++msgstr "Éteindre…"
4583+
4584+ #: ../en/index.html
4585+ msgid "Bluetooth On"
4586+-msgstr ""
4587++msgstr "Bluetooth : actif"
4588+
4589+ #: ../en/index.html
4590+ msgid ""
4591+@@ -354,7 +359,7 @@
4592+
4593+ #: ../en/index.html
4594+ msgid "File"
4595+-msgstr ""
4596++msgstr "Fichier"
4597+
4598+ #: ../en/index.html
4599+ msgid "Blender"
4600+@@ -362,7 +367,7 @@
4601+
4602+ #: ../en/index.html
4603+ msgid "5.3MB"
4604+-msgstr ""
4605++msgstr "5.3MB"
4606+
4607+ #: ../en/index.html
4608+ msgid "Customize desktop"
4609+@@ -399,6 +404,8 @@
4610+ #: ../en/index.html
4611+ msgid "2. You can create documents like letters and reports, for example."
4612+ msgstr ""
4613++"2. Vous pouvez créer des documents tels que des lettres et des rapports, par "
4614++"exemple."
4615+
4616+ #: ../en/index.html
4617+ msgid "A 2D platformer/shooter game with physics-based puzzles"
4618+@@ -435,7 +442,7 @@
4619+
4620+ #: ../en/index.html
4621+ msgid "$9.99"
4622+-msgstr "9.99€"
4623++msgstr "9,99 €"
4624+
4625+ #: ../en/index.html
4626+ msgid "Accessories"
4627+@@ -467,29 +474,31 @@
4628+
4629+ #: ../en/index.html
4630+ msgid "Clock"
4631+-msgstr ""
4632++msgstr "Horloge"
4633+
4634+ #: ../en/index.html
4635+ msgid "Sound Settings…"
4636+-msgstr ""
4637++msgstr "Réglages du son..."
4638+
4639+ #: ../en/index.html
4640+ msgid ""
4641+ "Chromium is an open-source browser project that aims to build a safer, "
4642+ "faster, and more stable way for all Internet users to experience the web."
4643+ msgstr ""
4644++"Chromium est un projet de navigateur libre qui vise à être plus sûr, plus "
4645++"rapide et plus stable pour les utilisateurs d'Internet."
4646+
4647+ #: ../en/index.html
4648+ msgid "Fri 26 Oct, 2001"
4649+-msgstr "Ven 26 Oct 2001"
4650++msgstr "Ven. 26 oct. 2001"
4651+
4652+ #: ../en/index.html
4653+ msgid "Hibernate"
4654+-msgstr ""
4655++msgstr "Hibernation"
4656+
4657+ #: ../en/index.html
4658+ msgid "Your Ubuntu, your way"
4659+-msgstr ""
4660++msgstr "Votre Ubuntu, votre style"
4661+
4662+ #: ../en/index.html
4663+ msgid "2. Select Ubuntu One from the menu."
4664+@@ -497,11 +506,11 @@
4665+
4666+ #: ../en/index.html
4667+ msgid "Set Up Mail…"
4668+-msgstr ""
4669++msgstr "Configurer le courriel…"
4670+
4671+ #: ../en/index.html
4672+ msgid "Turn Off Bluetooth"
4673+-msgstr ""
4674++msgstr "Désactiver le Bluetooth"
4675+
4676+ #: ../en/index.html
4677+ msgid "$19.99"
4678+@@ -513,7 +522,7 @@
4679+
4680+ #: ../en/index.html
4681+ msgid "Which feature would you like to learn?"
4682+-msgstr ""
4683++msgstr "Quels fonctionnalité souhaitez-vous découvrir ?"
4684+
4685+ #: ../en/index.html
4686+ msgid "LibreOffice Impress"
4687+@@ -525,11 +534,11 @@
4688+
4689+ #: ../en/index.html
4690+ msgid "3. Click on the music file."
4691+-msgstr ""
4692++msgstr "3. Cliquez sur le fichier de musique."
4693+
4694+ #: ../en/index.html
4695+ msgid "Unread:"
4696+-msgstr ""
4697++msgstr "Non lu:"
4698+
4699+ #: ../en/index.html
4700+ msgid "Write: (no subject)"
4701+@@ -537,7 +546,7 @@
4702+
4703+ #: ../en/index.html
4704+ msgid "Installed"
4705+-msgstr ""
4706++msgstr "Installé"
4707+
4708+ #: ../en/index.html
4709+ msgid "Visible"
4710+@@ -553,7 +562,7 @@
4711+
4712+ #: ../en/index.html
4713+ msgid "Sending email"
4714+-msgstr ""
4715++msgstr "Envoyer des courriels"
4716+
4717+ #: ../en/index.html
4718+ msgid ""
4719+@@ -574,10 +583,12 @@
4720+ "9. Here you can adjust time and date settings, or add other locations to "
4721+ "your world clock."
4722+ msgstr ""
4723++"9. Ici, vous pouvez régler l'heure et la date, ou ajouter d'autres "
4724++"emplacements à votre horloge mondiale."
4725+
4726+ #: ../en/index.html
4727+ msgid "Software Up to Date"
4728+-msgstr ""
4729++msgstr "Logiciel à jour"
4730+
4731+ #: ../en/index.html
4732+ msgid "Local"
4733+@@ -585,19 +596,19 @@
4734+
4735+ #: ../en/index.html
4736+ msgid "Files and Folders"
4737+-msgstr ""
4738++msgstr "Fichiers et Dossiers"
4739+
4740+ #: ../en/index.html
4741+ msgid "Ubuntu One Control Panel"
4742+-msgstr ""
4743++msgstr "Centre de controle d'Ubuntu One"
4744+
4745+ #: ../en/index.html
4746+ msgid "4. Double-click on the video you wish to play."
4747+-msgstr ""
4748++msgstr "4. Double-cliquez sur la vidéo que vous souhaitez lire."
4749+
4750+ #: ../en/index.html
4751+ msgid "Your browser does not support iframes."
4752+-msgstr ""
4753++msgstr "Votre navigateur ne prend pas en charge iframes."
4754+
4755+ #: ../en/index.html
4756+ msgid "Date"
4757+@@ -605,7 +616,7 @@
4758+
4759+ #: ../en/index.html
4760+ msgid "New applications"
4761+-msgstr ""
4762++msgstr "Nouvelles applications"
4763+
4764+ #: ../en/index.html
4765+ msgid "Not Junk"
4766+@@ -613,7 +624,7 @@
4767+
4768+ #: ../en/index.html
4769+ msgid "Search"
4770+-msgstr ""
4771++msgstr "Rechercher"
4772+
4773+ #: ../en/index.html
4774+ msgid "Ubuntu Software Centre"
4775+@@ -621,7 +632,7 @@
4776+
4777+ #: ../en/index.html
4778+ msgid "Untitled 1 - LibreOffice Calc"
4779+-msgstr ""
4780++msgstr "Sans nom 1 - LibreOffice Calc"
4781+
4782+ #: ../en/index.html
4783+ msgid "Install"
4784+@@ -637,7 +648,7 @@
4785+
4786+ #: ../en/index.html
4787+ msgid "History"
4788+-msgstr "Hstorique"
4789++msgstr "Historique"
4790+
4791+ #: ../en/index.html
4792+ msgid "Home Folder"
4793+@@ -645,7 +656,7 @@
4794+
4795+ #: ../en/index.html
4796+ msgid "2. Here, you can adjust volume settings."
4797+-msgstr ""
4798++msgstr "2. Ici, vous pouvez ajuster les réglages de volume sonore."
4799+
4800+ #: ../en/index.html
4801+ msgid "Purple Dancers"
4802+@@ -653,15 +664,16 @@
4803+
4804+ #: ../en/index.html
4805+ msgid "Cancel"
4806+-msgstr ""
4807++msgstr "Annuler"
4808+
4809+ #: ../en/index.html
4810+ msgid "4. There you have it. The application is installed on your computer."
4811+ msgstr ""
4812++"4. Le tour est joué. L'application est installée sur votre ordinateur."
4813+
4814+ #: ../en/index.html
4815+ msgid "Untitled 1 - LibreOffice Writer"
4816+-msgstr ""
4817++msgstr "Sans nom 1 - LibreOffice Writer"
4818+
4819+ #: ../en/index.html
4820+ msgid "Small Flowers"
4821+@@ -677,7 +689,7 @@
4822+
4823+ #: ../en/index.html
4824+ msgid "Trash"
4825+-msgstr ""
4826++msgstr "Corbeille"
4827+
4828+ #: ../en/index.html
4829+ msgid "1. Click the Ubuntu Dash icon."
4830+@@ -701,15 +713,15 @@
4831+
4832+ #: ../en/index.html
4833+ msgid "Albums"
4834+-msgstr ""
4835++msgstr "Albums"
4836+
4837+ #: ../en/index.html
4838+ msgid "LibreOffice Writer"
4839+-msgstr ""
4840++msgstr "LibreOffice Writer"
4841+
4842+ #: ../en/index.html
4843+ msgid "Create a word document"
4844+-msgstr ""
4845++msgstr "Créer un document texte"
4846+
4847+ #: ../en/index.html
4848+ msgid "Remote Desktop Viewer"
4849+@@ -721,15 +733,15 @@
4850+
4851+ #: ../en/index.html
4852+ msgid "Installing"
4853+-msgstr ""
4854++msgstr "Installation en cours"
4855+
4856+ #: ../en/index.html
4857+ msgid "Games"
4858+-msgstr ""
4859++msgstr "Jeux"
4860+
4861+ #: ../en/index.html
4862+ msgid "Attached Devices"
4863+-msgstr ""
4864++msgstr "Périphériques connectés"
4865+
4866+ #: ../en/index.html
4867+ msgid "Sound Recorder"
4868+@@ -737,7 +749,7 @@
4869+
4870+ #: ../en/index.html
4871+ msgid "The Power of Your Personal Cloud"
4872+-msgstr ""
4873++msgstr "Le pouvoir de votre cloud personnel"
4874+
4875+ #: ../en/index.html
4876+ msgid "Create documents"
4877+@@ -757,7 +769,7 @@
4878+
4879+ #: ../en/index.html
4880+ msgid "Free"
4881+-msgstr ""
4882++msgstr "Libre"
4883+
4884+ #: ../en/index.html
4885+ msgid "Join now"
4886+@@ -765,11 +777,13 @@
4887+
4888+ #: ../en/index.html
4889+ msgid "3. Here are your photos."
4890+-msgstr ""
4891++msgstr "3. Voici vos photos."
4892+
4893+ #: ../en/index.html
4894+ msgid "2. Here, you can browse your folders. Double click on Downloads."
4895+ msgstr ""
4896++"2. Ici, vous pouvez parcourir vos dossiers. Double-cliquez sur "
4897++"Téléchargements."
4898+
4899+ #: ../en/index.html
4900+ msgid "6. That's everything filled in. Now just click Send."
4901+@@ -797,7 +811,7 @@
4902+
4903+ #: ../en/index.html
4904+ msgid "Darkening Clockwork"
4905+-msgstr ""
4906++msgstr "Darkening Clockwork"
4907+
4908+ #: ../en/index.html
4909+ msgid "Bluetooth"
4910+@@ -817,7 +831,7 @@
4911+
4912+ #: ../en/index.html
4913+ msgid "3. Congratulations! You're browsing the web."
4914+-msgstr ""
4915++msgstr "3. Félicitations! Vous naviguez sur le Web."
4916+
4917+ #: ../en/index.html
4918+ msgid ""
4919+@@ -826,6 +840,11 @@
4920+ "installation CDs. No fuss. And it’s compatible with Windows too! So you can "
4921+ "open, edit and share Microsoft Office documents stress-free."
4922+ msgstr ""
4923++"Ubuntu fonctionne à merveille avec une large gamme de périphériques. Il vous "
4924++"suffit de brancher votre lecteur mp3, appareil photo ou une imprimante et "
4925++"vous serez opérationnel tout de suite. Aucun CD d'installation. Pas de "
4926++"chichi. Et il est compatible avec Windows aussi! Ainsi, vous pouvez ouvrir, "
4927++"modifier et partager des documents Microsoft Office sans stress."
4928+
4929+ #: ../en/index.html
4930+ msgid "Send"
4931+@@ -841,6 +860,10 @@
4932+ "and with thousands of apps to choose from, Ubuntu gives you a clean and "
4933+ "streamlined experience that you can really make your own."
4934+ msgstr ""
4935++"Profitez de la simplicité de l'interface élégante et intuitive d'Ubuntu. "
4936++"Rapide, sûr et avec des milliers d'applications à choisir, Ubuntu vous donne "
4937++"une expérience cohérente, intégrée et simplifiée que vous pouvez vraiment "
4938++"personnaliser selon vos goûts."
4939+
4940+ #: ../en/index.html
4941+ msgid "Sent"
4942+@@ -848,23 +871,23 @@
4943+
4944+ #: ../en/index.html
4945+ msgid "subject"
4946+-msgstr ""
4947++msgstr "Sujet"
4948+
4949+ #: ../en/index.html
4950+ msgid "Time &amp; Date Settings…"
4951+-msgstr ""
4952++msgstr "Réglages de la date et de l'heure"
4953+
4954+ #: ../en/index.html
4955+ msgid "1. Click the LibreOffice Calc icon in the Launcher."
4956+-msgstr ""
4957++msgstr "1. Cliquez sur l'icône de LibreOffice Calc dans le lanceur."
4958+
4959+ #: ../en/index.html
4960+ msgid "Stalking Ocelot"
4961+-msgstr ""
4962++msgstr "Stalking Ocelot"
4963+
4964+ #: ../en/index.html
4965+ msgid "Unify you contacts across Desktop, Mobile and Web"
4966+-msgstr ""
4967++msgstr "Unifiez vos contacts à travers Bureau, Mobile et Web"
4968+
4969+ #: ../en/index.html
4970+ msgid "Title:"
4971+@@ -872,7 +895,7 @@
4972+
4973+ #: ../en/index.html
4974+ msgid "1. Click the LibreOffice Impress icon in the Launcher."
4975+-msgstr ""
4976++msgstr "1. Cliquez sur l'icône LibreOffice Impress dans le lanceur."
4977+
4978+ #: ../en/index.html
4979+ msgid ""
4980+@@ -889,7 +912,7 @@
4981+
4982+ #: ../en/index.html
4983+ msgid "Dybbølsbro Station"
4984+-msgstr ""
4985++msgstr "Gare de Dybbølsbro"
4986+
4987+ #: ../en/index.html
4988+ msgid "Log Out…"
4989+@@ -900,6 +923,8 @@
4990+ "Your entire collection follows you around with music streaming to Android "
4991+ "and iPhone"
4992+ msgstr ""
4993++"Votre collection complète vous suit partout avec le flux de musique vers "
4994++"Android et iPhone"
4995+
4996+ #: ../en/index.html
4997+ msgid ""
4998+@@ -913,7 +938,7 @@
4999+
5000+ #: ../en/index.html
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches