1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-04-04 15:26+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: src/components/footer.rs:59 src/components/header.rs:180
msgid "Zoom Out"
msgstr ""
#: src/components/footer.rs:82 src/components/header.rs:179
msgid "Zoom In"
msgstr ""
#: src/components/header.rs:57 src/components/header.rs:173
msgid "Use Vertical Layout"
msgstr ""
#: src/components/header.rs:58
msgid "Use Horizontal Layout"
msgstr ""
#: src/components/header.rs:72 src/components/header.rs:169
msgid "Export as Image"
msgstr ""
#: src/components/header.rs:163
msgid "New Map"
msgstr ""
#: src/components/header.rs:164
msgid "New from Template"
msgstr ""
#: src/components/header.rs:165
msgid "Open…"
msgstr ""
#: src/components/header.rs:166 src/dialogs.rs:138
msgid "Save"
msgstr ""
#: src/components/header.rs:167
msgid "Save As…"
msgstr ""
#: src/components/header.rs:168
msgid "Close"
msgstr ""
#: src/components/header.rs:184
msgid "About"
msgstr ""
#: src/components/header.rs:188
msgid "Preferences…"
msgstr ""
#: src/components/preference_pages/editor.rs:73
msgid "Font Size"
msgstr ""
#: src/components/preference_pages/editor.rs:93
msgid "Default"
msgstr ""
#: src/components/preference_pages/editor.rs:107
msgid "Editor Style"
msgstr ""
#: src/components/preference_pages/editor.rs:121
#: src/components/preference_pages/map.rs:84
msgid "Font"
msgstr ""
#: src/components/preference_pages/editor.rs:152
msgid "Soft wrap lines"
msgstr ""
#: src/components/preference_pages/editor.rs:161
#: src/components/preference_pages/map.rs:155
msgid "Use custom font"
msgstr ""
#: src/components/preference_pages/general.rs:40
#: src/components/preferences_window.rs:49
msgid "Preferences"
msgstr ""
#: src/components/preference_pages/general.rs:48
#: src/components/preference_pages/map.rs:104
msgid "Export"
msgstr ""
#: src/components/preference_pages/general.rs:53
msgid "Import"
msgstr ""
#: src/components/preference_pages/general.rs:58
msgid "Reset to defaults"
msgstr ""
#: src/components/preference_pages/general.rs:67
msgid ""
"Export your preferences to share with others or back up your settings.\n"
" Import preferences from a file to restore settings."
msgstr ""
#: src/components/preference_pages/map.rs:71
msgid "Map Style"
msgstr ""
#: src/components/preference_pages/map.rs:115
msgid "Default export format"
msgstr ""
#: src/components/preference_pages/map.rs:118
msgid "PNG (Raster)"
msgstr ""
#: src/components/preference_pages/map.rs:119
msgid "SVG (Vector)"
msgstr ""
#: src/components/preference_pages/map.rs:146
msgid "Show map background"
msgstr ""
#: src/components/preference_pages/map.rs:164
msgid "Use smart label positioning"
msgstr ""
#: src/components/preference_pages/stages.rs:56
msgid "Custom Stages"
msgstr ""
#: src/components/preference_pages/stages.rs:61
msgid "Custom stages allow you to define your own evolution axis label."
msgstr ""
#: src/components/preference_pages/stages.rs:85
msgid "Name"
msgstr ""
#: src/components/preference_pages/stages.rs:91 src/preferences/models.rs:68
#: src/stages.rs:112
msgid "Stage I"
msgstr ""
#: src/components/preference_pages/stages.rs:97 src/preferences/models.rs:69
#: src/stages.rs:145
msgid "Stage II"
msgstr ""
#: src/components/preference_pages/stages.rs:103 src/preferences/models.rs:70
#: src/stages.rs:178
msgid "Stage III"
msgstr ""
#: src/components/preference_pages/stages.rs:109 src/preferences/models.rs:71
#: src/stages.rs:211
msgid "Stage IV"
msgstr ""
#: src/components/preference_pages/stages.rs:132
msgid "Add custom stage"
msgstr ""
#: src/components/preference_pages/templates.rs:86
#: src/components/preference_pages/templates.rs:93
#: src/components/preferences_window.rs:77
msgid "Templates"
msgstr ""
#: src/components/preference_pages/templates.rs:116
msgid "Remove template"
msgstr ""
#: src/components/preference_pages/templates.rs:124
msgid "Add template"
msgstr ""
#: src/components/preference_pages/templates.rs:128
msgid "My Template"
msgstr ""
#: src/components/preference_pages/templates.rs:187
msgid "There are no templates. Click on the + button to create one."
msgstr ""
#: src/components/preferences_window.rs:73
msgid "General"
msgstr ""
#: src/components/preferences_window.rs:74
msgid "Editor"
msgstr ""
#: src/components/preferences_window.rs:75 src/main.rs:180 src/main.rs:182
#: data/systems.tranquil.Map.desktop.in.in:3
#: data/systems.tranquil.Map.metainfo.xml.in.in:5
msgid "Map"
msgstr ""
#: src/components/preferences_window.rs:76
msgid "Stages"
msgstr ""
#: src/components/preferences_window.rs:436
#: src/components/preferences_window.rs:462
msgid "JSON File"
msgstr ""
#: src/components/preferences_window.rs:442
msgid "Export Preferences"
msgstr ""
#: src/components/preferences_window.rs:468
msgid "Import Preferences"
msgstr ""
#: src/components/stage_form.rs:111
msgid "Remove stage"
msgstr ""
#: src/components/template_row.rs:67
msgid "This is the default template."
msgstr ""
#: src/components/template_row.rs:67
msgid "Set as default template."
msgstr ""
#: src/components/template_row.rs:87
msgid "Edit Template"
msgstr ""
#: src/dialogs.rs:36
msgid "Wardley Map Files"
msgstr ""
#: src/dialogs.rs:44 src/dialogs.rs:138
msgid "Cancel"
msgstr ""
#: src/dialogs.rs:58
msgid "Open Map"
msgstr ""
#: src/dialogs.rs:95
msgid "Save Map As"
msgstr ""
#: src/dialogs.rs:136
msgid "Unsaved Changes"
msgstr ""
#: src/dialogs.rs:137
msgid "Save changes before closing?"
msgstr ""
#: src/dialogs.rs:138
msgid "Don't save"
msgstr ""
#: src/dialogs.rs:174
msgid "PNG Image"
msgstr ""
#: src/dialogs.rs:175
msgid "SVG Image"
msgstr ""
#: src/dialogs.rs:195
msgid "Export Map as Image"
msgstr ""
#: src/handlers/export.rs:47
msgid "Could not export image. Please make sure the destination is writable."
msgstr ""
#: src/handlers/file.rs:41
msgid "Could not open file. Please make sure the file is readable."
msgstr ""
#: src/handlers/file.rs:68
msgid "Could not save file. Please make sure the destination is writable."
msgstr ""
#: src/main.rs:171
msgid "Untitled"
msgstr ""
#: src/main.rs:654
msgid ""
"Map is a <a href=\"https://medium.com/wardleymaps\">wardley map</a> editor "
"for linux that uses a simple language to easily create and edit maps. Draw "
"components, link dependencies, create groups, write notes, or add inertia "
"and evolution markers, and see your map change in an instant.\n"
"\n"
"<big><b>Language Reference</b></big>\n"
"\n"
"The wmap language is a simple notation to create and edit wardley maps and "
"is easy to pick up:\n"
"\n"
"<b>Components</b>\n"
"\n"
"Components are written as <tt>Name (x,y)</tt>. The name can contain spaces, "
"and the x and y coordinates are a whole or decimal number from 0 to 100 and "
"represent how far from the top left corner the component will be drawn.\n"
"\n"
"By default, components will be drawn as a circle, but you can specify the "
"shape by appending <tt>[Square]</tt>, <tt>[Triangle]</tt>, or <tt>[x]</tt>. "
"Here's some examples:\n"
"\n"
"<tt>Component (1,2)</tt>\n"
"<tt>My Cool Component (10.0,21.0)</tt>\n"
"<tt>A (1, 2.0) [Square]</tt>\n"
"<tt>Rose Wall (44.3, 50.0) [x]</tt>\n"
"\n"
"<b>Dependencies</b>\n"
"\n"
"Dependencies connect two components, and they are written as <tt>Component A "
"-- Component B</tt>. This will draw a simple line between them. If you want "
"an arrow, you can use <tt>Component -> Component</tt> instead.\n"
"\n"
"<tt>Component -- My Cool Component</tt>\n"
"<tt>A -> Component</tt>\n"
"\n"
"<b>Inertia</b>\n"
"\n"
"You can place an inertia marker in front of a component by writing "
"<tt>[Inertia] Component</tt>.\n"
"\n"
"<tt>[Inertia] My Cool Component</tt>\n"
"<tt>[Inertia] A</tt>\n"
"\n"
"<b>Evolution</b>\n"
"\n"
"Evolution arrows are notated by using <tt>[Evolution] Component +x</tt> or "
"<tt>[Evolution] Component -x</tt>, where x is a whole or decimal number "
"between 0 and 100.\n"
"\n"
"<tt>[Evolution] My Cool Component -10</tt>\n"
"<tt>[Evolution] A +15</tt>\n"
"\n"
"<b>Notes</b>\n"
"\n"
"Sometimes it's helpful to add some text clarifying the map. Writing "
"<tt>[Note] (x, y) Text</tt> will create a note block right at those "
"coordinates. Just like components, x and y are numbers between 0 and 100. "
"You can write \\n to force a line break.\n"
"\n"
"<tt>[Note] (30, 45) Here we want to call out an explanation or context.</"
"tt>\n"
"<tt>[Note] (90, 25) We're close to the edge \\n so we can multiline it.</"
"tt>\n"
"\n"
"<b>Groups</b>\n"
"\n"
"You can group components together by using <tt>[Group] ComponentA, "
"ComponentB...</tt>\n"
"\n"
"<tt>[Group] Tinker, Tailor, Soldier</tt>\n"
"<tt>[Group] Two Words, Three Words Here</tt>\n"
"\n"
"<b>Resizing Evolution Stages</b>\n"
"\n"
"If you need more space for one of the four stages, you can use <b>[I] x</b>, "
"<b>[II] x</b>, or <b>[III] x</b>. As with other lines, x is a number between "
"0-100.\n"
"\n"
"<tt>[I] 15</tt>\n"
"<tt>[II] 35.5</tt>\n"
"<tt>[III] 80</tt>"
msgstr ""
#: src/preferences/models.rs:53 src/stages.rs:78
msgid "Cynefin"
msgstr ""
#: src/preferences/models.rs:55 src/stages.rs:111
msgid "Chaotic"
msgstr ""
#: src/preferences/models.rs:56 src/stages.rs:144
msgid "Complex"
msgstr ""
#: src/preferences/models.rs:57 src/stages.rs:177
msgid "Complicated"
msgstr ""
#: src/preferences/models.rs:58 src/stages.rs:210
msgid "Clear"
msgstr ""
#: src/preferences/models.rs:66
msgid "New Stage"
msgstr ""
#: src/preferences/models.rs:180
msgid "Example Map"
msgstr ""
#: src/preferences/models.rs:181
msgid ""
"Client (39, 0) [x]\n"
"Consumer (55, 10) [x]\n"
"\n"
"Client -- Consumer\n"
"\n"
"Find out about (65, 15)\n"
"Test printer (42, 20)\n"
"\n"
"Consumer -- Test printer\n"
"Consumer -- Find out about\n"
"\n"
"Microsite (60, 30)\n"
"\n"
"Find out about -- Microsite\n"
"\n"
"[Group] Consumer, Test printer, Find out about, Microsite\n"
"[Note] (63, 10) Team, Settlers\n"
"\n"
"Testing Application (34, 35)\n"
"Microsite -- Testing Application\n"
"Test Printer -- Testing Application\n"
"\n"
"FinDev (30, 50)\n"
"Testing Application -- FinDev\n"
"Microsite -- Findev\n"
"[Group] Testing Application, FinDev\n"
"[Note] (24, 41.5) Team, Pioneers\n"
"[Evolution] Testing Application +15\n"
"[Evolution] FinDev +30\n"
"\n"
"Platform [now] (50, 60) [triangle]\n"
"Platform [then] (71, 60)\n"
"Platform [now] -> Platform [then]\n"
"[Inertia] Platform [now]\n"
"FinDev -- Platform [then]\n"
"[Group] Platform\n"
"[Note] (74, 60) Team, Town Planners\n"
"\n"
"Distribution (65, 70)\n"
"Brochure (60, 75)\n"
"Distribution -- Brochure\n"
"[Evolution] Distribution +20\n"
"Testing Application -- Distribution\n"
"Distribution -- Brochure\n"
"[Group] Distribution, Brochure\n"
"[Note] (65, 75) Team, Town Planners\n"
"\n"
"Large Format Printer (45, 75)\n"
"Testing Application -- Large Format Printer\n"
"[Group] Large Format Printer\n"
"[Note] (42, 78.5) Team, Settlers\n"
"[i] 20\n"
"[ii] 40\n"
"[iii] 70"
msgstr ""
#: src/preferences/models.rs:237
msgid "Empty"
msgstr ""
#: src/stages.rs:58
msgid "Activities"
msgstr ""
#: src/stages.rs:59
msgid "Practice"
msgstr ""
#: src/stages.rs:60
msgid "Data"
msgstr ""
#: src/stages.rs:61
msgid "Knowledge"
msgstr ""
#: src/stages.rs:62
msgid "Ubiquity"
msgstr ""
#: src/stages.rs:63
msgid "Certainty"
msgstr ""
#: src/stages.rs:64
msgid "Publication Types"
msgstr ""
#: src/stages.rs:65
msgid "Market"
msgstr ""
#: src/stages.rs:66
msgid "Knowledge Management"
msgstr ""
#: src/stages.rs:67
msgid "Market Perception"
msgstr ""
#: src/stages.rs:68
msgid "User Perception"
msgstr ""
#: src/stages.rs:69
msgid "Perception in Industry"
msgstr ""
#: src/stages.rs:70
msgid "Focus of Value"
msgstr ""
#: src/stages.rs:71
msgid "Understanding"
msgstr ""
#: src/stages.rs:72
msgid "Comparison"
msgstr ""
#: src/stages.rs:73
msgid "Failure"
msgstr ""
#: src/stages.rs:74
msgid "Market Action"
msgstr ""
#: src/stages.rs:75
msgid "Efficiency"
msgstr ""
#: src/stages.rs:76
msgid "Decision Drivers"
msgstr ""
#: src/stages.rs:77
msgid "Behavior"
msgstr ""
#: src/stages.rs:79
msgid "Evolution Stage"
msgstr ""
#: src/stages.rs:91
msgid "Genesis"
msgstr ""
#: src/stages.rs:92
msgid "Novel"
msgstr ""
#: src/stages.rs:93
msgid "Unmodelled"
msgstr ""
#: src/stages.rs:94
msgid "Concept"
msgstr ""
#: src/stages.rs:95
msgid "Rare"
msgstr ""
#: src/stages.rs:96
msgid "Poorly Understood / exploring the unknown"
msgstr ""
#: src/stages.rs:97
msgid ""
"Describe the wonder of the thing / the discovery of some marvel / a new "
"land / an unknown frontier"
msgstr ""
#: src/stages.rs:98
msgid "Undefined Market"
msgstr ""
#: src/stages.rs:99
msgid "Uncertain"
msgstr ""
#: src/stages.rs:100
msgid "Chaotic (non-linear) / domain of the \"crazy\""
msgstr ""
#: src/stages.rs:101
msgid "Different / confusing / exciting / surprising / dangerous"
msgstr ""
#: src/stages.rs:102
msgid "Future source of competitive advantage / unpredictable / unknown"
msgstr ""
#: src/stages.rs:103
msgid "High future worth but immediate investment"
msgstr ""
#: src/stages.rs:104
msgid "Poorly Understood / unpredictable"
msgstr ""
#: src/stages.rs:105
msgid "Constantly changing / a differential / unstable"
msgstr ""
#: src/stages.rs:106
msgid "High / tolerated / assumed to be wrong"
msgstr ""
#: src/stages.rs:107
msgid "Gambling / driven by gut"
msgstr ""
#: src/stages.rs:108
msgid "Reducing the cost of change (experimentation)"
msgstr ""
#: src/stages.rs:109
msgid "Heritage / culture"
msgstr ""
#: src/stages.rs:110
msgid "Uncertain when to use"
msgstr ""
#: src/stages.rs:124
msgid "Custom"
msgstr ""
#: src/stages.rs:125
msgid "Emerging"
msgstr ""
#: src/stages.rs:126
msgid "Divergent"
msgstr ""
#: src/stages.rs:127
msgid "Hypothesis"
msgstr ""
#: src/stages.rs:128
msgid "Slowly Increasing"
msgstr ""
#: src/stages.rs:129
msgid "Rapid Increase In Learning / discovery becomes refining"
msgstr ""
#: src/stages.rs:130
msgid ""
"Focused on build / construct / awareness and learning / many models of "
"explanation / no accepted forms / a wild west"
msgstr ""
#: src/stages.rs:131
msgid ""
"Forming Market / an array of competing forms and models of understanding"
msgstr ""
#: src/stages.rs:132
msgid "Learning on use / focused on testing prediction"
msgstr ""
#: src/stages.rs:133
msgid "Domain of \"experts\""
msgstr ""
#: src/stages.rs:134
msgid "Leading edge / emerging / uncertainty over results"
msgstr ""
#: src/stages.rs:135
msgid "Seen as a scompetitive advantage / a differential / ROI / case examples"
msgstr ""
#: src/stages.rs:136
msgid "Seeking ways to profit and a ROI / seeking confirmation of value"
msgstr ""
#: src/stages.rs:137
msgid "Increasing understanding / development of measures"
msgstr ""
#: src/stages.rs:138
msgid "Learning from others / testing the water / some evidential support"
msgstr ""
#: src/stages.rs:139
msgid "Moderate / unsurprising if wrong but disappointed"
msgstr ""
#: src/stages.rs:140
msgid "Exploring a \"found\" value"
msgstr ""
#: src/stages.rs:141 src/stages.rs:174
msgid "Reducing cost of waste (Learning)"
msgstr ""
#: src/stages.rs:142 src/stages.rs:175
msgid "Analyses & synthesis"
msgstr ""
#: src/stages.rs:143
msgid "Learning when to use"
msgstr ""
#: src/stages.rs:157
msgid "Product (+rental)"
msgstr ""
#: src/stages.rs:158
msgid "Good"
msgstr ""
#: src/stages.rs:159
msgid "Convergent"
msgstr ""
#: src/stages.rs:160
msgid "Theory"
msgstr ""
#: src/stages.rs:161
msgid "Rapidly Increasing"
msgstr ""
#: src/stages.rs:162
msgid "Rapid increase in use / increasing fit for purpose"
msgstr ""
#: src/stages.rs:163
msgid ""
"Maintenance / operations / installation / comparison between competing "
"forms / feature analysis"
msgstr ""
#: src/stages.rs:164
msgid ""
"Growing Market / consolidation to a few competing but more accepted forms"
msgstr ""
#: src/stages.rs:165
msgid "Learning on operation / using prediction / verification"
msgstr ""
#: src/stages.rs:166
msgid "Increasing expectation of use / domain of \"professionals\""
msgstr ""
#: src/stages.rs:167
msgid ""
"Increasingly common / disappointed if not used or available / feeling left "
"behind"
msgstr ""
#: src/stages.rs:168
msgid ""
"Advantage through implementation / features / this model is better than that"
msgstr ""
#: src/stages.rs:169
msgid ""
"High profitability per unit / a valuable model / a feeling of "
"understanding / focus on exploitation"
msgstr ""
#: src/stages.rs:170
msgid "Increasing education / constant refinement of needs / measures"
msgstr ""
#: src/stages.rs:171
msgid "Competing models / feature difference / evidential support"
msgstr ""
#: src/stages.rs:172
msgid ""
"Not tolerated / focus on constant improvement / assumed to be in the right "
"direction / resistance to changing the model"
msgstr ""
#: src/stages.rs:173
msgid "Market analysis / listening to customers"
msgstr ""
#: src/stages.rs:176
msgid "Learning through use"
msgstr ""
#: src/stages.rs:190
msgid "Commodity (+utility)"
msgstr ""
#: src/stages.rs:191
msgid "Best"
msgstr ""
#: src/stages.rs:192
msgid "Modelled"
msgstr ""
#: src/stages.rs:193
msgid "Accepted"
msgstr ""
#: src/stages.rs:194
msgid "Widespread in the applicable market / ecosystem"
msgstr ""
#: src/stages.rs:195
msgid "Commonly understood (in terms of use)"
msgstr ""
#: src/stages.rs:196
msgid "Focused on use / increasingly an accepted, almost invisible component"
msgstr ""
#: src/stages.rs:197
msgid "Mature Market / stabilised to an accepted form"
msgstr ""
#: src/stages.rs:198
msgid "Known / accepted"
msgstr ""
#: src/stages.rs:199
msgid "Ordered (appearance of being linear) / trivial / formula to be applied"
msgstr ""
#: src/stages.rs:200
msgid "Standard / expected / feeling of shock if not used"
msgstr ""
#: src/stages.rs:201
msgid "Cost of doing business / accepted / specific defined models"
msgstr ""
#: src/stages.rs:202
msgid ""
"High volume / reducing margin / important but invisible / an essential "
"component of something more complex"
msgstr ""
#: src/stages.rs:203
msgid "Believed to be well defined / stable / measurable"
msgstr ""
#: src/stages.rs:204
msgid "Essential / any advantage is operational / accepted norm"
msgstr ""
#: src/stages.rs:205
msgid "Surprised by failure / focus on operational efficiency"
msgstr ""
#: src/stages.rs:206
msgid "Metric driven / build what is needed"
msgstr ""
#: src/stages.rs:207
msgid "Reducing cost of deviation (Volume)"
msgstr ""
#: src/stages.rs:208
msgid "Previous Experience"
msgstr ""
#: src/stages.rs:209
msgid "Known / common usage"
msgstr ""
#: data/systems.tranquil.Map.desktop.in.in:4
msgid "Wardley Map Editor"
msgstr ""
#: data/systems.tranquil.Map.desktop.in.in:5
msgid "Wardley Map editor for Linux"
msgstr ""
#: data/systems.tranquil.Map.desktop.in.in:10
msgid "wardley;wmap;maps;editor;wardley maps;wardley mapping;"
msgstr ""
#: data/systems.tranquil.Map.metainfo.xml.in.in:6
msgid "Visualize your business landscape"
msgstr ""
#: data/systems.tranquil.Map.metainfo.xml.in.in:21
msgid ""
"Map is a wardley map editor for linux that uses a simple language to easily "
"create and edit maps that visualize an evolving environment. Draw "
"components, link dependencies, create groups, write notes, or add inertia "
"and evolution markers, and see your map change in an instant."
msgstr ""
#: data/systems.tranquil.Map.metainfo.xml.in.in:31
msgid ""
"The main window of Map showing the code editor on the left pane, and the "
"rendered preview on the right pane."
msgstr ""
#: data/systems.tranquil.Map.metainfo.xml.in.in:35
msgid ""
"A lineup of the preference panes in map, showing the ways in which you can "
"customize your experience."
msgstr ""
#: data/systems.tranquil.Map.metainfo.xml.in.in:48
msgid "Editing preferences now works better on small screens."
msgstr ""
#: data/systems.tranquil.Map.metainfo.xml.in.in:50
msgid ""
"Templates preferences window uses a collapsible sidebar to work better in "
"small screen sizes."
msgstr ""
#: data/systems.tranquil.Map.metainfo.xml.in.in:51
msgid ""
"The layout of all other preference windows should display properly in screen "
"sizes up to 360px"
msgstr ""
#: data/systems.tranquil.Map.metainfo.xml.in.in:57
msgid "Improved layout for small screens, and about window."
msgstr ""
#: data/systems.tranquil.Map.metainfo.xml.in.in:59
msgid ""
"Automatically switches to vertical layout when using smaller window sizes "
"(eg. for phones)"
msgstr ""
#: data/systems.tranquil.Map.metainfo.xml.in.in:60
msgid ""
"Adds an about window that includes a link to report issues, and a reference "
"of the language."
msgstr ""
#: data/systems.tranquil.Map.metainfo.xml.in.in:68
msgid "Rubén Beltrán del Río"
msgstr ""
|