]> git.pld-linux.org Git - packages/hugin.git/blob - hugin-cvs.patch
- cvs update (needed for wx 2.6.0)
[packages/hugin.git] / hugin-cvs.patch
1 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/ChangeLog hugin/ChangeLog
2 --- hugin-0.5-beta4/ChangeLog   2005-03-08 22:23:57.000000000 +0100
3 +++ hugin/ChangeLog     2005-04-26 13:05:59.000000000 +0200
4 @@ -1,3 +1,101 @@
5 +2005-04-26 13:10  dwilkins42
6 +
7 +       * src/hugin/CPEditorPanel.cpp: Fix fine tune crash
8 +
9 +2005-04-26 11:17  dwilkins42
10 +
11 +       * src/hugin/NonaStitcherPanel.cpp: Fix - do not delete multiple
12 +         tiff file output
13 +
14 +2005-04-26 10:22  dwilkins42
15 +
16 +       * src/hugin/: MainFrame.cpp, OptimizePanel.cpp, PanoPanel.cpp: Fix
17 +         infinite loops when No of images is zero
18 +
19 +2005-04-24 19:48  dwilkins42
20 +
21 +       * src/: hugin/CPEditorPanel.cpp, hugin/ImagesPanel.cpp,
22 +         hugin/LensPanel.cpp, hugin/OptimizePanel.cpp,
23 +         hugin/PanoPanel.cpp, hugin/huginApp.cpp, include/panoinc_WX.h,
24 +         include/common/utils.h, include/hugin/CPEditorPanel.h,
25 +         include/hugin/ImagesPanel.h, include/hugin/LensPanel.h,
26 +         include/hugin/OptimizePanel.h, include/hugin/PanoPanel.h:
27 +         wxWidgets 2.6 released. wxSplitterWindow etc works on wxGTK and
28 +         wxMSW so enable these on both platforms
29 +
30 +2005-04-23 08:58  dwilkins42
31 +
32 +       * src/hugin/NonaStitcherPanel.cpp: Ensure enblend args are passed
33 +         to enblend
34 +
35 +2005-04-12 19:54  ippei
36 +
37 +       * src/include/hugin/config_defaults.h: Mac: just making more
38 +         readable.
39 +
40 +2005-04-12 19:49  ippei
41 +
42 +       * src/hugin/NonaStitcherPanel.cpp: Mac: enblend problem fix.
43 +
44 +2005-04-12 19:48  ippei
45 +
46 +       * src/hugin/AutoCtrlPointCreator.cpp: Mac: Including customised
47 +         autopano frontend script inside the application bundle.
48 +
49 +2005-04-02 20:43  specu
50 +
51 +       * src/hugin/po/pl.po: updated Polish translation
52 +
53 +2005-03-30 15:03  ippei
54 +
55 +       * src/hugin/ImagesPanel.cpp: I'm sorry. I was wrong... putting it
56 +         back to the previous version
57 +
58 +2005-03-30 13:03  ippei
59 +
60 +       * src/hugin/NonaStitcherPanel.cpp: adding mac specific codes
61 +
62 +2005-03-30 13:01  ippei
63 +
64 +       * src/hugin/MainFrame.cpp: minor improvement for mac package bundle
65 +         handling
66 +
67 +2005-03-30 12:55  ippei
68 +
69 +       * src/hugin/AutoCtrlPointCreator.cpp: adding Mac specific code
70 +
71 +2005-03-30 12:54  ippei
72 +
73 +       * src/hugin/ImagesPanel.cpp: wx24 fix
74 +
75 +2005-03-30 12:48  ippei
76 +
77 +       * src/hugin/RunOptimizerFrame.cpp: adding Mac specific codes
78 +
79 +2005-03-30 12:47  ippei
80 +
81 +       * src/hugin/huginApp.cpp: minor fix in mac package bundle handling
82 +
83 +2005-03-30 12:45  ippei
84 +
85 +       * src/include/hugin/config_defaults.h: default autopano-sift
86 +         settings for mac
87 +
88 +2005-03-09 09:38  dangelo
89 +
90 +       * src/include/common/: math.h, platform.h: fix compilation with gcc
91 +         3.4
92 +
93 +2005-03-08 23:26  dangelo
94 +
95 +       * configure.ac, src/hugin/xrc/data/about.htm,
96 +         src/hugin/xrc/data/about_fr.htm, src/hugin/xrc/data/about_pl.htm:
97 +         updated version number
98 +
99 +2005-03-08 23:23  dangelo
100 +
101 +       * ChangeLog: update changelog
102 +
103  2005-03-08 22:12  dangelo
104  
105         * src/hugin/ImageCenter.cpp: compile fix for wxwindows 2.4
106 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/AutoCtrlPointCreator.cpp hugin/src/hugin/AutoCtrlPointCreator.cpp
107 --- hugin-0.5-beta4/src/hugin/AutoCtrlPointCreator.cpp  2005-03-07 21:10:43.000000000 +0100
108 +++ hugin/src/hugin/AutoCtrlPointCreator.cpp    2005-04-27 20:34:11.000000000 +0200
109 @@ -6,7 +6,7 @@
110   *
111   *  @author Pablo d'Angelo <pablo.dangelo@web.de>
112   *
113 - *  $Id$
114 + *  $Id$
115   *
116   *  This program is free software; you can redistribute it and/or
117   *  modify it under the terms of the GNU General Public
118 @@ -38,6 +38,11 @@
119  #include "hugin/AutoCtrlPointCreator.h"
120  #include "hugin/CommandHistory.h"
121  
122 +#ifdef __WXMAC__
123 +#include <CFBundle.h>
124 +#include <wx/utils.h>
125 +#endif
126 +
127  using namespace std;
128  using namespace PT;
129  using namespace utils;
130 @@ -153,19 +158,57 @@
131              return;
132          }
133      }
134 -#elif defined (__WXMAC__)
135 -    wxString autopanoExe = wxConfigBase::Get()->Read(wxT("/AutoPanoSift/AutopanoExe"), wxT(HUGIN_APSIFT_EXE));
136 -    if (!wxFile::Exists(autopanoExe)){
137 -        wxFileDialog dlg(0,_("Select autopano-sift frontend script"),
138 -                         "", "",
139 -                         "Shell Scripts (*.sh)|*.sh",
140 -                         wxOPEN, wxDefaultPosition);
141 -        if (dlg.ShowModal() == wxID_OK) {
142 -            autopanoExe = dlg.GetPath();
143 -            wxConfigBase::Get()->Write(wxT("/AutopanoSift/AutopanoExe"),autopanoExe);
144 -        } else {
145 -            wxLogError(_("No autopano selected"));
146 -            return;
147 +#elif (defined __WXMAC__)
148 +    wxString autopanoExe;
149 +    
150 +    CFBundleRef mainbundle = CFBundleGetMainBundle();
151 +    if(!mainbundle)
152 +    {
153 +        DEBUG_INFO("Mac: Not bundled");
154 +    }
155 +    else
156 +    {
157 +        CFURLRef XRCurl = CFBundleCopyResourceURL(mainbundle, CFSTR(HUGIN_APSIFT_EXE), NULL, NULL);
158 +        if(!XRCurl)
159 +        {
160 +            DEBUG_INFO("Mac: Cannot locate autopano-sift frontend script in the bundle.");
161 +        }
162 +        else
163 +        {
164 +            CFIndex bufLen = 1024;
165 +            unsigned char buffer[(int) bufLen];
166 +            if(!CFURLGetFileSystemRepresentation(XRCurl, TRUE, buffer, bufLen))
167 +            {
168 +                CFRelease(XRCurl);
169 +                DEBUG_INFO("Mac: Failed to get file system representation");
170 +            }
171 +            else
172 +            {
173 +                buffer[((int) bufLen) - 1] = '\0';
174 +                CFRelease(XRCurl);
175 +                autopanoExe = wxString::FromAscii( (char *) buffer);
176 +                DEBUG_INFO("Mac: using bundled autopano-sift frontend script");
177 +                
178 +                wxConfigBase::Get()->Write(wxT("/AutopanoSift/AutopanoExe"), wxT(HUGIN_APSIFT_EXE));
179 +            }
180 +        }
181 +    }
182 +    
183 +    if(!autopanoExe)
184 +    {
185 +        autopanoExe = wxConfigBase::Get()->Read(wxT("/AutoPanoSift/AutopanoExe"), wxT(HUGIN_APSIFT_EXE));
186 +        if (!wxFile::Exists(autopanoExe)){
187 +            wxFileDialog dlg(0,_("Select autopano frontend script"),
188 +                             wxT(""), wxT(""),
189 +                             _("Shell Scripts (*.sh)|*.sh"),
190 +                             wxOPEN, wxDefaultPosition);
191 +            if (dlg.ShowModal() == wxID_OK) {
192 +                autopanoExe = dlg.GetPath();
193 +                wxConfigBase::Get()->Write(wxT("/AutopanoSift/AutopanoExe"), autopanoExe);
194 +            } else {
195 +                wxLogError(_("No autopano selected"));
196 +                return;
197 +            }
198          }
199      }
200  #else
201 @@ -238,6 +281,25 @@
202          }
203          autopanoArgs.Replace(wxT("%i"), wxString (imgFiles.c_str(), *wxConvCurrent));
204      }
205 +    
206 +#ifdef __WXMAC__
207 +    wxString autopanoExeDir = wxConfigBase::Get()->Read(wxT("/AutoPanoSift/AutopanoExeDir"), wxT(""));
208 +    if (! wxFileExists( autopanoExeDir + wxT("/autopano.exe") )){
209 +        wxFileDialog dlg(0, _("Select autopano .Net executable."),
210 +                         wxT(""), wxT(""),
211 +                         wxT("Mono executables (*.exe)|*.exe"),
212 +                         wxOPEN, wxDefaultPosition);
213 +        if (dlg.ShowModal() == wxID_OK) {
214 +            autopanoExeDir = wxPathOnly( dlg.GetPath() );
215 +            wxConfigBase::Get()->Write(wxT("/AutopanoSift/AutopanoExeDir"), autopanoExeDir);
216 +        } else {
217 +            wxLogError(_("No autopano directory selected"));
218 +            return;
219 +        }
220 +    }
221 +    autopanoArgs = wxT("-a ") + autopanoExeDir + wxT(" ") + autopanoArgs;
222 +#endif
223 +    
224  #ifdef __WXMSW__
225      if (autopanoArgs.size() > 1930) {
226          wxMessageBox(_("autopano command line too long.\nThis is a windows limitation\nPlease select less images, or place the images in a folder with\na shorter pathname"),
227 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/CPEditorPanel.cpp hugin/src/hugin/CPEditorPanel.cpp
228 --- hugin-0.5-beta4/src/hugin/CPEditorPanel.cpp 2005-03-07 21:10:42.000000000 +0100
229 +++ hugin/src/hugin/CPEditorPanel.cpp   2005-04-26 12:10:32.000000000 +0200
230 @@ -6,7 +6,7 @@
231   *
232   *  @author Pablo d'Angelo <pablo.dangelo@web.de>
233   *
234 - *  $Id$
235 + *  $Id$
236   *
237   *  This program is free software; you can redistribute it and/or
238   *  modify it under the terms of the GNU General Public
239 @@ -174,7 +174,7 @@
240      m_estimateCB = XRCCTRL(*this,"cp_editor_auto_estimate", wxCheckBox);
241      DEBUG_ASSERT(m_estimateCB);
242  
243 -#ifdef USE_WX25x
244 +#ifdef USE_WX26x
245      m_cp_ctrls = XRCCTRL(*this, "cp_controls_panel", wxScrolledWindow);
246         DEBUG_ASSERT(m_cp_ctrls);
247      m_cp_splitter = XRCCTRL(*this, "cp_editor_panel_splitter", wxSplitterWindow);
248 @@ -183,8 +183,7 @@
249         m_cp_ctrls->SetSizeHints(20, 20);
250         m_cp_ctrls->FitInside();
251         m_cp_ctrls->SetScrollRate(10, 10);
252 -       // wx 2.5.4
253 -       // m_cp_splitter->SetSashGravity(0.5);
254 +       m_cp_splitter->SetSashGravity(0.5);
255         m_cp_splitter->SetSashPosition(wxConfigBase::Get()->Read(wxT("/CPEditorPanel/sashPos"),200));
256         m_cp_splitter->SetMinimumPaneSize(20);
257  #endif
258 @@ -210,7 +209,7 @@
259  {
260      DEBUG_TRACE("dtor");
261  
262 -#ifdef USE_WX25x
263 +#ifdef USE_WX26x
264      int sashPos;
265         sashPos = m_cp_splitter->GetSashPosition();
266         DEBUG_INFO("CP Editor panel sash pos: " << sashPos);
267 @@ -1683,7 +1682,7 @@
268  {
269      if (cpCreationState == NO_POINT) {
270          FineTuneSelectedPoint(false);
271 -    } else if (BOTH_POINTS_SELECTED) {
272 +    } else if (cpCreationState == BOTH_POINTS_SELECTED) {
273          FineTuneNewPoint(false);
274      }
275  }
276 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/huginApp.cpp hugin/src/hugin/huginApp.cpp
277 --- hugin-0.5-beta4/src/hugin/huginApp.cpp      2005-02-22 11:08:54.000000000 +0100
278 +++ hugin/src/hugin/huginApp.cpp        2005-04-24 18:48:11.000000000 +0200
279 @@ -6,7 +6,7 @@
280   *
281   *  @author Pablo d'Angelo <pablo.dangelo@web.de>
282   *
283 - *  $Id$
284 + *  $Id$
285   *
286   *  This program is free software; you can redistribute it and/or
287   *  modify it under the terms of the GNU General Public
288 @@ -174,7 +174,7 @@
289          else
290          {
291              CFIndex bufLen = 1024;
292 -            unsigned char buffer[1024];
293 +            unsigned char buffer[(int) bufLen];
294              if(!CFURLGetFileSystemRepresentation(XRCurl, TRUE, buffer, bufLen))
295              {
296                  CFRelease(XRCurl);
297 @@ -182,10 +182,11 @@
298              }
299              else
300              {
301 -                buffer[1023] = '\0';
302 +                buffer[((int) bufLen) - 1] = '\0';
303                  CFRelease(XRCurl);
304 -                xrcPrefix = (wxString)buffer+ wxT("/");
305 +                xrcPrefix = wxString::FromAscii( (char *) buffer) + wxT("/");
306                  DEBUG_INFO("Mac: overriding xrc prefix; using mac bundled xrc files");
307 +                
308              }
309          }
310      }
311 @@ -209,7 +210,7 @@
312      wxXmlResource::Get()->Load(xrcPrefix + wxT("help.xrc"));
313      wxXmlResource::Get()->Load(xrcPrefix + wxT("keyboard_help.xrc"));
314      wxXmlResource::Get()->Load(xrcPrefix + wxT("pref_dialog.xrc"));
315 -#ifdef USE_WX25x
316 +#ifdef USE_WX26x
317      wxXmlResource::Get()->Load(xrcPrefix + wxT("cp_editor_panel-2.5.xrc"));
318      wxXmlResource::Get()->Load(xrcPrefix + wxT("images_panel-2.5.xrc"));
319      wxXmlResource::Get()->Load(xrcPrefix + wxT("lens_panel-2.5.xrc"));
320 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/ImagesPanel.cpp hugin/src/hugin/ImagesPanel.cpp
321 --- hugin-0.5-beta4/src/hugin/ImagesPanel.cpp   2005-02-22 11:08:10.000000000 +0100
322 +++ hugin/src/hugin/ImagesPanel.cpp     2005-04-24 18:48:09.000000000 +0200
323 @@ -7,7 +7,7 @@
324   *  @author Kai-Uwe Behrmann <web@tiscali.de> and
325   *          Pablo d'Angelo <pablo.dangelo@web.de>
326   *
327 - *  $Id$
328 + *  $Id$
329   *
330   *  This program is free software; you can redistribute it and/or
331   *  modify it under the terms of the GNU General Public
332 @@ -60,7 +60,7 @@
333      EVT_SIZE   ( ImagesPanel::FitParent )
334  //    EVT_MOUSE_EVENTS ( ImagesPanel::OnMouse )
335  //    EVT_MOTION ( ImagesPanel::ChangePreview )
336 -#ifdef USE_WX25x
337 +#ifdef USE_WX26x
338         EVT_SPLITTER_SASH_POS_CHANGED(XRCID("image_panel_splitter"), ImagesPanel::OnPositionChanged)
339  #endif
340      EVT_LIST_ITEM_SELECTED( XRCID("images_list_unknown"),
341 @@ -107,7 +107,7 @@
342      m_removeCPButton = XRCCTRL(*this, "images_remove_cp", wxButton);
343      DEBUG_ASSERT(m_removeCPButton);
344  
345 -#ifdef USE_WX25x
346 +#ifdef USE_WX26x
347      m_img_ctrls = XRCCTRL(*this, "image_control_panel", wxScrolledWindow);
348      DEBUG_ASSERT(m_img_ctrls);
349      m_img_splitter = XRCCTRL(*this, "image_panel_splitter", wxSplitterWindow);
350 @@ -118,8 +118,7 @@
351         {
352                 int sashPos;
353                 sashPos = wxConfigBase::Get()->Read(wxT("/ImageFrame/sashPos"),300);
354 -               // wx 2.5.4
355 -               //m_img_splitter->SetSashGravity(0.5);
356 +               m_img_splitter->SetSashGravity(0.5);
357                 m_img_splitter->SetSashPosition(sashPos);
358         }
359      m_img_splitter->SetMinimumPaneSize(20);
360 @@ -152,7 +151,7 @@
361  {
362      DEBUG_TRACE("dtor");
363  
364 -#ifdef USE_WX25x
365 +#ifdef USE_WX26x
366         int sashPos;
367         sashPos = m_img_splitter->GetSashPosition();
368      DEBUG_INFO("Image panel sash pos: " << sashPos);
369 @@ -173,7 +172,7 @@
370  
371  void ImagesPanel::FitParent( wxSizeEvent & e )
372  {
373 -#ifdef USE_WX25x
374 +#ifdef USE_WX26x
375      int winWidth, winHeight;
376      GetClientSize(&winWidth, &winHeight);
377      // winHeight -= ConvertDialogToPixels(wxPoint(0, 30)).y;   // sizes of tabs and toolbar
378 @@ -190,7 +189,7 @@
379  #endif
380  }
381  
382 -#ifdef USE_WX25x
383 +#ifdef USE_WX26x
384  void ImagesPanel::OnPositionChanged(wxSplitterEvent& event)
385  {
386         DEBUG_INFO("Sash Position now:" << event.GetSashPosition() << " or: " << m_img_splitter->GetSashPosition());
387 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/LensPanel.cpp hugin/src/hugin/LensPanel.cpp
388 --- hugin-0.5-beta4/src/hugin/LensPanel.cpp     2005-03-08 21:17:27.000000000 +0100
389 +++ hugin/src/hugin/LensPanel.cpp       2005-04-24 18:48:10.000000000 +0200
390 @@ -9,7 +9,7 @@
391   *
392   *  Rewritten by Pablo d'Angelo
393   *
394 - *  $Id$
395 + *  $Id$
396   *
397   *  This program is free software; you can redistribute it and/or
398   *  modify it under the terms of the GNU General Public
399 @@ -134,7 +134,7 @@
400      m_pixelDigits = wxConfigBase::Get()->Read(wxT("/General/PixelFractionalDigitsEdit"),2);
401      m_distDigitsEdit = wxConfigBase::Get()->Read(wxT("/General/DistortionFractionalDigitsEdit"),5);
402  
403 -#ifdef USE_WX25x
404 +#ifdef USE_WX26x
405      m_lens_ctrls = XRCCTRL(*this, "lens_control_panel", wxScrolledWindow);
406      DEBUG_ASSERT(m_lens_ctrls);
407      m_lens_splitter = XRCCTRL(*this, "lens_panel_splitter", wxSplitterWindow);
408 @@ -143,6 +143,7 @@
409      m_lens_ctrls->FitInside();
410      m_lens_ctrls->SetScrollRate(10, 10);
411      m_lens_splitter->SetSashPosition(wxConfigBase::Get()->Read(wxT("/LensFrame/sashPos"),300));
412 +    m_lens_splitter->SetSashGravity(0.5);
413      m_lens_splitter->SetMinimumPaneSize(20);
414  #endif
415  
416 @@ -157,7 +158,7 @@
417  {
418      DEBUG_TRACE("dtor");
419  
420 -#ifdef USE_WX25x
421 +#ifdef USE_WX26x
422      int sashPos;
423      sashPos = m_lens_splitter->GetSashPosition();
424      DEBUG_INFO("Lens panel sash pos: " << sashPos);
425 @@ -182,7 +183,7 @@
426  
427  void LensPanel::FitParent( wxSizeEvent & e )
428  {
429 -#ifdef USE_WX25x
430 +#ifdef USE_WX26x
431      int winWidth, winHeight;
432      GetClientSize(&winWidth, &winHeight);
433      // winHeight -= ConvertDialogToPixels(wxPoint(0, 30)).y;   // sizes of tabs and toolbar
434 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/MainFrame.cpp hugin/src/hugin/MainFrame.cpp
435 --- hugin-0.5-beta4/src/hugin/MainFrame.cpp     2005-03-07 21:10:42.000000000 +0100
436 +++ hugin/src/hugin/MainFrame.cpp       2005-04-26 09:22:34.000000000 +0200
437 @@ -6,7 +6,7 @@
438   *
439   *  @author Pablo d'Angelo <pablo.dangelo@web.de>
440   *
441 - *  $Id$
442 + *  $Id$
443   *
444   *  This program is free software; you can redistribute it and/or
445   *  modify it under the terms of the GNU General Public
446 @@ -207,7 +207,7 @@
447          else
448          {
449              CFIndex bufLen = 1024;
450 -            unsigned char buffer[1024];
451 +            unsigned char buffer[(int) bufLen];
452              if(!CFURLGetFileSystemRepresentation(XRCurl, TRUE, buffer, bufLen))
453              {
454                  CFRelease(XRCurl);
455 @@ -215,9 +215,9 @@
456              }
457              else
458              {
459 -                buffer[1023] = '\0';
460 +                buffer[((int) bufLen) - 1] = '\0';
461                  CFRelease(XRCurl);
462 -                m_xrcPrefix = (wxString)buffer+ wxT("/");
463 +                m_xrcPrefix = wxString::FromAscii( (char *) buffer) + wxT("/");
464                  DEBUG_INFO("Mac: overriding xrc prefix; using mac bundled xrc files");
465              }
466          }
467 @@ -472,6 +472,10 @@
468  void MainFrame::OnSaveProject(wxCommandEvent & e)
469  {
470      DEBUG_TRACE("");
471 +    if (pano.getNrOfImages() == 0) {
472 +           wxMessageBox(_("No images - Nothing to do"),_("Warning"), wxOK | wxICON_EXCLAMATION);
473 +               return;
474 +       }
475      wxFileName scriptName = m_filename;
476      if (m_filename == wxT("")) {
477          OnSaveProjectAs(e);
478 @@ -496,6 +500,10 @@
479  void MainFrame::OnSaveProjectAs(wxCommandEvent & e)
480  {
481      DEBUG_TRACE("");
482 +    if (pano.getNrOfImages() == 0) {
483 +           wxMessageBox(_("No images - Nothing to do"),_("Warning"), wxOK | wxICON_EXCLAMATION);
484 +               return;
485 +       }
486      wxFileDialog dlg(this,
487                       _("Save project file"),
488                       wxConfigBase::Get()->Read(wxT("actualPath"),wxT("")), wxT(""),
489 @@ -511,6 +519,10 @@
490  void MainFrame::OnSavePTStitcherAs(wxCommandEvent & e)
491  {
492      DEBUG_TRACE("");
493 +    if (pano.getNrOfImages() == 0) {
494 +           wxMessageBox(_("No images - Nothing to do"),_("Warning"), wxOK | wxICON_EXCLAMATION);
495 +               return;
496 +       }
497      wxFileDialog dlg(this,
498                       _("Save PTStitcher script file"),
499                       wxConfigBase::Get()->Read(wxT("actualPath"),wxT("")), wxT(""),
500 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/NonaStitcherPanel.cpp hugin/src/hugin/NonaStitcherPanel.cpp
501 --- hugin-0.5-beta4/src/hugin/NonaStitcherPanel.cpp     2005-03-08 21:17:26.000000000 +0100
502 +++ hugin/src/hugin/NonaStitcherPanel.cpp       2005-04-26 10:17:12.000000000 +0200
503 @@ -7,7 +7,7 @@
504   *  @author Kai-Uwe Behrmann <web@tiscali.de> and
505   *          Pablo d'Angelo <pablo@mathematik.uni-ulm.de>
506   *
507 - *  $Id$
508 + *  $Id$
509   *
510   *  This program is free software; you can redistribute it and/or
511   *  modify it under the terms of the GNU General Public
512 @@ -302,7 +302,7 @@
513                      wxLogError(_("No enblend.exe selected"));
514                  }
515              }
516 -#elif defined (__WXMAC__)
517 +#elif defined __WXMAC__
518              wxString enblendExe = config->Read(wxT("/Enblend/EnblendExe"), wxT(HUGIN_ENBLEND_EXE));
519              if (!wxFile::Exists(enblendExe)){
520                  wxFileDialog dlg(this,_("Select enblend commandline tool"),
521 @@ -314,6 +314,7 @@
522                      config->Write(wxT("/Enblend/EnblendExe"),enblendExe);
523                  } else {
524                      wxLogError(_("No enblend commandline tool selected"));
525 +                    return;
526                  }
527              }
528  #else
529 @@ -324,6 +325,7 @@
530              // spaces
531  
532              wxString args;
533 +                       args.append(config->Read(wxT("/Enblend/EnblendArgs"), wxT(HUGIN_ENBLEND_ARGS)));
534              if (opts.HFOV == 360.0) {
535                  // blend over the border
536                  args.append(wxT(" -w"));
537 @@ -351,8 +353,10 @@
538  #endif
539              {
540                  wxProgressDialog progress(_("Running Enblend"),_("Enblend will take a while to finish processing the panorama\nYou can watch the enblend progress in the command window"));
541 +                
542 +                wxString cmdline;
543  #ifdef unix
544 -        wxString cmdline = enblendExe + wxT(" ") + args;
545 +        cmdline = enblendExe + wxT(" ") + args;
546                 DEBUG_DEBUG("using system() to execute enblend with cmdline:" << cmdline.mb_str());
547                 int ret = system(cmdline.mb_str());
548                 if (ret == -1) {
549 @@ -362,7 +366,7 @@
550                     ret = WEXITSTATUS(ret);
551                 }
552  #elif __WXMSW__
553 -                wxString cmdline = wxString(wxT("enblend.exe ")) + args;
554 +                cmdline = wxString(wxT("enblend.exe ")) + args;
555                  // using CreateProcess on windows
556                  /* CreateProcess API initialization */
557                  STARTUPINFO siStartupInfo;
558 @@ -388,7 +392,8 @@
559                      wxLogError(_("Could not execute command: ") + cmdline  , _("CreateProcess Error"));
560                  }
561  #else
562 -                int ret = wxExecute(args, wxEXEC_SYNC);
563 +                cmdline = enblendExe + wxT(" ") + args;
564 +                int ret = wxExecute(cmdline, wxEXEC_SYNC);
565  #endif
566                 DEBUG_NOTICE("enblend returned with: " << ret);
567  
568 @@ -403,8 +408,8 @@
569                  }
570              }
571          }
572 -    if (wxConfigBase::Get()->Read(wxT("/Enblend/DeleteRemappedFiles"), HUGIN_ENBLEND_DELETE_REMAPPED_FILES) != 0) {
573 -        // delete remapped tiff files
574 +    if ((wxConfigBase::Get()->Read(wxT("/Enblend/DeleteRemappedFiles"), HUGIN_ENBLEND_DELETE_REMAPPED_FILES) != 0) && enblend) {
575 +        // delete remapped tiff files only if enblend was used for the stitching
576          for (UIntSet::const_iterator it = imgs.begin(); it != imgs.end(); ++it)
577          {
578              wxString f = output + wxString::Format(wxT("%04d.tif"), *it);
579 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/OptimizePanel.cpp hugin/src/hugin/OptimizePanel.cpp
580 --- hugin-0.5-beta4/src/hugin/OptimizePanel.cpp 2005-03-07 21:10:42.000000000 +0100
581 +++ hugin/src/hugin/OptimizePanel.cpp   2005-04-26 09:22:35.000000000 +0200
582 @@ -6,7 +6,7 @@
583   *
584   *  @author Pablo d'Angelo <pablo.dangelo@web.de>
585   *
586 - *  $Id$
587 + *  $Id$
588   *
589   *  This program is free software; you can redistribute it and/or
590   *  modify it under the terms of the GNU General Public
591 @@ -89,7 +89,7 @@
592      m_mode_cb = XRCCTRL(*this, "optimize_panel_mode", wxChoice);
593      DEBUG_ASSERT(m_mode_cb);
594  
595 -#ifdef USE_WX25x
596 +#ifdef USE_WX26x
597      m_opt_ctrls = XRCCTRL(*this, "optimize_controls_panel", wxScrolledWindow);
598      DEBUG_ASSERT(m_opt_ctrls);
599      m_opt_ctrls->SetSizeHints(20, 20);
600 @@ -422,6 +422,7 @@
601      DEBUG_TRACE("");
602      if (m_pano->getNrOfImages() == 0) {
603          // nothing to optimize
604 +               wxMessageBox(_("No images - Nothing to do"),_("Warning"), wxOK | wxICON_EXCLAMATION);
605          return;
606      }
607  
608 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/PanoPanel.cpp hugin/src/hugin/PanoPanel.cpp
609 --- hugin-0.5-beta4/src/hugin/PanoPanel.cpp     2005-02-22 11:08:43.000000000 +0100
610 +++ hugin/src/hugin/PanoPanel.cpp       2005-04-26 09:22:35.000000000 +0200
611 @@ -7,7 +7,7 @@
612   *  @author Kai-Uwe Behrmann <web@tiscali.de> and
613   *          Pablo d'Angelo <pablo@mathematik.uni-ulm.de>
614   *
615 - *  $Id$
616 + *  $Id$
617   *
618   *  This program is free software; you can redistribute it and/or
619   *  modify it under the terms of the GNU General Public
620 @@ -109,7 +109,7 @@
621      m_StitchButton = XRCCTRL(*this, "pano_button_stitch", wxButton);
622      DEBUG_ASSERT(m_StitchButton);
623  
624 -#ifdef USE_WX25x
625 +#ifdef USE_WX26x
626      m_pano_ctrls = XRCCTRL(*this, "pano_controls_panel", wxScrolledWindow);
627      DEBUG_ASSERT(m_pano_ctrls);
628      m_pano_ctrls->SetSizeHints(20, 20);
629 @@ -437,7 +437,7 @@
630                 m_Stitcher );
631      // redo layout.
632  //    Layout();
633 -#ifdef USE_WX25x
634 +#ifdef USE_WX26x
635      m_pano_ctrls->FitInside();
636  #endif
637  }
638 @@ -491,6 +491,10 @@
639  
640  void PanoPanel::DoStitch ( wxCommandEvent & e )
641  {
642 +    if (pano.getNrOfImages() == 0) {
643 +           wxMessageBox(_("No images - Nothing to do"),_("Warning"), wxOK | wxICON_EXCLAMATION);
644 +               return;
645 +       }
646      int preset = m_QuickChoice->GetSelection();
647      // apply preset mode. (recalculates width etc)
648      ApplyQuickMode(preset);
649 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/po/de.po hugin/src/hugin/po/de.po
650 --- hugin-0.5-beta4/src/hugin/po/de.po  2005-03-08 22:10:47.000000000 +0100
651 +++ hugin/src/hugin/po/de.po    2005-04-26 13:06:00.000000000 +0200
652 @@ -10,7 +10,7 @@
653  msgstr ""
654  "Project-Id-Version: de\n"
655  "Report-Msgid-Bugs-To: pablo.dangelo@web.de\n"
656 -"POT-Creation-Date: 2005-03-08 21:37+0100\n"
657 +"POT-Creation-Date: 2005-04-26 12:54+0300\n"
658  "PO-Revision-Date: 2005-03-08 22:02+0100\n"
659  "Last-Translator: Pablo d'Angelo <pablo.dangelo@mathematik.uni-ulm.de>\n"
660  "Language-Team: deutsch <de@li.org>\n"
661 @@ -22,73 +22,89 @@
662  "X-Poedit-Basepath: /home/pablo/src/my/hugin-0.4\n"
663  "X-Poedit-SearchPath-0: /home/pablo/src/my/hugin-0.4\n"
664  
665 -#: src/hugin/AutoCtrlPointCreator.cpp:87
666 +#: src/hugin/AutoCtrlPointCreator.cpp:92
667  #, c-format
668  msgid "Added %d control points"
669  msgstr "%d Kontrollpunkte hinzugefügt"
670  
671 -#: src/hugin/AutoCtrlPointCreator.cpp:87
672 +#: src/hugin/AutoCtrlPointCreator.cpp:92
673  msgid "Autopano result"
674  msgstr "Autopano Ergebnisse"
675  
676 -#: src/hugin/AutoCtrlPointCreator.cpp:102
677 +#: src/hugin/AutoCtrlPointCreator.cpp:107
678  msgid "Autopano (version 1.03 or greater), from http://autopano.kolor.com"
679  msgstr "Autopano (Version 1.03 oder höher) ,von http://autopano.kolor.com"
680  
681 -#: src/hugin/AutoCtrlPointCreator.cpp:103
682 +#: src/hugin/AutoCtrlPointCreator.cpp:108
683  msgid "Autopano-Sift, from http://user.cs.tu-berlin.de/~nowozin/autopano-sift/"
684  msgstr "Autopano-Sift, von http://user.cs.tu-berlin.de/~nowozin/autopano-sift/"
685  
686 -#: src/hugin/AutoCtrlPointCreator.cpp:105
687 +#: src/hugin/AutoCtrlPointCreator.cpp:110
688  msgid "Choose which autopano program should be used\n"
689  msgstr "Wählen sie welches Autopano Programm sie verwenden wollen\n"
690  
691 -#: src/hugin/AutoCtrlPointCreator.cpp:105
692 +#: src/hugin/AutoCtrlPointCreator.cpp:110
693  msgid "Select autopano type"
694  msgstr "Wählen sie den Autopano Typ"
695  
696 -#: src/hugin/AutoCtrlPointCreator.cpp:144
697 -#: src/hugin/AutoCtrlPointCreator.cpp:331
698 +#: src/hugin/AutoCtrlPointCreator.cpp:149
699 +#: src/hugin/AutoCtrlPointCreator.cpp:393
700  msgid "Select autopano program / frontend script"
701  msgstr "Wählen sie das Autopano Programm / Oberflächenskript"
702  
703 -#: src/hugin/AutoCtrlPointCreator.cpp:146
704 -#: src/hugin/PreferencesDialog.cpp:175
705 -#: src/hugin/PreferencesDialog.cpp:191
706 -#: src/hugin/PreferencesDialog.cpp:207
707 -#: src/hugin/PreferencesDialog.cpp:223
708 -#: src/hugin/RunOptimizerFrame.cpp:110
709 +#: src/hugin/AutoCtrlPointCreator.cpp:151 src/hugin/PreferencesDialog.cpp:175
710 +#: src/hugin/PreferencesDialog.cpp:191 src/hugin/PreferencesDialog.cpp:207
711 +#: src/hugin/PreferencesDialog.cpp:223 src/hugin/RunOptimizerFrame.cpp:111
712  #: src/hugin/RunStitcherFrame.cpp:89
713  msgid "Executables (*.exe)|*.exe"
714  msgstr "Ausführbar (*.exe)|*.exe"
715  
716 -#: src/hugin/AutoCtrlPointCreator.cpp:152
717 -#: src/hugin/AutoCtrlPointCreator.cpp:167
718 -#: src/hugin/AutoCtrlPointCreator.cpp:339
719 +#: src/hugin/AutoCtrlPointCreator.cpp:157
720 +#: src/hugin/AutoCtrlPointCreator.cpp:209
721 +#: src/hugin/AutoCtrlPointCreator.cpp:401
722  msgid "No autopano selected"
723  msgstr "Kein Autopano Programm ausgewählt"
724  
725 -#: src/hugin/AutoCtrlPointCreator.cpp:159
726 -msgid "Select autopano-sift frontend script"
727 +#: src/hugin/AutoCtrlPointCreator.cpp:201
728 +#, fuzzy
729 +msgid "Select autopano frontend script"
730  msgstr "Autopano-Sift auswählen"
731  
732 -#: src/hugin/AutoCtrlPointCreator.cpp:205
733 +#: src/hugin/AutoCtrlPointCreator.cpp:203
734 +msgid "Shell Scripts (*.sh)|*.sh"
735 +msgstr ""
736 +
737 +#: src/hugin/AutoCtrlPointCreator.cpp:248
738  #, c-format
739  msgid "Please use either %namefile or %i in the autopano-sift command line."
740 -msgstr "Bitte benutzen sie entweder %namefile oder %i in der Autopano-Sift Kommandozeile"
741 +msgstr ""
742 +"Bitte benutzen sie entweder %namefile oder %i in der Autopano-Sift "
743 +"Kommandozeile"
744  
745 -#: src/hugin/AutoCtrlPointCreator.cpp:206
746 -#: src/hugin/AutoCtrlPointCreator.cpp:211
747 +#: src/hugin/AutoCtrlPointCreator.cpp:249
748 +#: src/hugin/AutoCtrlPointCreator.cpp:254
749  msgid "Error in Autopano command"
750  msgstr "Fehler im Autopano Kommando"
751  
752 -#: src/hugin/AutoCtrlPointCreator.cpp:210
753 +#: src/hugin/AutoCtrlPointCreator.cpp:253
754  #, c-format
755 -msgid "Please use  %namefile or %i to specify the input files for autopano-sift"
756 -msgstr "Bitte benutzen sie %namefile oder %i für die Eingabedatei von Autopano-Sift"
757 +msgid ""
758 +"Please use  %namefile or %i to specify the input files for autopano-sift"
759 +msgstr ""
760 +"Bitte benutzen sie %namefile oder %i für die Eingabedatei von Autopano-Sift"
761 +
762 +#: src/hugin/AutoCtrlPointCreator.cpp:288
763 +#, fuzzy
764 +msgid "Select autopano .Net executable."
765 +msgstr "Wählen sie den Autopano Typ"
766  
767 -#: src/hugin/AutoCtrlPointCreator.cpp:243
768 -#: src/hugin/AutoCtrlPointCreator.cpp:377
769 +#: src/hugin/AutoCtrlPointCreator.cpp:297
770 +#, fuzzy
771 +msgid "No autopano directory selected"
772 +msgstr "Kein Autopano Programm ausgewählt"
773 +
774 +#: src/hugin/AutoCtrlPointCreator.cpp:305
775 +#: src/hugin/AutoCtrlPointCreator.cpp:439
776  msgid ""
777  "autopano command line too long.\n"
778  "This is a windows limitation\n"
779 @@ -100,19 +116,18 @@
780  "Bitte wählen sie weniger Bilder oder plazieren sie die Bilder in einem\n"
781  "Ordner mit einem kürzeren Pfadnamen"
782  
783 -#: src/hugin/AutoCtrlPointCreator.cpp:244
784 -#: src/hugin/AutoCtrlPointCreator.cpp:378
785 -#: src/hugin/NonaStitcherPanel.cpp:348
786 +#: src/hugin/AutoCtrlPointCreator.cpp:306
787 +#: src/hugin/AutoCtrlPointCreator.cpp:440 src/hugin/NonaStitcherPanel.cpp:350
788  msgid "Too many images selected"
789  msgstr "Zu viele Bilder ausgewählt"
790  
791 -#: src/hugin/AutoCtrlPointCreator.cpp:253
792 -#: src/hugin/AutoCtrlPointCreator.cpp:385
793 +#: src/hugin/AutoCtrlPointCreator.cpp:315
794 +#: src/hugin/AutoCtrlPointCreator.cpp:447
795  msgid "Running autopano"
796  msgstr "Starte Autopano"
797  
798 -#: src/hugin/AutoCtrlPointCreator.cpp:253
799 -#: src/hugin/AutoCtrlPointCreator.cpp:385
800 +#: src/hugin/AutoCtrlPointCreator.cpp:315
801 +#: src/hugin/AutoCtrlPointCreator.cpp:447
802  msgid ""
803  "Please wait while autopano searches control points\n"
804  "See the command window for autopanos' progress"
805 @@ -120,35 +135,31 @@
806  "Bitte warten sie, während Autopano die Kontrollpunkte sucht\n"
807  "Der Fortschritt kann im Kommando Fenster beobachtet werden."
808  
809 -#: src/hugin/AutoCtrlPointCreator.cpp:282
810 -#: src/hugin/AutoCtrlPointCreator.cpp:295
811 -#: src/hugin/AutoCtrlPointCreator.cpp:400
812 -#: src/hugin/NonaStitcherPanel.cpp:388
813 -#: src/hugin/NonaStitcherPanel.cpp:396
814 +#: src/hugin/AutoCtrlPointCreator.cpp:344
815 +#: src/hugin/AutoCtrlPointCreator.cpp:357
816 +#: src/hugin/AutoCtrlPointCreator.cpp:462 src/hugin/NonaStitcherPanel.cpp:392
817 +#: src/hugin/NonaStitcherPanel.cpp:401
818  msgid "Could not execute command: "
819  msgstr "Kann den Befehl nicht ausführen:"
820  
821 -#: src/hugin/AutoCtrlPointCreator.cpp:282
822 +#: src/hugin/AutoCtrlPointCreator.cpp:344
823  msgid "ShellExecuteEx failed"
824  msgstr "ShellExecuteEx fehlgeschlagen"
825  
826 -#: src/hugin/AutoCtrlPointCreator.cpp:295
827 -#: src/hugin/AutoCtrlPointCreator.cpp:300
828 -#: src/hugin/AutoCtrlPointCreator.cpp:400
829 -#: src/hugin/AutoCtrlPointCreator.cpp:406
830 -#: src/hugin/NonaStitcherPanel.cpp:396
831 +#: src/hugin/AutoCtrlPointCreator.cpp:357
832 +#: src/hugin/AutoCtrlPointCreator.cpp:362
833 +#: src/hugin/AutoCtrlPointCreator.cpp:462
834 +#: src/hugin/AutoCtrlPointCreator.cpp:468 src/hugin/NonaStitcherPanel.cpp:401
835  msgid "wxExecute Error"
836  msgstr "wxExecute Error, externes Programm kann nicht ausgeführt werden"
837  
838 -#: src/hugin/AutoCtrlPointCreator.cpp:298
839 -#: src/hugin/AutoCtrlPointCreator.cpp:404
840 -#: src/hugin/NonaStitcherPanel.cpp:399
841 +#: src/hugin/AutoCtrlPointCreator.cpp:360
842 +#: src/hugin/AutoCtrlPointCreator.cpp:466 src/hugin/NonaStitcherPanel.cpp:404
843  msgid "command: "
844  msgstr "Kommando:"
845  
846 -#: src/hugin/AutoCtrlPointCreator.cpp:299
847 -#: src/hugin/AutoCtrlPointCreator.cpp:405
848 -#: src/hugin/NonaStitcherPanel.cpp:400
849 +#: src/hugin/AutoCtrlPointCreator.cpp:361
850 +#: src/hugin/AutoCtrlPointCreator.cpp:467 src/hugin/NonaStitcherPanel.cpp:405
851  msgid ""
852  "\n"
853  "failed with error code: "
854 @@ -156,13 +167,13 @@
855  "\n"
856  "Fehlgeschlagen mit Fehlerkode:"
857  
858 -#: src/hugin/AutoCtrlPointCreator.cpp:306
859 -#: src/hugin/AutoCtrlPointCreator.cpp:413
860 +#: src/hugin/AutoCtrlPointCreator.cpp:368
861 +#: src/hugin/AutoCtrlPointCreator.cpp:475
862  msgid "Could not open "
863  msgstr "Konnte nicht Ã¶ffnen"
864  
865 -#: src/hugin/AutoCtrlPointCreator.cpp:306
866 -#: src/hugin/AutoCtrlPointCreator.cpp:413
867 +#: src/hugin/AutoCtrlPointCreator.cpp:368
868 +#: src/hugin/AutoCtrlPointCreator.cpp:475
869  msgid ""
870  " for reading\n"
871  "This is an indicator that the autopano call failed,\n"
872 @@ -176,17 +187,16 @@
873  "\n"
874  "Autopano Kommando:"
875  
876 -#: src/hugin/AutoCtrlPointCreator.cpp:307
877 -#: src/hugin/AutoCtrlPointCreator.cpp:416
878 +#: src/hugin/AutoCtrlPointCreator.cpp:369
879 +#: src/hugin/AutoCtrlPointCreator.cpp:478
880  msgid "autopano failure"
881  msgstr "Autopano Fehler"
882  
883 -#: src/hugin/AutoCtrlPointCreator.cpp:333
884 -#: src/hugin/PreferencesDialog.cpp:239
885 +#: src/hugin/AutoCtrlPointCreator.cpp:395 src/hugin/PreferencesDialog.cpp:239
886  msgid "Executables (*.exe,*.vbs,*.cmd)|*.exe;*.vbs;*.cmd"
887  msgstr "Ausführbare (*.exe,*.vbs,*.cmd)|*.exe;*.vbs;*.cmd"
888  
889 -#: src/hugin/AutoCtrlPointCreator.cpp:414
890 +#: src/hugin/AutoCtrlPointCreator.cpp:476
891  msgid ""
892  "\n"
893  " current directory:"
894 @@ -202,10 +212,8 @@
895  msgid "no command in redo history"
896  msgstr "Kein Kommando im Wiederherstellenprotokoll"
897  
898 -#: src/hugin/CPEditorPanel.cpp:146
899 -#: src/hugin/CPListFrame.cpp:276
900 -#: src/hugin/CPListFrame.cpp:286
901 -#: src/hugin/ImagesList.cpp:52
902 +#: src/hugin/CPEditorPanel.cpp:146 src/hugin/CPListFrame.cpp:276
903 +#: src/hugin/CPListFrame.cpp:286 src/hugin/ImagesList.cpp:52
904  msgid "#"
905  msgstr "#"
906  
907 @@ -225,46 +233,46 @@
908  msgid "right y"
909  msgstr "y rechts"
910  
911 -#: src/hugin/CPEditorPanel.cpp:151
912 -#: src/hugin/CPListFrame.cpp:283
913 +#: src/hugin/CPEditorPanel.cpp:151 src/hugin/CPListFrame.cpp:283
914  #: src/hugin/CPListFrame.cpp:289
915  msgid "Alignment"
916  msgstr "Ausrichtung"
917  
918 -#: src/hugin/CPEditorPanel.cpp:152
919 -#: src/hugin/CPListFrame.cpp:284
920 +#: src/hugin/CPEditorPanel.cpp:152 src/hugin/CPListFrame.cpp:284
921  #: src/hugin/CPListFrame.cpp:290
922  msgid "Distance"
923  msgstr "Abstand"
924  
925 -#: src/hugin/CPEditorPanel.cpp:406
926 +#: src/hugin/CPEditorPanel.cpp:405
927  msgid "No corresponding point found"
928  msgstr "Kein korrespondierender Punkt gefunden"
929  
930 -#: src/hugin/CPEditorPanel.cpp:475
931 +#: src/hugin/CPEditorPanel.cpp:474
932  msgid "new control point added"
933  msgstr "Neuer Kontrollpunkt hinzugefügt"
934  
935 -#: src/hugin/CPEditorPanel.cpp:575
936 -#: src/hugin/CPEditorPanel.cpp:781
937 +#: src/hugin/CPEditorPanel.cpp:574 src/hugin/CPEditorPanel.cpp:780
938  msgid "searching similar point..."
939  msgstr "Suche Ã¤hnlichen Punkt..."
940  
941 -#: src/hugin/CPEditorPanel.cpp:594
942 -#: src/hugin/CPEditorPanel.cpp:709
943 +#: src/hugin/CPEditorPanel.cpp:593 src/hugin/CPEditorPanel.cpp:708
944  msgid "Error during Fine-tune"
945  msgstr "Fehler während der Feinabstimmung"
946  
947 -#: src/hugin/CPEditorPanel.cpp:625
948 +#: src/hugin/CPEditorPanel.cpp:624
949  msgid "Estimated point outside image"
950  msgstr "Geschätzter Punkt außerhalb des Bildes"
951  
952 -#: src/hugin/CPEditorPanel.cpp:827
953 +#: src/hugin/CPEditorPanel.cpp:826
954  #, c-format
955 -msgid "Point finetuned, angle: %.0f deg, correlation coefficient: %0.3f, curvature: %0.3f %0.3f "
956 -msgstr "Punkt verfeinert, Winkel: %.0f Â°, Korrelationskoeffizient: %0.3f, Krümmung: %0.3f %0.3f "
957 +msgid ""
958 +"Point finetuned, angle: %.0f deg, correlation coefficient: %0.3f, curvature: "
959 +"%0.3f %0.3f "
960 +msgstr ""
961 +"Punkt verfeinert, Winkel: %.0f Â°, Korrelationskoeffizient: %0.3f, Krümmung: %"
962 +"0.3f %0.3f "
963  
964 -#: src/hugin/CPEditorPanel.cpp:833
965 +#: src/hugin/CPEditorPanel.cpp:832
966  #, c-format
967  msgid ""
968  "No similar point found.\n"
969 @@ -275,40 +283,36 @@
970  "Korrelationskoeffizient: %.3f (sollte > %.3f)\n"
971  "Größte Krümmung: (%.3f, %.3f) ( sollte > %.3f)"
972  
973 -#: src/hugin/CPEditorPanel.cpp:835
974 +#: src/hugin/CPEditorPanel.cpp:834
975  msgid "No similar point found"
976  msgstr "Keinen Ã¤hnlichen Punkt gefunden"
977  
978 -#: src/hugin/CPEditorPanel.cpp:1151
979 -#: src/hugin/CPListFrame.cpp:402
980 -#: src/hugin/PreviewFrame.cpp:156
981 -#: src/hugin/xrc/cp_editor_panel.xrs:24
982 +#: src/hugin/CPEditorPanel.cpp:1150 src/hugin/CPListFrame.cpp:402
983 +#: src/hugin/PreviewFrame.cpp:156 src/hugin/xrc/cp_editor_panel.xrs:24
984  msgid "normal"
985  msgstr "normal"
986  
987 -#: src/hugin/CPEditorPanel.cpp:1154
988 -#: src/hugin/CPListFrame.cpp:405
989 +#: src/hugin/CPEditorPanel.cpp:1153 src/hugin/CPListFrame.cpp:405
990  msgid "vert. Line"
991  msgstr "vert. Linie"
992  
993 -#: src/hugin/CPEditorPanel.cpp:1157
994 -#: src/hugin/CPListFrame.cpp:408
995 +#: src/hugin/CPEditorPanel.cpp:1156 src/hugin/CPListFrame.cpp:408
996  msgid "horiz. Line"
997  msgstr "horiz. Linie"
998  
999 -#: src/hugin/CPEditorPanel.cpp:1412
1000 +#: src/hugin/CPEditorPanel.cpp:1411
1001  msgid "Cannot estimate image position without control points"
1002  msgstr "Bildposition kann ohne Kontrollpunkte nicht geschätzt werden"
1003  
1004 -#: src/hugin/CPEditorPanel.cpp:1603
1005 +#: src/hugin/CPEditorPanel.cpp:1602
1006  msgid "Select Point in right image"
1007  msgstr "Punkt im rechten Bild wählen"
1008  
1009 -#: src/hugin/CPEditorPanel.cpp:1615
1010 +#: src/hugin/CPEditorPanel.cpp:1614
1011  msgid "Select Point in left image"
1012  msgstr "Punkt im linken Bild wählen"
1013  
1014 -#: src/hugin/CPEditorPanel.cpp:1634
1015 +#: src/hugin/CPEditorPanel.cpp:1633
1016  msgid "change points, or press right mouse button to add the pair"
1017  msgstr "Punkte wechseln oder mit der rechten Maustaste ein Paar hinzufügen"
1018  
1019 @@ -320,28 +324,23 @@
1020  msgid "Could not process event!"
1021  msgstr "Interner Fehler: Konnte Ereignis nicht verarbeiten"
1022  
1023 -#: src/hugin/CPListFrame.cpp:277
1024 -#: src/hugin/CPListFrame.cpp:287
1025 +#: src/hugin/CPListFrame.cpp:277 src/hugin/CPListFrame.cpp:287
1026  msgid "left Img."
1027  msgstr "linkes Bild"
1028  
1029 -#: src/hugin/CPListFrame.cpp:278
1030 -#: src/hugin/CPListFrame.cpp:281
1031 +#: src/hugin/CPListFrame.cpp:278 src/hugin/CPListFrame.cpp:281
1032  msgid "x"
1033  msgstr "x"
1034  
1035 -#: src/hugin/CPListFrame.cpp:279
1036 -#: src/hugin/CPListFrame.cpp:282
1037 +#: src/hugin/CPListFrame.cpp:279 src/hugin/CPListFrame.cpp:282
1038  msgid "y"
1039  msgstr "y"
1040  
1041 -#: src/hugin/CPListFrame.cpp:280
1042 -#: src/hugin/CPListFrame.cpp:288
1043 +#: src/hugin/CPListFrame.cpp:280 src/hugin/CPListFrame.cpp:288
1044  msgid "right Img."
1045  msgstr "rechtes Bild"
1046  
1047 -#: src/hugin/CPListFrame.cpp:605
1048 -#: src/hugin/CPListFrame.cpp:614
1049 +#: src/hugin/CPListFrame.cpp:605 src/hugin/CPListFrame.cpp:614
1050  msgid ""
1051  "Enter minimum control point error.\n"
1052  "All point with a higher error will be selected"
1053 @@ -349,8 +348,7 @@
1054  "Kleinster zulässiger Kontrollpunktfehler eingeben\n"
1055  "Alle Punkte mit höherem Fehler werden ausgewählt"
1056  
1057 -#: src/hugin/CPListFrame.cpp:605
1058 -#: src/hugin/CPListFrame.cpp:614
1059 +#: src/hugin/CPListFrame.cpp:605 src/hugin/CPListFrame.cpp:614
1060  msgid "Select Control Points"
1061  msgstr "Kontrollpunkte auswählen"
1062  
1063 @@ -406,8 +404,7 @@
1064  msgid "Bottom:"
1065  msgstr "Unten:"
1066  
1067 -#: src/hugin/ImageCenter.cpp:100
1068 -#: src/hugin/xrc/images_panel.xrs:31
1069 +#: src/hugin/ImageCenter.cpp:100 src/hugin/xrc/images_panel.xrs:31
1070  msgid "Reset"
1071  msgstr "Zurücksetzen"
1072  
1073 @@ -415,10 +412,17 @@
1074  msgid "Always center Crop on d,e"
1075  msgstr "Zuschnitt immer auf d,e zentrieren."
1076  
1077 -#: src/hugin/ImageCenter.cpp:207
1078 -#: src/hugin/ImageCenter.cpp:222
1079 -#: src/hugin/ImageCenter.cpp:237
1080 -#: src/hugin/ImageCenter.cpp:252
1081 +#: src/hugin/ImageCenter.cpp:105 src/hugin/xrc/pref_dialog.xrs:68
1082 +msgid "Ok"
1083 +msgstr "Ok"
1084 +
1085 +#: src/hugin/ImageCenter.cpp:110 src/hugin/RunOptimizerFrame.cpp:310
1086 +#: src/hugin/xrc/edit_text.xrs:3 src/hugin/xrc/pref_dialog.xrs:70
1087 +msgid "Cancel"
1088 +msgstr "Abbrechen"
1089 +
1090 +#: src/hugin/ImageCenter.cpp:207 src/hugin/ImageCenter.cpp:222
1091 +#: src/hugin/ImageCenter.cpp:237 src/hugin/ImageCenter.cpp:252
1092  msgid "Please enter a valid number"
1093  msgstr "Bitte eine Nummer eingeben"
1094  
1095 @@ -427,8 +431,7 @@
1096  msgid "Yaw: %.1f Pitch:%.1f Roll:%.1f"
1097  msgstr "Yaw: %.1f Neigung:%.1f Rollen:%.1f"
1098  
1099 -#: src/hugin/ImagesList.cpp:232
1100 -#: src/hugin/ImagesList.cpp:280
1101 +#: src/hugin/ImagesList.cpp:232 src/hugin/ImagesList.cpp:280
1102  msgid "Filename"
1103  msgstr "Dateiname"
1104  
1105 @@ -504,86 +507,76 @@
1106  msgid "Crop"
1107  msgstr "Crop"
1108  
1109 -#: src/hugin/ImagesList.cpp:305
1110 -#: src/hugin/xrc/lens_panel.xrs:2
1111 +#: src/hugin/ImagesList.cpp:305 src/hugin/xrc/lens_panel.xrs:2
1112  msgid "Normal (rectilinear)"
1113  msgstr "Normal (rectilinear)"
1114  
1115 -#: src/hugin/ImagesList.cpp:306
1116 -#: src/hugin/xrc/lens_panel.xrs:3
1117 +#: src/hugin/ImagesList.cpp:306 src/hugin/xrc/lens_panel.xrs:3
1118  msgid "Panoramic (cylindrical)"
1119  msgstr "Zylindrisch"
1120  
1121 -#: src/hugin/ImagesList.cpp:307
1122 -#: src/hugin/xrc/lens_panel.xrs:4
1123 +#: src/hugin/ImagesList.cpp:307 src/hugin/xrc/lens_panel.xrs:4
1124  msgid "Circular fisheye"
1125  msgstr "Fischauge kreisförmig"
1126  
1127 -#: src/hugin/ImagesList.cpp:308
1128 -#: src/hugin/xrc/lens_panel.xrs:5
1129 +#: src/hugin/ImagesList.cpp:308 src/hugin/xrc/lens_panel.xrs:5
1130  msgid "Full frame fisheye"
1131  msgstr "Fischauge Vollbild"
1132  
1133 -#: src/hugin/ImagesList.cpp:309
1134 -#: src/hugin/PanoPanel.cpp:195
1135 -#: src/hugin/PreviewFrame.cpp:413
1136 -#: src/hugin/xrc/lens_panel.xrs:6
1137 +#: src/hugin/ImagesList.cpp:309 src/hugin/PanoPanel.cpp:195
1138 +#: src/hugin/PreviewFrame.cpp:413 src/hugin/xrc/lens_panel.xrs:6
1139  msgid "Equirectangular"
1140  msgstr "Sphärisch (equirectangular)"
1141  
1142 -#: src/hugin/ImagesPanel.cpp:271
1143 -#: src/hugin/ImagesPanel.cpp:292
1144 -#: src/hugin/ImagesPanel.cpp:312
1145 +#: src/hugin/ImagesPanel.cpp:270 src/hugin/ImagesPanel.cpp:291
1146 +#: src/hugin/ImagesPanel.cpp:311
1147  msgid "Value must be numeric."
1148  msgstr "Wert muß numerisch sein"
1149  
1150 -#: src/hugin/ImagesPanel.cpp:563
1151 +#: src/hugin/ImagesPanel.cpp:562
1152  #, c-format
1153  msgid "Really Delete %d control points?"
1154  msgstr "%d Kontrollpunkte wirklich löschen?"
1155  
1156 -#: src/hugin/ImagesPanel.cpp:565
1157 +#: src/hugin/ImagesPanel.cpp:564
1158  msgid "Delete Control Points"
1159  msgstr "Kontrollpunkte löschen"
1160  
1161 -#: src/hugin/LensPanel.cpp:649
1162 +#: src/hugin/LensPanel.cpp:650
1163  msgid "Not a jpeg file:"
1164  msgstr "Kein JPEG Bild"
1165  
1166 -#: src/hugin/LensPanel.cpp:654
1167 -#: src/hugin/LensPanel.cpp:708
1168 -#: src/hugin/LensPanel.cpp:784
1169 -#: src/hugin/LensPanel.cpp:800
1170 -#: src/hugin/LensPanel.cpp:818
1171 +#: src/hugin/LensPanel.cpp:655 src/hugin/LensPanel.cpp:709
1172 +#: src/hugin/LensPanel.cpp:785 src/hugin/LensPanel.cpp:801
1173 +#: src/hugin/LensPanel.cpp:819
1174  msgid "Please select an image and try again"
1175  msgstr "Bitte Bild auswählen und erneut versuchen"
1176  
1177 -#: src/hugin/LensPanel.cpp:672
1178 +#: src/hugin/LensPanel.cpp:673
1179  msgid "Save lens parameters file"
1180  msgstr "Objektivparameter speichern"
1181  
1182 -#: src/hugin/LensPanel.cpp:674
1183 -#: src/hugin/LensPanel.cpp:724
1184 +#: src/hugin/LensPanel.cpp:675 src/hugin/LensPanel.cpp:725
1185  msgid "Lens Project Files (*.ini)|*.ini|All files (*.*)|*.*"
1186  msgstr "Objektiv Projekt Datei (*.ini)|*.ini|Alle Dateien (*.*)|*.*"
1187  
1188 -#: src/hugin/LensPanel.cpp:722
1189 +#: src/hugin/LensPanel.cpp:723
1190  msgid "Load lens parameters"
1191  msgstr "Objektivparameter laden"
1192  
1193 -#: src/hugin/LensPanel.cpp:808
1194 +#: src/hugin/LensPanel.cpp:809
1195  msgid "Enter new lens number"
1196  msgstr "Neue Objektivnummer eingeben"
1197  
1198 -#: src/hugin/LensPanel.cpp:808
1199 +#: src/hugin/LensPanel.cpp:809
1200  msgid "Lens number"
1201  msgstr "Objektiv Nr."
1202  
1203 -#: src/hugin/LensPanel.cpp:809
1204 +#: src/hugin/LensPanel.cpp:810
1205  msgid "Change lens number"
1206  msgstr "Objektivnummer Ã¤ndern"
1207  
1208 -#: src/hugin/LensPanel.cpp:833
1209 +#: src/hugin/LensPanel.cpp:834
1210  msgid ""
1211  "Enter Crop Factor for image\n"
1212  "\n"
1213 @@ -597,9 +590,10 @@
1214  "Der Verlängerungsfaktor c wird mit\n"
1215  "c = 43.3 / d\n"
1216  "\n"
1217 -"berechnet, wobei d die Diagonale des Films oder Bildaufnahmechips in mm angibt."
1218 +"berechnet, wobei d die Diagonale des Films oder Bildaufnahmechips in mm "
1219 +"angibt."
1220  
1221 -#: src/hugin/LensPanel.cpp:834
1222 +#: src/hugin/LensPanel.cpp:835
1223  msgid "Adding Image"
1224  msgstr "Bild hinzufügen"
1225  
1226 @@ -633,101 +627,123 @@
1227  msgid "forced close"
1228  msgstr "Erzwungenes Beenden"
1229  
1230 -#: src/hugin/MainFrame.cpp:491
1231 +#: src/hugin/MainFrame.cpp:476 src/hugin/MainFrame.cpp:504
1232 +#: src/hugin/MainFrame.cpp:523 src/hugin/PanoPanel.cpp:495
1233 +msgid "No images - Nothing to do"
1234 +msgstr ""
1235 +
1236 +#: src/hugin/MainFrame.cpp:476 src/hugin/MainFrame.cpp:504
1237 +#: src/hugin/MainFrame.cpp:523 src/hugin/PanoPanel.cpp:495
1238 +msgid "Warning"
1239 +msgstr ""
1240 +
1241 +#: src/hugin/MainFrame.cpp:495
1242  #, c-format
1243  msgid "saved project %s"
1244  msgstr "Projekt speichern unter %s"
1245  
1246 -#: src/hugin/MainFrame.cpp:500
1247 +#: src/hugin/MainFrame.cpp:508
1248  msgid "Save project file"
1249  msgstr "Projekt speichern"
1250  
1251 -#: src/hugin/MainFrame.cpp:502
1252 +#: src/hugin/MainFrame.cpp:510
1253  msgid "Project files (*.pto)|*.pto|All files (*.*)|*.*"
1254  msgstr "Projekt Dateien (*.pto)|*.pto|Alle Dateien (*.*)|*.*"
1255  
1256 -#: src/hugin/MainFrame.cpp:515
1257 +#: src/hugin/MainFrame.cpp:527
1258  msgid "Save PTStitcher script file"
1259  msgstr "PTStitcher Skript Datei speichern"
1260  
1261 -#: src/hugin/MainFrame.cpp:517
1262 +#: src/hugin/MainFrame.cpp:529
1263  msgid "PTStitcher files (*.txt)|*.txt"
1264  msgstr "PTStitcher Dateien (*.txt)|*.txt"
1265  
1266 -#: src/hugin/MainFrame.cpp:543
1267 +#: src/hugin/MainFrame.cpp:555
1268  msgid "Open project:   "
1269  msgstr "Projekt Ã¶ffnen:   "
1270  
1271 -#: src/hugin/MainFrame.cpp:555
1272 +#: src/hugin/MainFrame.cpp:567
1273  msgid "Project opened"
1274  msgstr "Projektdatei geöffnet"
1275  
1276 -#: src/hugin/MainFrame.cpp:565
1277 +#: src/hugin/MainFrame.cpp:577
1278  msgid "Error opening project:   "
1279  msgstr "Fehler beim Ã¶ffnen des Projekt:"
1280  
1281 -#: src/hugin/MainFrame.cpp:583
1282 +#: src/hugin/MainFrame.cpp:595
1283  msgid "Open project file"
1284  msgstr "Projekt Datei Ã¶ffnen"
1285  
1286 -#: src/hugin/MainFrame.cpp:585
1287 -msgid "Project files (*.pto,*.ptp,*.pts,*.oto)|*.pto;*.ptp;*.pts;*.oto;|All files (*.*)|*.*"
1288 -msgstr "Projekt Dateien (*.pto,*.ptp,*.pts,*.oto)|*.pto;*.ptp;*.pts;*.oto;|Alle Dateien (*.*)|*.*"
1289 +#: src/hugin/MainFrame.cpp:597
1290 +msgid ""
1291 +"Project files (*.pto,*.ptp,*.pts,*.oto)|*.pto;*.ptp;*.pts;*.oto;|All files "
1292 +"(*.*)|*.*"
1293 +msgstr ""
1294 +"Projekt Dateien (*.pto,*.ptp,*.pts,*.oto)|*.pto;*.ptp;*.pts;*.oto;|Alle "
1295 +"Dateien (*.*)|*.*"
1296  
1297 -#: src/hugin/MainFrame.cpp:593
1298 +#: src/hugin/MainFrame.cpp:605
1299  msgid "Open project: cancel"
1300  msgstr "Projekt Ã¶ffnen: Abbrechen"
1301  
1302 -#: src/hugin/MainFrame.cpp:615
1303 -#: src/include/hugin/wxPanoCommand.h:169
1304 -msgid "Image files (*.jpg)|*.jpg;*.JPG|Image files (*.png)|*.png;*.PNG|Image files (*.tif)|*.tif;*.TIF|All files (*.*)|*.*"
1305 -msgstr "Bilddateien (*.jpg)|*.jpg;*.JPG|Bilddateien (*.png)|*.png;*.PNG|Bilddateien (*.tif)|*.tif;*.TIF|Alle Dateien (*.*)|*."
1306 +#: src/hugin/MainFrame.cpp:627 src/include/hugin/wxPanoCommand.h:169
1307 +msgid ""
1308 +"Image files (*.jpg)|*.jpg;*.JPG|Image files (*.png)|*.png;*.PNG|Image files "
1309 +"(*.tif)|*.tif;*.TIF|All files (*.*)|*.*"
1310 +msgstr ""
1311 +"Bilddateien (*.jpg)|*.jpg;*.JPG|Bilddateien (*.png)|*.png;*.PNG|Bilddateien "
1312 +"(*.tif)|*.tif;*.TIF|Alle Dateien (*.*)|*."
1313  
1314 -#: src/hugin/MainFrame.cpp:616
1315 -#: src/include/hugin/wxPanoCommand.h:170
1316 +#: src/hugin/MainFrame.cpp:628 src/include/hugin/wxPanoCommand.h:170
1317  msgid "Add images"
1318  msgstr "Bilder hinzufügen"
1319  
1320 -#: src/hugin/MainFrame.cpp:660
1321 +#: src/hugin/MainFrame.cpp:672
1322  msgid "Add Image: cancel"
1323  msgstr "Bilder hinzufügen: abgebrochen"
1324  
1325 -#: src/hugin/MainFrame.cpp:985
1326 +#: src/hugin/MainFrame.cpp:997
1327  msgid "hugin - FAQ"
1328  msgstr "hugin - FAQ"
1329  
1330 -#: src/hugin/MainFrame.cpp:1064
1331 +#: src/hugin/MainFrame.cpp:1076
1332  msgid "Fine-tuning all points"
1333  msgstr "Alle Kontrollpunkt verfeinern"
1334  
1335 -#: src/hugin/MainFrame.cpp:1066
1336 +#: src/hugin/MainFrame.cpp:1078
1337  msgid "Finetuning"
1338  msgstr "Verfeinern"
1339  
1340 -#: src/hugin/MainFrame.cpp:1150
1341 +#: src/hugin/MainFrame.cpp:1162
1342  #, c-format
1343  msgid ""
1344  "%d points fine-tuned, %d points not updated due to low correlation\n"
1345  "\n"
1346 -"Hint: The errors of the fine-tuned points have been set to the, correlation coefficient\n"
1347 +"Hint: The errors of the fine-tuned points have been set to the, correlation "
1348 +"coefficient\n"
1349  "Problematic point can be spotted (just after fine-tune, before optimizing)\n"
1350  "by an error <= %.3f.\n"
1351 -"The error of points without a well defined peak (typically in regions with uniform color)\n"
1352 +"The error of points without a well defined peak (typically in regions with "
1353 +"uniform color)\n"
1354  "will be set to 0\n"
1355  "\n"
1356  "Use the Control Point list (F3) to see all point of the current project\n"
1357  msgstr ""
1358 -"%d Punkte verfeinert, %d Punkt wurden aufgrund niedriger Korrelation nicht aktualisiert\n"
1359 +"%d Punkte verfeinert, %d Punkt wurden aufgrund niedriger Korrelation nicht "
1360 +"aktualisiert\n"
1361  "\n"
1362 -"Hinweis: Der Fehler der verfeinerten Punkte wurde auf Korrelationskoeffizient gesetzt.\n"
1363 +"Hinweis: Der Fehler der verfeinerten Punkte wurde auf "
1364 +"Korrelationskoeffizient gesetzt.\n"
1365  "Problematische Punkte können nach dem Verfeinern, aber vor der Optimierung\n"
1366  "durch den Fehler <= %f. ermittelt werden.\n"
1367 -"Die Fehlerpunkt ohne definierten Wert (typischerweise in Regionen mit einheitlicher Farbe)\n"
1368 +"Die Fehlerpunkt ohne definierten Wert (typischerweise in Regionen mit "
1369 +"einheitlicher Farbe)\n"
1370  "werden auf 0 gesetzt\n"
1371  "\n"
1372 -"Benutze die Kontrollliste (F3) um alle Punkte des aktuellen Projekts zu sehen\n"
1373 +"Benutze die Kontrollliste (F3) um alle Punkte des aktuellen Projekts zu "
1374 +"sehen\n"
1375  
1376 -#: src/hugin/MainFrame.cpp:1152
1377 +#: src/hugin/MainFrame.cpp:1164
1378  msgid "Fine-tune result"
1379  msgstr "Verfeinerungsergebnis"
1380  
1381 @@ -773,23 +789,24 @@
1382  msgid "No enblend commandline tool selected"
1383  msgstr "Kein Enblend Kommando ausgewählt"
1384  
1385 -#: src/hugin/NonaStitcherPanel.cpp:347
1386 +#: src/hugin/NonaStitcherPanel.cpp:349
1387  msgid ""
1388  "Can not call enblend with a command line > 2000 characters.\n"
1389  "This is a Windows limitiation\n"
1390  "Please use less images, or place the images in a folder with\n"
1391  "a shorter pathname"
1392  msgstr ""
1393 -"Es ist nicht möglich Enblend mit Argumenten länger als 2000 Zeichenaufzurufen.\n"
1394 +"Es ist nicht möglich Enblend mit Argumenten länger als 2000 "
1395 +"Zeichenaufzurufen.\n"
1396  "Dies ist ein Begrenzung von Microsoft Windows\n"
1397  "Bitte wählen sie weniger Bilder oder plazieren sie die Bilder in einem\n"
1398  "Ordner mit einem kürzeren Pfadnamen"
1399  
1400 -#: src/hugin/NonaStitcherPanel.cpp:353
1401 +#: src/hugin/NonaStitcherPanel.cpp:355
1402  msgid "Running Enblend"
1403  msgstr "Starte Enblend"
1404  
1405 -#: src/hugin/NonaStitcherPanel.cpp:353
1406 +#: src/hugin/NonaStitcherPanel.cpp:355
1407  msgid ""
1408  "Enblend will take a while to finish processing the panorama\n"
1409  "You can watch the enblend progress in the command window"
1410 @@ -797,7 +814,7 @@
1411  "Enblend wird einige Zeit für das Panorama benötigen\n"
1412  "Sie können den Fortschritt im Kommandofenster beobachten"
1413  
1414 -#: src/hugin/NonaStitcherPanel.cpp:359
1415 +#: src/hugin/NonaStitcherPanel.cpp:363
1416  msgid ""
1417  "Could not execute enblend, system() failed: \n"
1418  "Command was :"
1419 @@ -805,15 +822,15 @@
1420  "Enblend konnte nicht ausgeführt werden, system() Aufruf fehlgeschlagen:\n"
1421  "Kommando :"
1422  
1423 -#: src/hugin/NonaStitcherPanel.cpp:360
1424 +#: src/hugin/NonaStitcherPanel.cpp:364
1425  msgid "Error returned was :"
1426  msgstr "Fehler:"
1427  
1428 -#: src/hugin/NonaStitcherPanel.cpp:388
1429 +#: src/hugin/NonaStitcherPanel.cpp:392
1430  msgid "CreateProcess Error"
1431  msgstr "CreateProccess() meldete einen Fehler zurück"
1432  
1433 -#: src/hugin/NonaStitcherPanel.cpp:401
1434 +#: src/hugin/NonaStitcherPanel.cpp:406
1435  msgid "enblend error"
1436  msgstr "Enblend Fehler"
1437  
1438 @@ -821,13 +838,11 @@
1439  msgid "The druid has no advice."
1440  msgstr "Der Druide hat keinen Vorschlag"
1441  
1442 -#: src/hugin/PanoDruid.cpp:53
1443 -#: src/hugin/PreviewFrame.cpp:554
1444 +#: src/hugin/PanoDruid.cpp:53 src/hugin/PreviewFrame.cpp:554
1445  msgid "The druid finds no problems with your panorama."
1446  msgstr "Der Druide hat kein Problem in ihrem Panorama gefunden"
1447  
1448 -#: src/hugin/PanoDruid.cpp:54
1449 -#: src/hugin/PreviewFrame.cpp:555
1450 +#: src/hugin/PanoDruid.cpp:54 src/hugin/PreviewFrame.cpp:555
1451  msgid ""
1452  "Stitch your final image now, and then use an image editor\n"
1453  "such as the GNU Image Manipulation Program (the GIMP)\n"
1454 @@ -836,13 +851,11 @@
1455  "Füge jetzt dein endgültiges Panorama zusammen und benutzt dann eine\n"
1456  "Bildverarbeitung, (z.B. GIMP) um dem Panorama den letzten Schliff zu geben."
1457  
1458 -#: src/hugin/PanoDruid.cpp:63
1459 -#: src/hugin/PreviewFrame.cpp:574
1460 +#: src/hugin/PanoDruid.cpp:63 src/hugin/PreviewFrame.cpp:574
1461  msgid "Warning:  you haven't saved the current project."
1462  msgstr "Warnung: Sie haben das aktuelle Projekt nicht gesichert."
1463  
1464 -#: src/hugin/PanoDruid.cpp:64
1465 -#: src/hugin/PreviewFrame.cpp:575
1466 +#: src/hugin/PanoDruid.cpp:64 src/hugin/PreviewFrame.cpp:575
1467  msgid ""
1468  "While everything else seems to be ready to stitch,\n"
1469  "don't forget to save your project file so you can\n"
1470 @@ -853,13 +866,11 @@
1471  "können sie noch weiter herumprobieren\n"
1472  "oder die Einstellungen später verändern."
1473  
1474 -#: src/hugin/PanoDruid.cpp:73
1475 -#: src/hugin/PreviewFrame.cpp:570
1476 +#: src/hugin/PanoDruid.cpp:73 src/hugin/PreviewFrame.cpp:570
1477  msgid "Warning:  current stitch has huge dimensions."
1478  msgstr "Warnung: Derzeitiges Panorama ist sehr groß"
1479  
1480 -#: src/hugin/PanoDruid.cpp:74
1481 -#: src/hugin/PreviewFrame.cpp:571
1482 +#: src/hugin/PanoDruid.cpp:74 src/hugin/PreviewFrame.cpp:571
1483  msgid ""
1484  "Very large pixel dimensions are currently entered.\n"
1485  "Some computers may take an excessively long time\n"
1486 @@ -869,17 +880,17 @@
1487  "pixel dimensions which will give the best quality."
1488  msgstr ""
1489  "Augenblicklich ist eine sehr hohe Bildgröße eingestellt.\n"
1490 -"Auch auf schnellen Computern dauert die Erstellung solcher Bilder sehr lange\n"
1491 +"Auch auf schnellen Computern dauert die Erstellung solcher Bilder sehr "
1492 +"lange\n"
1493  "Für ein optimales Ergebnis benutzen sie den Berechne Knopf\n"
1494 -"im Panorama Optionen Reiter. Damit können sie die optimale Bildgröße des Panoramas berechnen."
1495 +"im Panorama Optionen Reiter. Damit können sie die optimale Bildgröße des "
1496 +"Panoramas berechnen."
1497  
1498 -#: src/hugin/PanoDruid.cpp:104
1499 -#: src/hugin/PreviewFrame.cpp:566
1500 +#: src/hugin/PanoDruid.cpp:104 src/hugin/PreviewFrame.cpp:566
1501  msgid "The Horizontal Field of View (HFOV) may be too low."
1502  msgstr "Der Horizontaler Bildwinkel (HFOV) ist wahrscheinlich zu klein"
1503  
1504 -#: src/hugin/PanoDruid.cpp:105
1505 -#: src/hugin/PreviewFrame.cpp:567
1506 +#: src/hugin/PanoDruid.cpp:105 src/hugin/PreviewFrame.cpp:567
1507  msgid ""
1508  "Check that the focal lengths and/or hfov figures\n"
1509  "for each image are correct for the camera settings.\n"
1510 @@ -911,7 +922,8 @@
1511  "Durch das Hinzufügen einer vertikalen Führungslinie ermöglichen\n"
1512  "sie dem Optimierer Häuser oder Bäume oder andere senkrechte\n"
1513  "Dinge im Endergebnis auch senkrecht erscheinen zu lassen.\n"
1514 -"Die horizontale Führungslinie stellt sicher, daß sich der Horizont nicht verbiegt."
1515 +"Die horizontale Führungslinie stellt sicher, daß sich der Horizont nicht "
1516 +"verbiegt."
1517  
1518  #: src/hugin/PanoDruid.cpp:137
1519  msgid "Run the Optimizer to estimate the image positions."
1520 @@ -975,23 +987,20 @@
1521  "im Kontrollpunkt Karteireiter, für jedes identische optische Merkmal\n"
1522  " von Ã¼berlappenden Bildern hinzu."
1523  
1524 -#: src/hugin/PanoDruid.cpp:213
1525 -#: src/hugin/PreviewFrame.cpp:562
1526 +#: src/hugin/PanoDruid.cpp:213 src/hugin/PreviewFrame.cpp:562
1527  msgid "Add at least one more image."
1528  msgstr "Noch ein weiteres Bild anfügen."
1529  
1530 -#: src/hugin/PanoDruid.cpp:214
1531 -#: src/hugin/PreviewFrame.cpp:563
1532 +#: src/hugin/PanoDruid.cpp:214 src/hugin/PreviewFrame.cpp:563
1533  msgid "You should have at least two files listed in the Images tab."
1534 -msgstr "Sie sollten mindestens zwei Dateien im Bild-Karteireiter aufgelistet sein."
1535 +msgstr ""
1536 +"Sie sollten mindestens zwei Dateien im Bild-Karteireiter aufgelistet sein."
1537  
1538 -#: src/hugin/PanoDruid.cpp:228
1539 -#: src/hugin/PreviewFrame.cpp:558
1540 +#: src/hugin/PanoDruid.cpp:228 src/hugin/PreviewFrame.cpp:558
1541  msgid "To get started, add some image files."
1542  msgstr "Am Anfang fügen sie einige Bilder hinzu."
1543  
1544 -#: src/hugin/PanoDruid.cpp:229
1545 -#: src/hugin/PreviewFrame.cpp:559
1546 +#: src/hugin/PanoDruid.cpp:229 src/hugin/PreviewFrame.cpp:559
1547  msgid "You can add any number of images using the Images tab."
1548  msgstr "Sie können so viele Bilder hinzufügen wie sie wollen."
1549  
1550 @@ -999,13 +1008,11 @@
1551  msgid "the Panorama druid"
1552  msgstr "Der Panorama Druide"
1553  
1554 -#: src/hugin/PanoPanel.cpp:193
1555 -#: src/hugin/PreviewFrame.cpp:411
1556 +#: src/hugin/PanoPanel.cpp:193 src/hugin/PreviewFrame.cpp:411
1557  msgid "Rectilinear"
1558  msgstr "Rectilinear"
1559  
1560 -#: src/hugin/PanoPanel.cpp:194
1561 -#: src/hugin/PreviewFrame.cpp:412
1562 +#: src/hugin/PanoPanel.cpp:194 src/hugin/PreviewFrame.cpp:412
1563  msgid "Cylindrical"
1564  msgstr "Zylindrisch"
1565  
1566 @@ -1013,7 +1020,7 @@
1567  msgid "width needs to be an integer bigger than 0"
1568  msgstr "Die Breite muß größer als 0 sein."
1569  
1570 -#: src/hugin/PanoPanel.cpp:502
1571 +#: src/hugin/PanoPanel.cpp:506
1572  msgid "Create panorama image"
1573  msgstr "Erstelle das Panoramabild"
1574  
1575 @@ -1049,8 +1056,8 @@
1576  msgid "Select PTStitcher"
1577  msgstr "PTStitcher.exe angeben"
1578  
1579 -#: src/hugin/PreferencesDialog.cpp:188
1580 -#: src/hugin/RunOptimizerFrame.cpp:108
1581 +#: src/hugin/PreferencesDialog.cpp:188 src/hugin/RunOptimizerFrame.cpp:109
1582 +#: src/hugin/RunOptimizerFrame.cpp:123
1583  msgid "Select PTOptimizer"
1584  msgstr "PTOptimierer wählen"
1585  
1586 @@ -1058,8 +1065,7 @@
1587  msgid "Select Enblend"
1588  msgstr "enblend.exe angeben"
1589  
1590 -#: src/hugin/PreferencesDialog.cpp:220
1591 -#: src/hugin/PreferencesDialog.cpp:236
1592 +#: src/hugin/PreferencesDialog.cpp:220 src/hugin/PreferencesDialog.cpp:236
1593  #: src/hugin/xrc/pref_dialog.xrs:49
1594  msgid "Select Autopano"
1595  msgstr "Autopano wählen"
1596 @@ -1144,44 +1150,37 @@
1597  msgid "Bicubic"
1598  msgstr "Bikubisch"
1599  
1600 -#: src/hugin/PTStitcherPanel.cpp:265
1601 -#: src/hugin/xrc/nona_panel.xrs:4
1602 +#: src/hugin/PTStitcherPanel.cpp:265 src/hugin/xrc/nona_panel.xrs:4
1603  #: src/hugin/xrc/ptstitcher_panel.xrs:4
1604  msgid "Spline 16"
1605  msgstr "Spline 16"
1606  
1607 -#: src/hugin/PTStitcherPanel.cpp:266
1608 -#: src/hugin/xrc/nona_panel.xrs:5
1609 +#: src/hugin/PTStitcherPanel.cpp:266 src/hugin/xrc/nona_panel.xrs:5
1610  #: src/hugin/xrc/ptstitcher_panel.xrs:5
1611  msgid "Spline 36"
1612  msgstr "Spline 36"
1613  
1614 -#: src/hugin/PTStitcherPanel.cpp:267
1615 -#: src/hugin/xrc/nona_panel.xrs:6
1616 +#: src/hugin/PTStitcherPanel.cpp:267 src/hugin/xrc/nona_panel.xrs:6
1617  #: src/hugin/xrc/ptstitcher_panel.xrs:6
1618  msgid "Sinc 256"
1619  msgstr "Sinc 256"
1620  
1621 -#: src/hugin/PTStitcherPanel.cpp:268
1622 -#: src/hugin/xrc/nona_panel.xrs:7
1623 +#: src/hugin/PTStitcherPanel.cpp:268 src/hugin/xrc/nona_panel.xrs:7
1624  #: src/hugin/xrc/ptstitcher_panel.xrs:7
1625  msgid "Spline 64"
1626  msgstr "Spline 64"
1627  
1628 -#: src/hugin/PTStitcherPanel.cpp:269
1629 -#: src/hugin/xrc/nona_panel.xrs:8
1630 +#: src/hugin/PTStitcherPanel.cpp:269 src/hugin/xrc/nona_panel.xrs:8
1631  #: src/hugin/xrc/ptstitcher_panel.xrs:8
1632  msgid "Bilinear"
1633  msgstr "Bilinear"
1634  
1635 -#: src/hugin/PTStitcherPanel.cpp:270
1636 -#: src/hugin/xrc/nona_panel.xrs:9
1637 +#: src/hugin/PTStitcherPanel.cpp:270 src/hugin/xrc/nona_panel.xrs:9
1638  #: src/hugin/xrc/ptstitcher_panel.xrs:9
1639  msgid "Nearest neighbour"
1640  msgstr "Nächster Nachbar"
1641  
1642 -#: src/hugin/PTStitcherPanel.cpp:271
1643 -#: src/hugin/xrc/nona_panel.xrs:10
1644 +#: src/hugin/PTStitcherPanel.cpp:271 src/hugin/xrc/nona_panel.xrs:10
1645  #: src/hugin/xrc/ptstitcher_panel.xrs:10
1646  msgid "Sinc 1024"
1647  msgstr "Sinc 1024"
1648 @@ -1192,48 +1191,50 @@
1649  
1650  #: src/hugin/PTStitcherPanel.cpp:431
1651  msgid "PTStitcher.exe does not support QTVR output on Windows and Linux"
1652 -msgstr "PTStitcher.exe unterstützt die QTVR-Ausgabe unter Windows und Linux nicht"
1653 +msgstr ""
1654 +"PTStitcher.exe unterstützt die QTVR-Ausgabe unter Windows und Linux nicht"
1655  
1656  #: src/hugin/PTStitcherPanel.cpp:431
1657  msgid "PTStitcher note"
1658  msgstr "PTStitcher Bemerkung"
1659  
1660 -#: src/hugin/RunOptimizerFrame.cpp:116
1661 +#: src/hugin/RunOptimizerFrame.cpp:117
1662  msgid "No PTOptimizer.exe selected"
1663  msgstr "Keine PTOptimizer.exe wurde ausgewählt"
1664  
1665 -#: src/hugin/RunOptimizerFrame.cpp:140
1666 +#: src/hugin/RunOptimizerFrame.cpp:131
1667 +#, fuzzy
1668 +msgid "No PTOptimizer selected"
1669 +msgstr "Keine PTOptimizer.exe wurde ausgewählt"
1670 +
1671 +#: src/hugin/RunOptimizerFrame.cpp:155
1672  msgid "Failed to launch PTOptimizer."
1673  msgstr "Konnte PTOptimierer nicht ausführen"
1674  
1675 -#: src/hugin/RunOptimizerFrame.cpp:151
1676 +#: src/hugin/RunOptimizerFrame.cpp:166
1677  msgid "Could not obtain PTOptimizer output"
1678  msgstr "Konnte PTOptimizer ausgabe nicht finden"
1679  
1680 -#: src/hugin/RunOptimizerFrame.cpp:161
1681 +#: src/hugin/RunOptimizerFrame.cpp:176
1682  msgid "Stop"
1683  msgstr "Anhalten"
1684  
1685 -#: src/hugin/RunOptimizerFrame.cpp:223
1686 +#: src/hugin/RunOptimizerFrame.cpp:238
1687  #, c-format
1688  msgid "Strategy %d, Iteration %d, average distance: %f"
1689  msgstr "Vorgehensweise %d, Iteration %d, durchschnittliche Entfernung: %f"
1690  
1691 -#: src/hugin/RunOptimizerFrame.cpp:295
1692 -#: src/hugin/xrc/edit_text.xrs:3
1693 -#: src/hugin/xrc/pref_dialog.xrs:70
1694 -msgid "Cancel"
1695 -msgstr "Abbrechen"
1696 -
1697 -#: src/hugin/RunOptimizerFrame.cpp:327
1698 +#: src/hugin/RunOptimizerFrame.cpp:342
1699  msgid ""
1700  "Optimizer run finished.\n"
1701  "WARNING: a very small Field of View (v) has been estimated\n"
1702  "\n"
1703  "The results are probably invalid.\n"
1704 -"Please optimize the View only for full 360 deg. panoramas or when you know what you're doing.\n"
1705 +"Please optimize the View only for full 360 deg. panoramas or when you know "
1706 +"what you're doing.\n"
1707  "\n"
1708 -"The Field of View (v) can sometimes be optimized for partial panoramas as well,\n"
1709 +"The Field of View (v) can sometimes be optimized for partial panoramas as "
1710 +"well,\n"
1711  "when the images are already aligned well."
1712  msgstr ""
1713  "Optimierung beendet\n"
1714 @@ -1241,7 +1242,7 @@
1715  "\n"
1716  "Der Ergebnis ist wahrscheinlich nicht richtig"
1717  
1718 -#: src/hugin/RunOptimizerFrame.cpp:329
1719 +#: src/hugin/RunOptimizerFrame.cpp:344
1720  #, c-format
1721  msgid ""
1722  "Optimizer run finished.\n"
1723 @@ -1311,8 +1312,7 @@
1724  msgid "Image file not found"
1725  msgstr "Bilddatei nicht gefunden"
1726  
1727 -#: src/hugin/xrc/about.xrs:1
1728 -#: src/hugin/xrc/main_tool.xrs:31
1729 +#: src/hugin/xrc/about.xrs:1 src/hugin/xrc/main_tool.xrs:31
1730  msgid "About Hugin"
1731  msgstr "Ãœber Hugin"
1732  
1733 @@ -1325,7 +1325,8 @@
1734  msgstr "Ankerbild"
1735  
1736  #: src/hugin/xrc/anchor_orientation.xrs:2
1737 -msgid "Set Yaw and Pitch with left mouse button. Use right mouse button to set roll"
1738 +msgid ""
1739 +"Set Yaw and Pitch with left mouse button. Use right mouse button to set roll"
1740  msgstr ""
1741  "Yaw und Neigung mit der linken Maustaste setzen.\n"
1742  "Benutzen sie die rechte Maustaste um den Rollwinkel zu setzten."
1743 @@ -1396,23 +1397,27 @@
1744  
1745  #: src/hugin/xrc/cp_editor_panel.xrs:16
1746  msgid "immediately add control point when selecting a second point"
1747 -msgstr "Sofortiges hinzufügen des Kontrollpunkt, wenn der zweite Punkt ausgewählt wurde."
1748 +msgstr ""
1749 +"Sofortiges hinzufügen des Kontrollpunkt, wenn der zweite Punkt ausgewählt "
1750 +"wurde."
1751  
1752  #: src/hugin/xrc/cp_editor_panel.xrs:17
1753  msgid "auto estimate"
1754  msgstr "Automatisches &Schätzen"
1755  
1756  #: src/hugin/xrc/cp_editor_panel.xrs:18
1757 -msgid "tries to estimate shift between the images and use it while placing control points"
1758 -msgstr "versucht die Verschiebung zwischen den Bildern zu schätzen und benutzt sie zur Schätzung des Kontrollpunktes im anderen Bild"
1759 +msgid ""
1760 +"tries to estimate shift between the images and use it while placing control "
1761 +"points"
1762 +msgstr ""
1763 +"versucht die Verschiebung zwischen den Bildern zu schätzen und benutzt sie "
1764 +"zur Schätzung des Kontrollpunktes im anderen Bild"
1765  
1766 -#: src/hugin/xrc/cp_editor_panel.xrs:19
1767 -#: src/hugin/xrc/cp_editor_panel.xrs:21
1768 +#: src/hugin/xrc/cp_editor_panel.xrs:19 src/hugin/xrc/cp_editor_panel.xrs:21
1769  msgid "x:"
1770  msgstr "x:"
1771  
1772 -#: src/hugin/xrc/cp_editor_panel.xrs:20
1773 -#: src/hugin/xrc/cp_editor_panel.xrs:22
1774 +#: src/hugin/xrc/cp_editor_panel.xrs:20 src/hugin/xrc/cp_editor_panel.xrs:22
1775  msgid "y:"
1776  msgstr "y:"
1777  
1778 @@ -1428,8 +1433,7 @@
1779  msgid "horizontal line"
1780  msgstr "horiz. Linie"
1781  
1782 -#: src/hugin/xrc/cp_editor_panel.xrs:27
1783 -#: src/hugin/xrc/cp_list_frame.xrs:2
1784 +#: src/hugin/xrc/cp_editor_panel.xrs:27 src/hugin/xrc/cp_list_frame.xrs:2
1785  msgid "Delete"
1786  msgstr "Löschen"
1787  
1788 @@ -1441,8 +1445,7 @@
1789  msgid "add a new Point"
1790  msgstr "Ein neuen Punkt hinzufügen"
1791  
1792 -#: src/hugin/xrc/cp_list_frame.xrs:1
1793 -#: src/hugin/xrc/main_frame.xrs:4
1794 +#: src/hugin/xrc/cp_list_frame.xrs:1 src/hugin/xrc/main_frame.xrs:4
1795  msgid "Control Points"
1796  msgstr "Kontrollpunkte"
1797  
1798 @@ -1455,8 +1458,12 @@
1799  msgstr "Panorama Tools Skript bearbeiten"
1800  
1801  #: src/hugin/xrc/edit_script_dialog.xrs:2
1802 -msgid "This is the script which will be sent to the Panorama Tools engine.  Editing these lines is an advanced technique."
1803 -msgstr "Diese Skript wird zur Panorama Tools Maschine gesendet. Das Bearbeiten dieser Zeilen ist eine fortgeschrittene Technik."
1804 +msgid ""
1805 +"This is the script which will be sent to the Panorama Tools engine.  Editing "
1806 +"these lines is an advanced technique."
1807 +msgstr ""
1808 +"Diese Skript wird zur Panorama Tools Maschine gesendet. Das Bearbeiten "
1809 +"dieser Zeilen ist eine fortgeschrittene Technik."
1810  
1811  #: src/hugin/xrc/edit_script_dialog.xrs:3
1812  msgid "Continue with these changes"
1813 @@ -1470,8 +1477,7 @@
1814  msgid "Text mode"
1815  msgstr "Text Modus:"
1816  
1817 -#: src/hugin/xrc/edit_text.xrs:2
1818 -#: src/hugin/xrc/main_tool.xrs:23
1819 +#: src/hugin/xrc/edit_text.xrs:2 src/hugin/xrc/main_tool.xrs:23
1820  #: src/hugin/xrc/optimize_panel.xrs:2
1821  msgid "Optimize"
1822  msgstr "Optimieren"
1823 @@ -1480,14 +1486,12 @@
1824  msgid "Hugin Reference"
1825  msgstr "Hugin Referenz"
1826  
1827 -#: src/hugin/xrc/help.xrs:2
1828 -#: src/hugin/xrc/image_center.xrs:3
1829 +#: src/hugin/xrc/help.xrs:2 src/hugin/xrc/image_center.xrs:3
1830  #: src/hugin/xrc/keyboard_help.xrs:2
1831  msgid "Close"
1832  msgstr "Schließen"
1833  
1834 -#: src/hugin/xrc/image_center.xrs:1
1835 -#: src/hugin/xrc/pref_dialog.xrs:69
1836 +#: src/hugin/xrc/image_center.xrs:1 src/hugin/xrc/pref_dialog.xrs:69
1837  #: src/hugin/xrc/run_optimizer_frame.xrs:2
1838  msgid "Apply"
1839  msgstr "Anwenden"
1840 @@ -1547,8 +1551,12 @@
1841  msgstr "Positionsanker"
1842  
1843  #: src/hugin/xrc/images_panel.xrs:12
1844 -msgid "use currently selected image as anchor image. That is, do not optimize the (complete) position of this image."
1845 -msgstr "Benutzte das aktuelle Bild als Ankerbild. Dadurch wird die Position für Bild nicht verändert."
1846 +msgid ""
1847 +"use currently selected image as anchor image. That is, do not optimize the "
1848 +"(complete) position of this image."
1849 +msgstr ""
1850 +"Benutzte das aktuelle Bild als Ankerbild. Dadurch wird die Position für Bild "
1851 +"nicht verändert."
1852  
1853  #: src/hugin/xrc/images_panel.xrs:13
1854  msgid "Adjust the anchor spot..."
1855 @@ -1594,8 +1602,7 @@
1856  msgid "Remove control points connecting the selected images"
1857  msgstr "Entferne mit dem Bild verbundene Kontrollpunkte"
1858  
1859 -#: src/hugin/xrc/images_panel.xrs:24
1860 -#: src/hugin/xrc/optimize_panel.xrs:23
1861 +#: src/hugin/xrc/images_panel.xrs:24 src/hugin/xrc/optimize_panel.xrs:23
1862  msgid "Image Orientation"
1863  msgstr "Bildausrichtung"
1864  
1865 @@ -1647,20 +1654,15 @@
1866  msgid "degrees of view (v):"
1867  msgstr "Blickwinkel (v):"
1868  
1869 -#: src/hugin/xrc/lens_panel.xrs:9
1870 -#: src/hugin/xrc/lens_panel.xrs:10
1871 +#: src/hugin/xrc/lens_panel.xrs:9 src/hugin/xrc/lens_panel.xrs:10
1872  #: src/hugin/xrc/lens_panel.xrs:11
1873  msgid "Horizontal Field of View"
1874  msgstr "Horizontaler Bildwinkel (v)"
1875  
1876 -#: src/hugin/xrc/lens_panel.xrs:12
1877 -#: src/hugin/xrc/lens_panel.xrs:25
1878 -#: src/hugin/xrc/lens_panel.xrs:27
1879 -#: src/hugin/xrc/lens_panel.xrs:29
1880 -#: src/hugin/xrc/lens_panel.xrs:32
1881 -#: src/hugin/xrc/lens_panel.xrs:34
1882 -#: src/hugin/xrc/lens_panel.xrs:40
1883 -#: src/hugin/xrc/lens_panel.xrs:42
1884 +#: src/hugin/xrc/lens_panel.xrs:12 src/hugin/xrc/lens_panel.xrs:25
1885 +#: src/hugin/xrc/lens_panel.xrs:27 src/hugin/xrc/lens_panel.xrs:29
1886 +#: src/hugin/xrc/lens_panel.xrs:32 src/hugin/xrc/lens_panel.xrs:34
1887 +#: src/hugin/xrc/lens_panel.xrs:40 src/hugin/xrc/lens_panel.xrs:42
1888  msgid "Inherit"
1889  msgstr "Vererben"
1890  
1891 @@ -1668,8 +1670,7 @@
1892  msgid "focal length:"
1893  msgstr "Brennweite:"
1894  
1895 -#: src/hugin/xrc/lens_panel.xrs:14
1896 -#: src/hugin/xrc/lens_panel.xrs:15
1897 +#: src/hugin/xrc/lens_panel.xrs:14 src/hugin/xrc/lens_panel.xrs:15
1898  msgid "real focal length of the optic"
1899  msgstr "Reale Brennweite des Objektivs"
1900  
1901 @@ -1681,14 +1682,12 @@
1902  msgid "crop factor:"
1903  msgstr "Fehlerfaktor:"
1904  
1905 -#: src/hugin/xrc/lens_panel.xrs:18
1906 -#: src/hugin/xrc/lens_panel.xrs:19
1907 +#: src/hugin/xrc/lens_panel.xrs:18 src/hugin/xrc/lens_panel.xrs:19
1908  #: src/hugin/xrc/lens_panel.xrs:22
1909  msgid "35mm film diameter / ccd diameter"
1910  msgstr "35mm Filmdurchmesser / CCD Durchmesser"
1911  
1912 -#: src/hugin/xrc/lens_panel.xrs:20
1913 -#: src/hugin/xrc/lens_panel.xrs:21
1914 +#: src/hugin/xrc/lens_panel.xrs:20 src/hugin/xrc/lens_panel.xrs:21
1915  msgid "equivalent to 35mm film optics"
1916  msgstr "Äquivalent zur einer 35mm Filmoptik"
1917  
1918 @@ -1696,18 +1695,15 @@
1919  msgid "Lens Correction Parameters"
1920  msgstr "Objektivkorrekturparameter"
1921  
1922 -#: src/hugin/xrc/lens_panel.xrs:24
1923 -#: src/hugin/xrc/optimize_panel.xrs:26
1924 +#: src/hugin/xrc/lens_panel.xrs:24 src/hugin/xrc/optimize_panel.xrs:26
1925  msgid "distortion (a):"
1926  msgstr "Verzerrung (a)"
1927  
1928 -#: src/hugin/xrc/lens_panel.xrs:26
1929 -#: src/hugin/xrc/optimize_panel.xrs:27
1930 +#: src/hugin/xrc/lens_panel.xrs:26 src/hugin/xrc/optimize_panel.xrs:27
1931  msgid "barrel (b):"
1932  msgstr "Tonnenverzerrung (b):"
1933  
1934 -#: src/hugin/xrc/lens_panel.xrs:28
1935 -#: src/hugin/xrc/optimize_panel.xrs:28
1936 +#: src/hugin/xrc/lens_panel.xrs:28 src/hugin/xrc/optimize_panel.xrs:28
1937  msgid "distortion (c):"
1938  msgstr "Verzerrung (c):"
1939  
1940 @@ -1759,8 +1755,7 @@
1941  msgid "Load lens parameters from a file"
1942  msgstr "Objektivparameter aus einer Datei laden"
1943  
1944 -#: src/hugin/xrc/lens_panel.xrs:46
1945 -#: src/hugin/xrc/main_tool.xrs:8
1946 +#: src/hugin/xrc/lens_panel.xrs:46 src/hugin/xrc/main_tool.xrs:8
1947  msgid "Save"
1948  msgstr "Speichern"
1949  
1950 @@ -1782,7 +1777,8 @@
1951  
1952  #: src/hugin/xrc/lens_panel.xrs:51
1953  msgid "Create a new lens and assign it to selected images"
1954 -msgstr "Neue Objektivspezifikation erzeugen und den ausgewählten Bildern zuweisen."
1955 +msgstr ""
1956 +"Neue Objektivspezifikation erzeugen und den ausgewählten Bildern zuweisen."
1957  
1958  #: src/hugin/xrc/lens_panel.xrs:52
1959  msgid "Change lens"
1960 @@ -1812,8 +1808,7 @@
1961  msgid "Stitcher"
1962  msgstr "Zusammenfügen"
1963  
1964 -#: src/hugin/xrc/main_menubar.xrs:1
1965 -#: src/hugin/xrc/main_menu.xrs:1
1966 +#: src/hugin/xrc/main_menubar.xrs:1 src/hugin/xrc/main_menu.xrs:1
1967  msgid "&File"
1968  msgstr "&Datei"
1969  
1970 @@ -1825,8 +1820,7 @@
1971  msgid "Exit this application"
1972  msgstr "Programms verlassen"
1973  
1974 -#: src/hugin/xrc/main_menubar.xrs:4
1975 -#: src/hugin/xrc/main_menu.xrs:31
1976 +#: src/hugin/xrc/main_menubar.xrs:4 src/hugin/xrc/main_menu.xrs:31
1977  #: src/hugin/xrc/main_menu.xrs:34
1978  msgid "&Help"
1979  msgstr "&Hilfe"
1980 @@ -1843,8 +1837,7 @@
1981  msgid "&New"
1982  msgstr "&Neu"
1983  
1984 -#: src/hugin/xrc/main_menu.xrs:3
1985 -#: src/hugin/xrc/main_tool.xrs:1
1986 +#: src/hugin/xrc/main_menu.xrs:3 src/hugin/xrc/main_tool.xrs:1
1987  msgid "New project"
1988  msgstr "Neues Projekt"
1989  
1990 @@ -1852,8 +1845,7 @@
1991  msgid "&Open"
1992  msgstr "&Öffnen"
1993  
1994 -#: src/hugin/xrc/main_menu.xrs:5
1995 -#: src/hugin/xrc/main_tool.xrs:4
1996 +#: src/hugin/xrc/main_menu.xrs:5 src/hugin/xrc/main_tool.xrs:4
1997  msgid "Open project"
1998  msgstr "Projekt Ã¶ffnen"
1999  
2000 @@ -1861,8 +1853,7 @@
2001  msgid "&Save"
2002  msgstr "S&peichern"
2003  
2004 -#: src/hugin/xrc/main_menu.xrs:7
2005 -#: src/hugin/xrc/main_tool.xrs:9
2006 +#: src/hugin/xrc/main_menu.xrs:7 src/hugin/xrc/main_tool.xrs:9
2007  msgid "Save current project file"
2008  msgstr "Aktuelles Projekt speichern"
2009  
2010 @@ -1870,8 +1861,7 @@
2011  msgid "S&ave as"
2012  msgstr "Speichern &unter"
2013  
2014 -#: src/hugin/xrc/main_menu.xrs:9
2015 -#: src/hugin/xrc/main_tool.xrs:12
2016 +#: src/hugin/xrc/main_menu.xrs:9 src/hugin/xrc/main_tool.xrs:12
2017  msgid "Save current project to a new file"
2018  msgstr "Projekt unter neuem Namen speicheren"
2019  
2020 @@ -1880,8 +1870,12 @@
2021  msgstr "P&TStitcher Skript schreiben"
2022  
2023  #: src/hugin/xrc/main_menu.xrs:11
2024 -msgid "Write current project to a PTStitcher compatible script file, useful for batch processing"
2025 -msgstr "Schreibe das aktuelle Projekt in eine PTStitcher kompatible Skriptdatei, nützlich zur Stapelverarbeitung"
2026 +msgid ""
2027 +"Write current project to a PTStitcher compatible script file, useful for "
2028 +"batch processing"
2029 +msgstr ""
2030 +"Schreibe das aktuelle Projekt in eine PTStitcher kompatible Skriptdatei, "
2031 +"nützlich zur Stapelverarbeitung"
2032  
2033  #: src/hugin/xrc/main_menu.xrs:12
2034  msgid "&Preferences"
2035 @@ -1903,8 +1897,7 @@
2036  msgid "&Undo"
2037  msgstr "&Rückgängig"
2038  
2039 -#: src/hugin/xrc/main_menu.xrs:17
2040 -#: src/hugin/xrc/main_tool.xrs:15
2041 +#: src/hugin/xrc/main_menu.xrs:17 src/hugin/xrc/main_tool.xrs:15
2042  msgid "Undo the last action"
2043  msgstr "Letzte Aktion rückgängig machen"
2044  
2045 @@ -1912,8 +1905,7 @@
2046  msgid "&Redo"
2047  msgstr "Wieder&herstellen"
2048  
2049 -#: src/hugin/xrc/main_menu.xrs:19
2050 -#: src/hugin/xrc/main_tool.xrs:18
2051 +#: src/hugin/xrc/main_menu.xrs:19 src/hugin/xrc/main_tool.xrs:18
2052  msgid "Redo the last action"
2053  msgstr "Letzte Aktion wiederherstellen"
2054  
2055 @@ -1922,15 +1914,18 @@
2056  msgstr "Kontrollpunkt &verfeinern"
2057  
2058  #: src/hugin/xrc/main_menu.xrs:21
2059 -msgid "Runs fine-tune on all control points. useful for projects created with other tools, like PTGui or PTAssembler"
2060 -msgstr "Berechnet Verfeinerung für alle Kontrollpunkte. Nützlich für Projekte, die mit anderen Programmen wie PTGui oder PTAssembler erstellt wurden."
2061 +msgid ""
2062 +"Runs fine-tune on all control points. useful for projects created with other "
2063 +"tools, like PTGui or PTAssembler"
2064 +msgstr ""
2065 +"Berechnet Verfeinerung für alle Kontrollpunkte. Nützlich für Projekte, die "
2066 +"mit anderen Programmen wie PTGui oder PTAssembler erstellt wurden."
2067  
2068  #: src/hugin/xrc/main_menu.xrs:22
2069  msgid "&Optimize"
2070  msgstr "&Optimieren"
2071  
2072 -#: src/hugin/xrc/main_menu.xrs:23
2073 -#: src/hugin/xrc/main_tool.xrs:24
2074 +#: src/hugin/xrc/main_menu.xrs:23 src/hugin/xrc/main_tool.xrs:24
2075  msgid "Re-run the optimizer with current settings"
2076  msgstr "Nochmals Optimieren mit derzeitigen Einstellungen"
2077  
2078 @@ -1938,8 +1933,7 @@
2079  msgid "&Add Image"
2080  msgstr "&Bilder hinzufügen"
2081  
2082 -#: src/hugin/xrc/main_menu.xrs:25
2083 -#: src/hugin/xrc/main_tool.xrs:21
2084 +#: src/hugin/xrc/main_menu.xrs:25 src/hugin/xrc/main_tool.xrs:21
2085  msgid "Add another image to the current project"
2086  msgstr "Ein weiteres Bild zum aktuellen Projekt hinzufügen"
2087  
2088 @@ -2029,13 +2023,11 @@
2089  "Speichern\n"
2090  "unter"
2091  
2092 -#: src/hugin/xrc/main_tool.xrs:13
2093 -#: src/hugin/xrc/main_tool.xrs:14
2094 +#: src/hugin/xrc/main_tool.xrs:13 src/hugin/xrc/main_tool.xrs:14
2095  msgid "Undo"
2096  msgstr "Rückgängig"
2097  
2098 -#: src/hugin/xrc/main_tool.xrs:16
2099 -#: src/hugin/xrc/main_tool.xrs:17
2100 +#: src/hugin/xrc/main_tool.xrs:16 src/hugin/xrc/main_tool.xrs:17
2101  msgid "Redo"
2102  msgstr ""
2103  "Wieder-\n"
2104 @@ -2057,8 +2049,7 @@
2105  msgid "Preview panorama"
2106  msgstr "Panorama Vorschau"
2107  
2108 -#: src/hugin/xrc/main_tool.xrs:26
2109 -#: src/hugin/xrc/pref_dialog.xrs:46
2110 +#: src/hugin/xrc/main_tool.xrs:26 src/hugin/xrc/pref_dialog.xrs:46
2111  #: src/hugin/xrc/preview_frame.xrs:1
2112  msgid "Preview"
2113  msgstr "Vorschau"
2114 @@ -2087,18 +2078,15 @@
2115  msgid "Display credits for the creators of Hugin"
2116  msgstr "Hugin Ersteller"
2117  
2118 -#: src/hugin/xrc/nona_panel.xrs:1
2119 -#: src/hugin/xrc/ptstitcher_panel.xrs:1
2120 +#: src/hugin/xrc/nona_panel.xrs:1 src/hugin/xrc/ptstitcher_panel.xrs:1
2121  msgid "Stitching Options"
2122  msgstr "Zusammenfügen Optionen"
2123  
2124 -#: src/hugin/xrc/nona_panel.xrs:2
2125 -#: src/hugin/xrc/ptstitcher_panel.xrs:2
2126 +#: src/hugin/xrc/nona_panel.xrs:2 src/hugin/xrc/ptstitcher_panel.xrs:2
2127  msgid "interpolator (i):"
2128  msgstr "Interpolation (i):"
2129  
2130 -#: src/hugin/xrc/nona_panel.xrs:3
2131 -#: src/hugin/xrc/ptstitcher_panel.xrs:3
2132 +#: src/hugin/xrc/nona_panel.xrs:3 src/hugin/xrc/ptstitcher_panel.xrs:3
2133  msgid "Poly3 (Bicubic)"
2134  msgstr "Poly 3 (Bikubisch)"
2135  
2136 @@ -2111,36 +2099,34 @@
2137  msgstr "Weicher Ãœbergang (erfordert Enblend, nur TIFF Ausgabe)"
2138  
2139  #: src/hugin/xrc/nona_panel.xrs:13
2140 -msgid "Use the external enblend program for seamless blending. Can only produce TIFF output. Select TIFF to enable this option"
2141 -msgstr "Für nahtlosen Ãœbergang benutzen sie das externe Programm Enblend. Es kann nur TIFF erzeugen. Wählen sie TIFF um diese Option einzuschalten."
2142 +msgid ""
2143 +"Use the external enblend program for seamless blending. Can only produce "
2144 +"TIFF output. Select TIFF to enable this option"
2145 +msgstr ""
2146 +"Für nahtlosen Ãœbergang benutzen sie das externe Programm Enblend. Es kann "
2147 +"nur TIFF erzeugen. Wählen sie TIFF um diese Option einzuschalten."
2148  
2149 -#: src/hugin/xrc/nona_panel.xrs:14
2150 -#: src/hugin/xrc/ptstitcher_panel.xrs:28
2151 +#: src/hugin/xrc/nona_panel.xrs:14 src/hugin/xrc/ptstitcher_panel.xrs:28
2152  msgid "Output File Options"
2153  msgstr "Ausgabedateioptionen"
2154  
2155 -#: src/hugin/xrc/nona_panel.xrs:15
2156 -#: src/hugin/xrc/ptstitcher_panel.xrs:29
2157 +#: src/hugin/xrc/nona_panel.xrs:15 src/hugin/xrc/ptstitcher_panel.xrs:29
2158  msgid "image format:"
2159  msgstr "Bildformat:"
2160  
2161 -#: src/hugin/xrc/nona_panel.xrs:16
2162 -#: src/hugin/xrc/ptstitcher_panel.xrs:30
2163 +#: src/hugin/xrc/nona_panel.xrs:16 src/hugin/xrc/ptstitcher_panel.xrs:30
2164  msgid "JPG"
2165  msgstr "JPG"
2166  
2167 -#: src/hugin/xrc/nona_panel.xrs:17
2168 -#: src/hugin/xrc/ptstitcher_panel.xrs:31
2169 +#: src/hugin/xrc/nona_panel.xrs:17 src/hugin/xrc/ptstitcher_panel.xrs:31
2170  msgid "PNG"
2171  msgstr "PNG"
2172  
2173 -#: src/hugin/xrc/nona_panel.xrs:18
2174 -#: src/hugin/xrc/ptstitcher_panel.xrs:32
2175 +#: src/hugin/xrc/nona_panel.xrs:18 src/hugin/xrc/ptstitcher_panel.xrs:32
2176  msgid "TIFF"
2177  msgstr "TIFF"
2178  
2179 -#: src/hugin/xrc/nona_panel.xrs:19
2180 -#: src/hugin/xrc/ptstitcher_panel.xrs:33
2181 +#: src/hugin/xrc/nona_panel.xrs:19 src/hugin/xrc/ptstitcher_panel.xrs:33
2182  msgid "Multiple TIFF"
2183  msgstr "Mehrfach TIFF"
2184  
2185 @@ -2148,13 +2134,11 @@
2186  msgid "Multilayer TIFF"
2187  msgstr "Mehrlagen TIFF"
2188  
2189 -#: src/hugin/xrc/nona_panel.xrs:21
2190 -#: src/hugin/xrc/ptstitcher_panel.xrs:44
2191 +#: src/hugin/xrc/nona_panel.xrs:21 src/hugin/xrc/ptstitcher_panel.xrs:44
2192  msgid "compression:"
2193  msgstr "Kompression:"
2194  
2195 -#: src/hugin/xrc/nona_panel.xrs:22
2196 -#: src/hugin/xrc/ptstitcher_panel.xrs:45
2197 +#: src/hugin/xrc/nona_panel.xrs:22 src/hugin/xrc/ptstitcher_panel.xrs:45
2198  msgid "JPEG compression (0-100)"
2199  msgstr "JPEG Kompression (0-100)"
2200  
2201 @@ -2214,14 +2198,12 @@
2202  msgid "yaw (y):"
2203  msgstr "Yaw (y)"
2204  
2205 -#: src/hugin/xrc/optimize_panel.xrs:15
2206 -#: src/hugin/xrc/optimize_panel.xrs:18
2207 +#: src/hugin/xrc/optimize_panel.xrs:15 src/hugin/xrc/optimize_panel.xrs:18
2208  #: src/hugin/xrc/optimize_panel.xrs:21
2209  msgid "select"
2210  msgstr "wählen"
2211  
2212 -#: src/hugin/xrc/optimize_panel.xrs:16
2213 -#: src/hugin/xrc/optimize_panel.xrs:19
2214 +#: src/hugin/xrc/optimize_panel.xrs:16 src/hugin/xrc/optimize_panel.xrs:19
2215  #: src/hugin/xrc/optimize_panel.xrs:22
2216  msgid "clear"
2217  msgstr "löschen"
2218 @@ -2254,8 +2236,7 @@
2219  msgid "edit script before optimizing"
2220  msgstr "Skript vor der Optimierung bearbeiten"
2221  
2222 -#: src/hugin/xrc/optimize_panel.xrs:32
2223 -#: src/hugin/xrc/ptstitcher_panel.xrs:47
2224 +#: src/hugin/xrc/optimize_panel.xrs:32 src/hugin/xrc/ptstitcher_panel.xrs:47
2225  msgid "for advanced users"
2226  msgstr "für Fortgeschrittene"
2227  
2228 @@ -2363,8 +2344,7 @@
2229  msgid "Stitching engine:"
2230  msgstr "Stitcher:"
2231  
2232 -#: src/hugin/xrc/pano_panel.xrs:27
2233 -#: src/hugin/xrc/run_stitcher_frame.xrs:1
2234 +#: src/hugin/xrc/pano_panel.xrs:27 src/hugin/xrc/run_stitcher_frame.xrs:1
2235  msgid "PTStitcher"
2236  msgstr "PTStitcher"
2237  
2238 @@ -2376,8 +2356,7 @@
2239  msgid "Preferences - hugin"
2240  msgstr "Hugin - Voreinstellungen"
2241  
2242 -#: src/hugin/xrc/pref_dialog.xrs:2
2243 -#: src/hugin/xrc/pref_dialog.xrs:11
2244 +#: src/hugin/xrc/pref_dialog.xrs:2 src/hugin/xrc/pref_dialog.xrs:11
2245  msgid "Panotools"
2246  msgstr "Panotools"
2247  
2248 @@ -2389,10 +2368,8 @@
2249  msgid "PTStitcher:"
2250  msgstr "PTStitcher:"
2251  
2252 -#: src/hugin/xrc/pref_dialog.xrs:5
2253 -#: src/hugin/xrc/pref_dialog.xrs:7
2254 -#: src/hugin/xrc/pref_dialog.xrs:54
2255 -#: src/hugin/xrc/pref_dialog.xrs:58
2256 +#: src/hugin/xrc/pref_dialog.xrs:5 src/hugin/xrc/pref_dialog.xrs:7
2257 +#: src/hugin/xrc/pref_dialog.xrs:54 src/hugin/xrc/pref_dialog.xrs:58
2258  #: src/hugin/xrc/pref_dialog.xrs:64
2259  msgid "..."
2260  msgstr "..."
2261 @@ -2429,8 +2406,7 @@
2262  msgid "Patch width:"
2263  msgstr "Musterbreite"
2264  
2265 -#: src/hugin/xrc/pref_dialog.xrs:16
2266 -#: src/hugin/xrc/pref_dialog.xrs:20
2267 +#: src/hugin/xrc/pref_dialog.xrs:16 src/hugin/xrc/pref_dialog.xrs:20
2268  msgid "pixels"
2269  msgstr "Pixel"
2270  
2271 @@ -2482,8 +2458,7 @@
2272  msgid "Start angle:"
2273  msgstr "Startwinkel:"
2274  
2275 -#: src/hugin/xrc/pref_dialog.xrs:28
2276 -#: src/hugin/xrc/pref_dialog.xrs:30
2277 +#: src/hugin/xrc/pref_dialog.xrs:28 src/hugin/xrc/pref_dialog.xrs:30
2278  msgid "degrees"
2279  msgstr "Grad"
2280  
2281 @@ -2561,8 +2536,7 @@
2282  msgid "Show Druid (requires restarting hugin)"
2283  msgstr "Druide zeigen (Neustart erforderlich)"
2284  
2285 -#: src/hugin/xrc/pref_dialog.xrs:48
2286 -#: src/hugin/xrc/pref_dialog.xrs:56
2287 +#: src/hugin/xrc/pref_dialog.xrs:48 src/hugin/xrc/pref_dialog.xrs:56
2288  msgid "Autopano"
2289  msgstr "Autopano"
2290  
2291 @@ -2582,8 +2556,7 @@
2292  msgid "Autopano-SIFT:"
2293  msgstr "Autopano-SIFT:"
2294  
2295 -#: src/hugin/xrc/pref_dialog.xrs:55
2296 -#: src/hugin/xrc/pref_dialog.xrs:59
2297 +#: src/hugin/xrc/pref_dialog.xrs:55 src/hugin/xrc/pref_dialog.xrs:59
2298  msgid "Arguments:"
2299  msgstr "Argumente:"
2300  
2301 @@ -2630,21 +2603,15 @@
2302  msgid "Delete remapped tiff files"
2303  msgstr "Umgerechnete TIFF Bilder löschen."
2304  
2305 -#: src/hugin/xrc/pref_dialog.xrs:68
2306 -msgid "Ok"
2307 -msgstr "Ok"
2308 -
2309  #: src/hugin/xrc/pref_dialog.xrs:71
2310  msgid "Load Defaults"
2311  msgstr "Voreinstellungen laden"
2312  
2313 -#: src/hugin/xrc/preview_frame.xrs:2
2314 -#: src/hugin/xrc/preview_frame.xrs:9
2315 +#: src/hugin/xrc/preview_frame.xrs:2 src/hugin/xrc/preview_frame.xrs:9
2316  msgid "Center"
2317  msgstr "Hauptpunkt auswählen"
2318  
2319 -#: src/hugin/xrc/preview_frame.xrs:3
2320 -#: src/hugin/xrc/preview_frame.xrs:8
2321 +#: src/hugin/xrc/preview_frame.xrs:3 src/hugin/xrc/preview_frame.xrs:8
2322  msgid "Center the preview horizontally"
2323  msgstr "Vorschau horizontal zentrieren"
2324  
2325 @@ -2656,13 +2623,11 @@
2326  msgid "Automatically update preview on relevant changes"
2327  msgstr "Vorschau automatisch aktualisieren"
2328  
2329 -#: src/hugin/xrc/preview_frame.xrs:6
2330 -#: src/hugin/xrc/preview_frame.xrs:16
2331 +#: src/hugin/xrc/preview_frame.xrs:6 src/hugin/xrc/preview_frame.xrs:16
2332  msgid "Update"
2333  msgstr "Aktualisieren"
2334  
2335 -#: src/hugin/xrc/preview_frame.xrs:7
2336 -#: src/hugin/xrc/preview_frame.xrs:15
2337 +#: src/hugin/xrc/preview_frame.xrs:7 src/hugin/xrc/preview_frame.xrs:15
2338  msgid "Update preview"
2339  msgstr "Vorschau aktualisieren"
2340  
2341 @@ -2698,8 +2663,7 @@
2342  msgid "Show none of the images"
2343  msgstr "Kein Bild zeigen"
2344  
2345 -#: src/hugin/xrc/preview_frame.xrs:20
2346 -#: src/hugin/xrc/ptstitcher_panel.xrs:14
2347 +#: src/hugin/xrc/preview_frame.xrs:20 src/hugin/xrc/ptstitcher_panel.xrs:14
2348  #: src/hugin/xrc/ptstitcher_panel.xrs:24
2349  msgid "None"
2350  msgstr "Nichts"
2351 @@ -2761,8 +2725,12 @@
2352  msgstr "Medium (1)"
2353  
2354  #: src/hugin/xrc/ptstitcher_panel.xrs:27
2355 -msgid "approximate remapping, faster but slightly less accurate. Fast should work well with usual panos, Medium even with morphed panos"
2356 -msgstr "Neuzusammensetzen einschätzen. Schneller, aber weniger genau. Schneller müßte für normale Panoramen funktionieren, Medium für verzerrten Panoramen."
2357 +msgid ""
2358 +"approximate remapping, faster but slightly less accurate. Fast should work "
2359 +"well with usual panos, Medium even with morphed panos"
2360 +msgstr ""
2361 +"Neuzusammensetzen einschätzen. Schneller, aber weniger genau. Schneller "
2362 +"müßte für normale Panoramen funktionieren, Medium für verzerrten Panoramen."
2363  
2364  #: src/hugin/xrc/ptstitcher_panel.xrs:34
2365  msgid "Multiple TIFF with masks"
2366 @@ -2823,4 +2791,3 @@
2367  #: src/hugin/xrc/run_stitcher_frame.xrs:3
2368  msgid "Abort"
2369  msgstr "Abbrechen"
2370 -
2371 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/po/fr.po hugin/src/hugin/po/fr.po
2372 --- hugin-0.5-beta4/src/hugin/po/fr.po  2005-03-08 22:10:48.000000000 +0100
2373 +++ hugin/src/hugin/po/fr.po    2005-04-26 13:06:00.000000000 +0200
2374 @@ -8,7 +8,7 @@
2375  msgstr ""
2376  "Project-Id-Version: fr\n"
2377  "Report-Msgid-Bugs-To: pablo.dangelo@web.de\n"
2378 -"POT-Creation-Date: 2005-03-08 21:37+0100\n"
2379 +"POT-Creation-Date: 2005-04-26 12:54+0300\n"
2380  "PO-Revision-Date: 2005-02-12 11:51+0100\n"
2381  "Last-Translator:  <jean-luc.coulon@wanadoo.fr>\n"
2382  "Language-Team:  <en@li.org>\n"
2383 @@ -17,69 +17,74 @@
2384  "Content-Transfer-Encoding: 8bit\n"
2385  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
2386  
2387 -#: src/hugin/AutoCtrlPointCreator.cpp:87
2388 +#: src/hugin/AutoCtrlPointCreator.cpp:92
2389  #, c-format
2390  msgid "Added %d control points"
2391  msgstr "%d points de contrôle ont Ã©té ajoutés"
2392  
2393 -#: src/hugin/AutoCtrlPointCreator.cpp:87
2394 +#: src/hugin/AutoCtrlPointCreator.cpp:92
2395  msgid "Autopano result"
2396  msgstr "Résultat d'Autopano"
2397  
2398 -#: src/hugin/AutoCtrlPointCreator.cpp:102
2399 +#: src/hugin/AutoCtrlPointCreator.cpp:107
2400  msgid "Autopano (version 1.03 or greater), from http://autopano.kolor.com"
2401  msgstr ""
2402  "Autopano (version 1.03 ou supérieure), voir le site http://autopano.kolor.com"
2403  
2404 -#: src/hugin/AutoCtrlPointCreator.cpp:103
2405 +#: src/hugin/AutoCtrlPointCreator.cpp:108
2406  msgid "Autopano-Sift, from http://user.cs.tu-berlin.de/~nowozin/autopano-sift/"
2407  msgstr ""
2408  "Autopano-Sift, voir le site http://user.cs.tu-berlin.de/~nowozin/autopano-"
2409  "sift/"
2410  
2411 -#: src/hugin/AutoCtrlPointCreator.cpp:105
2412 +#: src/hugin/AutoCtrlPointCreator.cpp:110
2413  msgid "Choose which autopano program should be used\n"
2414  msgstr "Choisir quel programme autopano doit Ãªtre utilisé\n"
2415  
2416 -#: src/hugin/AutoCtrlPointCreator.cpp:105
2417 +#: src/hugin/AutoCtrlPointCreator.cpp:110
2418  msgid "Select autopano type"
2419  msgstr "Sélectionner le type d'autopano"
2420  
2421 -#: src/hugin/AutoCtrlPointCreator.cpp:144
2422 -#: src/hugin/AutoCtrlPointCreator.cpp:331
2423 +#: src/hugin/AutoCtrlPointCreator.cpp:149
2424 +#: src/hugin/AutoCtrlPointCreator.cpp:393
2425  msgid "Select autopano program / frontend script"
2426  msgstr "Choisir le programme autopano / script frontal"
2427  
2428 -#: src/hugin/AutoCtrlPointCreator.cpp:146 src/hugin/PreferencesDialog.cpp:175
2429 +#: src/hugin/AutoCtrlPointCreator.cpp:151 src/hugin/PreferencesDialog.cpp:175
2430  #: src/hugin/PreferencesDialog.cpp:191 src/hugin/PreferencesDialog.cpp:207
2431 -#: src/hugin/PreferencesDialog.cpp:223 src/hugin/RunOptimizerFrame.cpp:110
2432 +#: src/hugin/PreferencesDialog.cpp:223 src/hugin/RunOptimizerFrame.cpp:111
2433  #: src/hugin/RunStitcherFrame.cpp:89
2434  msgid "Executables (*.exe)|*.exe"
2435  msgstr "Exécutables (*.exe)|*.exe"
2436  
2437 -#: src/hugin/AutoCtrlPointCreator.cpp:152
2438 -#: src/hugin/AutoCtrlPointCreator.cpp:167
2439 -#: src/hugin/AutoCtrlPointCreator.cpp:339
2440 +#: src/hugin/AutoCtrlPointCreator.cpp:157
2441 +#: src/hugin/AutoCtrlPointCreator.cpp:209
2442 +#: src/hugin/AutoCtrlPointCreator.cpp:401
2443  msgid "No autopano selected"
2444  msgstr "Pas d'autopano sélectionné"
2445  
2446 -#: src/hugin/AutoCtrlPointCreator.cpp:159
2447 -msgid "Select autopano-sift frontend script"
2448 +#: src/hugin/AutoCtrlPointCreator.cpp:201
2449 +#, fuzzy
2450 +msgid "Select autopano frontend script"
2451  msgstr "Sélectionner le script frontal d'autopano-sift"
2452  
2453 -#: src/hugin/AutoCtrlPointCreator.cpp:205
2454 +#: src/hugin/AutoCtrlPointCreator.cpp:203
2455 +msgid "Shell Scripts (*.sh)|*.sh"
2456 +msgstr ""
2457 +
2458 +#: src/hugin/AutoCtrlPointCreator.cpp:248
2459  #, c-format
2460  msgid "Please use either %namefile or %i in the autopano-sift command line."
2461  msgstr ""
2462  "Veuillez entrer soit %namefile soit %i sur la ligne de commande d'autopano-"
2463  "sift."
2464  
2465 -#: src/hugin/AutoCtrlPointCreator.cpp:206
2466 -#: src/hugin/AutoCtrlPointCreator.cpp:211
2467 +#: src/hugin/AutoCtrlPointCreator.cpp:249
2468 +#: src/hugin/AutoCtrlPointCreator.cpp:254
2469  msgid "Error in Autopano command"
2470  msgstr "Erreur dans la commande Autopano"
2471  
2472 -#: src/hugin/AutoCtrlPointCreator.cpp:210
2473 +#: src/hugin/AutoCtrlPointCreator.cpp:253
2474  #, c-format
2475  msgid ""
2476  "Please use  %namefile or %i to specify the input files for autopano-sift"
2477 @@ -87,8 +92,18 @@
2478  "Veuillez utiliser %namefile ou %i pour préciser les fichiers d'entrée "
2479  "d'autopano-sift"
2480  
2481 -#: src/hugin/AutoCtrlPointCreator.cpp:243
2482 -#: src/hugin/AutoCtrlPointCreator.cpp:377
2483 +#: src/hugin/AutoCtrlPointCreator.cpp:288
2484 +#, fuzzy
2485 +msgid "Select autopano .Net executable."
2486 +msgstr "Sélectionner le type d'autopano"
2487 +
2488 +#: src/hugin/AutoCtrlPointCreator.cpp:297
2489 +#, fuzzy
2490 +msgid "No autopano directory selected"
2491 +msgstr "Pas d'autopano sélectionné"
2492 +
2493 +#: src/hugin/AutoCtrlPointCreator.cpp:305
2494 +#: src/hugin/AutoCtrlPointCreator.cpp:439
2495  msgid ""
2496  "autopano command line too long.\n"
2497  "This is a windows limitation\n"
2498 @@ -100,18 +115,18 @@
2499  "Veuillez sélectionner moins d'images ou placez les images\n"
2500  "dans un dossier avec un chemin plus court."
2501  
2502 -#: src/hugin/AutoCtrlPointCreator.cpp:244
2503 -#: src/hugin/AutoCtrlPointCreator.cpp:378 src/hugin/NonaStitcherPanel.cpp:348
2504 +#: src/hugin/AutoCtrlPointCreator.cpp:306
2505 +#: src/hugin/AutoCtrlPointCreator.cpp:440 src/hugin/NonaStitcherPanel.cpp:350
2506  msgid "Too many images selected"
2507  msgstr "Trop d'images ont Ã©té sélectionnées"
2508  
2509 -#: src/hugin/AutoCtrlPointCreator.cpp:253
2510 -#: src/hugin/AutoCtrlPointCreator.cpp:385
2511 +#: src/hugin/AutoCtrlPointCreator.cpp:315
2512 +#: src/hugin/AutoCtrlPointCreator.cpp:447
2513  msgid "Running autopano"
2514  msgstr "Lancement d'autopano"
2515  
2516 -#: src/hugin/AutoCtrlPointCreator.cpp:253
2517 -#: src/hugin/AutoCtrlPointCreator.cpp:385
2518 +#: src/hugin/AutoCtrlPointCreator.cpp:315
2519 +#: src/hugin/AutoCtrlPointCreator.cpp:447
2520  msgid ""
2521  "Please wait while autopano searches control points\n"
2522  "See the command window for autopanos' progress"
2523 @@ -120,31 +135,31 @@
2524  "Vous pouvez suivre l'évolution du travail d'autopano dans la fenêtre de "
2525  "commande"
2526  
2527 -#: src/hugin/AutoCtrlPointCreator.cpp:282
2528 -#: src/hugin/AutoCtrlPointCreator.cpp:295
2529 -#: src/hugin/AutoCtrlPointCreator.cpp:400 src/hugin/NonaStitcherPanel.cpp:388
2530 -#: src/hugin/NonaStitcherPanel.cpp:396
2531 +#: src/hugin/AutoCtrlPointCreator.cpp:344
2532 +#: src/hugin/AutoCtrlPointCreator.cpp:357
2533 +#: src/hugin/AutoCtrlPointCreator.cpp:462 src/hugin/NonaStitcherPanel.cpp:392
2534 +#: src/hugin/NonaStitcherPanel.cpp:401
2535  msgid "Could not execute command: "
2536  msgstr "Impossible d'exécuter la commande : "
2537  
2538 -#: src/hugin/AutoCtrlPointCreator.cpp:282
2539 +#: src/hugin/AutoCtrlPointCreator.cpp:344
2540  msgid "ShellExecuteEx failed"
2541  msgstr "Échec de ShellExecuteEx"
2542  
2543 -#: src/hugin/AutoCtrlPointCreator.cpp:295
2544 -#: src/hugin/AutoCtrlPointCreator.cpp:300
2545 -#: src/hugin/AutoCtrlPointCreator.cpp:400
2546 -#: src/hugin/AutoCtrlPointCreator.cpp:406 src/hugin/NonaStitcherPanel.cpp:396
2547 +#: src/hugin/AutoCtrlPointCreator.cpp:357
2548 +#: src/hugin/AutoCtrlPointCreator.cpp:362
2549 +#: src/hugin/AutoCtrlPointCreator.cpp:462
2550 +#: src/hugin/AutoCtrlPointCreator.cpp:468 src/hugin/NonaStitcherPanel.cpp:401
2551  msgid "wxExecute Error"
2552  msgstr "Erreur wxExecute"
2553  
2554 -#: src/hugin/AutoCtrlPointCreator.cpp:298
2555 -#: src/hugin/AutoCtrlPointCreator.cpp:404 src/hugin/NonaStitcherPanel.cpp:399
2556 +#: src/hugin/AutoCtrlPointCreator.cpp:360
2557 +#: src/hugin/AutoCtrlPointCreator.cpp:466 src/hugin/NonaStitcherPanel.cpp:404
2558  msgid "command: "
2559  msgstr "commande : "
2560  
2561 -#: src/hugin/AutoCtrlPointCreator.cpp:299
2562 -#: src/hugin/AutoCtrlPointCreator.cpp:405 src/hugin/NonaStitcherPanel.cpp:400
2563 +#: src/hugin/AutoCtrlPointCreator.cpp:361
2564 +#: src/hugin/AutoCtrlPointCreator.cpp:467 src/hugin/NonaStitcherPanel.cpp:405
2565  msgid ""
2566  "\n"
2567  "failed with error code: "
2568 @@ -152,13 +167,13 @@
2569  "\n"
2570  "a Ã©choué avec un code erreur : "
2571  
2572 -#: src/hugin/AutoCtrlPointCreator.cpp:306
2573 -#: src/hugin/AutoCtrlPointCreator.cpp:413
2574 +#: src/hugin/AutoCtrlPointCreator.cpp:368
2575 +#: src/hugin/AutoCtrlPointCreator.cpp:475
2576  msgid "Could not open "
2577  msgstr "Impossible d'ouvrir "
2578  
2579 -#: src/hugin/AutoCtrlPointCreator.cpp:306
2580 -#: src/hugin/AutoCtrlPointCreator.cpp:413
2581 +#: src/hugin/AutoCtrlPointCreator.cpp:368
2582 +#: src/hugin/AutoCtrlPointCreator.cpp:475
2583  msgid ""
2584  " for reading\n"
2585  "This is an indicator that the autopano call failed,\n"
2586 @@ -172,16 +187,16 @@
2587  "\n"
2588  "Commande autopano : "
2589  
2590 -#: src/hugin/AutoCtrlPointCreator.cpp:307
2591 -#: src/hugin/AutoCtrlPointCreator.cpp:416
2592 +#: src/hugin/AutoCtrlPointCreator.cpp:369
2593 +#: src/hugin/AutoCtrlPointCreator.cpp:478
2594  msgid "autopano failure"
2595  msgstr "Échec d'autopano"
2596  
2597 -#: src/hugin/AutoCtrlPointCreator.cpp:333 src/hugin/PreferencesDialog.cpp:239
2598 +#: src/hugin/AutoCtrlPointCreator.cpp:395 src/hugin/PreferencesDialog.cpp:239
2599  msgid "Executables (*.exe,*.vbs,*.cmd)|*.exe;*.vbs;*.cmd"
2600  msgstr "Exécutables (*.exe,*.vbs,*.cmd)|*.exe;*.vbs;*.cmd"
2601  
2602 -#: src/hugin/AutoCtrlPointCreator.cpp:414
2603 +#: src/hugin/AutoCtrlPointCreator.cpp:476
2604  msgid ""
2605  "\n"
2606  " current directory:"
2607 @@ -228,27 +243,27 @@
2608  msgid "Distance"
2609  msgstr "Distance"
2610  
2611 -#: src/hugin/CPEditorPanel.cpp:406
2612 +#: src/hugin/CPEditorPanel.cpp:405
2613  msgid "No corresponding point found"
2614  msgstr "Aucun point de correspondance n'a Ã©té trouvé"
2615  
2616 -#: src/hugin/CPEditorPanel.cpp:475
2617 +#: src/hugin/CPEditorPanel.cpp:474
2618  msgid "new control point added"
2619  msgstr "Un nouveau point de contrôle a Ã©té ajouté"
2620  
2621 -#: src/hugin/CPEditorPanel.cpp:575 src/hugin/CPEditorPanel.cpp:781
2622 +#: src/hugin/CPEditorPanel.cpp:574 src/hugin/CPEditorPanel.cpp:780
2623  msgid "searching similar point..."
2624  msgstr "Recherche d'un point similaire..."
2625  
2626 -#: src/hugin/CPEditorPanel.cpp:594 src/hugin/CPEditorPanel.cpp:709
2627 +#: src/hugin/CPEditorPanel.cpp:593 src/hugin/CPEditorPanel.cpp:708
2628  msgid "Error during Fine-tune"
2629  msgstr "Erreur lors de l'ajustement précis"
2630  
2631 -#: src/hugin/CPEditorPanel.cpp:625
2632 +#: src/hugin/CPEditorPanel.cpp:624
2633  msgid "Estimated point outside image"
2634  msgstr "Le point estimé est en dehors de l'image"
2635  
2636 -#: src/hugin/CPEditorPanel.cpp:827
2637 +#: src/hugin/CPEditorPanel.cpp:826
2638  #, c-format
2639  msgid ""
2640  "Point finetuned, angle: %.0f deg, correlation coefficient: %0.3f, curvature: "
2641 @@ -257,7 +272,7 @@
2642  "Point ajusté précisément, angle : %.0f deg, coefficient de corrélation : %"
2643  "0.3f, courbure %0.3f %0.3f"
2644  
2645 -#: src/hugin/CPEditorPanel.cpp:833
2646 +#: src/hugin/CPEditorPanel.cpp:832
2647  #, c-format
2648  msgid ""
2649  "No similar point found.\n"
2650 @@ -268,36 +283,36 @@
2651  "coefficient de corrélation : %.3f, (devrait Ãªtre > % .3f)\n"
2652  "courbure du pic : (%.3f, %.3f), (devrait Ãªtre > %.3f)"
2653  
2654 -#: src/hugin/CPEditorPanel.cpp:835
2655 +#: src/hugin/CPEditorPanel.cpp:834
2656  msgid "No similar point found"
2657  msgstr "Aucun point semblable n'a Ã©té trouvé"
2658  
2659 -#: src/hugin/CPEditorPanel.cpp:1151 src/hugin/CPListFrame.cpp:402
2660 +#: src/hugin/CPEditorPanel.cpp:1150 src/hugin/CPListFrame.cpp:402
2661  #: src/hugin/PreviewFrame.cpp:156 src/hugin/xrc/cp_editor_panel.xrs:24
2662  msgid "normal"
2663  msgstr "normal"
2664  
2665 -#: src/hugin/CPEditorPanel.cpp:1154 src/hugin/CPListFrame.cpp:405
2666 +#: src/hugin/CPEditorPanel.cpp:1153 src/hugin/CPListFrame.cpp:405
2667  msgid "vert. Line"
2668  msgstr "ligne vert."
2669  
2670 -#: src/hugin/CPEditorPanel.cpp:1157 src/hugin/CPListFrame.cpp:408
2671 +#: src/hugin/CPEditorPanel.cpp:1156 src/hugin/CPListFrame.cpp:408
2672  msgid "horiz. Line"
2673  msgstr "ligne horiz."
2674  
2675 -#: src/hugin/CPEditorPanel.cpp:1412
2676 +#: src/hugin/CPEditorPanel.cpp:1411
2677  msgid "Cannot estimate image position without control points"
2678  msgstr "Impossible d'estimer la position de l'image sans point de contrôle"
2679  
2680 -#: src/hugin/CPEditorPanel.cpp:1603
2681 +#: src/hugin/CPEditorPanel.cpp:1602
2682  msgid "Select Point in right image"
2683  msgstr "Sélectionner un point sur l'image de droite"
2684  
2685 -#: src/hugin/CPEditorPanel.cpp:1615
2686 +#: src/hugin/CPEditorPanel.cpp:1614
2687  msgid "Select Point in left image"
2688  msgstr "Sélectionner un point sur l'image de gauche"
2689  
2690 -#: src/hugin/CPEditorPanel.cpp:1634
2691 +#: src/hugin/CPEditorPanel.cpp:1633
2692  msgid "change points, or press right mouse button to add the pair"
2693  msgstr ""
2694  "modifier les points ou presser le bouton droit de la souris pour ajouter la "
2695 @@ -402,6 +417,15 @@
2696  msgid "Always center Crop on d,e"
2697  msgstr ""
2698  
2699 +#: src/hugin/ImageCenter.cpp:105 src/hugin/xrc/pref_dialog.xrs:68
2700 +msgid "Ok"
2701 +msgstr "Valider"
2702 +
2703 +#: src/hugin/ImageCenter.cpp:110 src/hugin/RunOptimizerFrame.cpp:310
2704 +#: src/hugin/xrc/edit_text.xrs:3 src/hugin/xrc/pref_dialog.xrs:70
2705 +msgid "Cancel"
2706 +msgstr "Abandonner"
2707 +
2708  #: src/hugin/ImageCenter.cpp:207 src/hugin/ImageCenter.cpp:222
2709  #: src/hugin/ImageCenter.cpp:237 src/hugin/ImageCenter.cpp:252
2710  #, fuzzy
2711 @@ -510,55 +534,55 @@
2712  msgid "Equirectangular"
2713  msgstr "Equirectangulaire"
2714  
2715 -#: src/hugin/ImagesPanel.cpp:271 src/hugin/ImagesPanel.cpp:292
2716 -#: src/hugin/ImagesPanel.cpp:312
2717 +#: src/hugin/ImagesPanel.cpp:270 src/hugin/ImagesPanel.cpp:291
2718 +#: src/hugin/ImagesPanel.cpp:311
2719  msgid "Value must be numeric."
2720  msgstr "La valeur doit Ãªtre numérique."
2721  
2722 -#: src/hugin/ImagesPanel.cpp:563
2723 +#: src/hugin/ImagesPanel.cpp:562
2724  #, c-format
2725  msgid "Really Delete %d control points?"
2726  msgstr "Voulez-vous vraiment supprimer %d points de contrôle ?"
2727  
2728 -#: src/hugin/ImagesPanel.cpp:565
2729 +#: src/hugin/ImagesPanel.cpp:564
2730  msgid "Delete Control Points"
2731  msgstr "Effacer les points de contrôle"
2732  
2733 -#: src/hugin/LensPanel.cpp:649
2734 +#: src/hugin/LensPanel.cpp:650
2735  msgid "Not a jpeg file:"
2736  msgstr "Ce n'est pas un fichier jpeg :"
2737  
2738 -#: src/hugin/LensPanel.cpp:654 src/hugin/LensPanel.cpp:708
2739 -#: src/hugin/LensPanel.cpp:784 src/hugin/LensPanel.cpp:800
2740 -#: src/hugin/LensPanel.cpp:818
2741 +#: src/hugin/LensPanel.cpp:655 src/hugin/LensPanel.cpp:709
2742 +#: src/hugin/LensPanel.cpp:785 src/hugin/LensPanel.cpp:801
2743 +#: src/hugin/LensPanel.cpp:819
2744  msgid "Please select an image and try again"
2745  msgstr "Veuillez sélectionner une image et réessayer"
2746  
2747 -#: src/hugin/LensPanel.cpp:672
2748 +#: src/hugin/LensPanel.cpp:673
2749  msgid "Save lens parameters file"
2750  msgstr "Enregistrer le fichier des paramètres de l'objectif"
2751  
2752 -#: src/hugin/LensPanel.cpp:674 src/hugin/LensPanel.cpp:724
2753 +#: src/hugin/LensPanel.cpp:675 src/hugin/LensPanel.cpp:725
2754  msgid "Lens Project Files (*.ini)|*.ini|All files (*.*)|*.*"
2755  msgstr "Fichiers Projet d'objectifs (*.ini)|*.ini|tous les fichiers (*.*)|*.*"
2756  
2757 -#: src/hugin/LensPanel.cpp:722
2758 +#: src/hugin/LensPanel.cpp:723
2759  msgid "Load lens parameters"
2760  msgstr "Charger les paramètres de l'objectif"
2761  
2762 -#: src/hugin/LensPanel.cpp:808
2763 +#: src/hugin/LensPanel.cpp:809
2764  msgid "Enter new lens number"
2765  msgstr "Entrer le numéro du nouvel objectif"
2766  
2767 -#: src/hugin/LensPanel.cpp:808
2768 +#: src/hugin/LensPanel.cpp:809
2769  msgid "Lens number"
2770  msgstr "Objectif numéo"
2771  
2772 -#: src/hugin/LensPanel.cpp:809
2773 +#: src/hugin/LensPanel.cpp:810
2774  msgid "Change lens number"
2775  msgstr "Changer le numéro d'objectif"
2776  
2777 -#: src/hugin/LensPanel.cpp:833
2778 +#: src/hugin/LensPanel.cpp:834
2779  msgid ""
2780  "Enter Crop Factor for image\n"
2781  "\n"
2782 @@ -574,7 +598,7 @@
2783  "\n"
2784  "où Â«Â diagonale » est la diagonale (en mm) du film ou du capteur."
2785  
2786 -#: src/hugin/LensPanel.cpp:834
2787 +#: src/hugin/LensPanel.cpp:835
2788  msgid "Adding Image"
2789  msgstr "Ajout d'une image"
2790  
2791 @@ -608,44 +632,54 @@
2792  msgid "forced close"
2793  msgstr "Fermeture forcée"
2794  
2795 -#: src/hugin/MainFrame.cpp:491
2796 +#: src/hugin/MainFrame.cpp:476 src/hugin/MainFrame.cpp:504
2797 +#: src/hugin/MainFrame.cpp:523 src/hugin/PanoPanel.cpp:495
2798 +msgid "No images - Nothing to do"
2799 +msgstr ""
2800 +
2801 +#: src/hugin/MainFrame.cpp:476 src/hugin/MainFrame.cpp:504
2802 +#: src/hugin/MainFrame.cpp:523 src/hugin/PanoPanel.cpp:495
2803 +msgid "Warning"
2804 +msgstr ""
2805 +
2806 +#: src/hugin/MainFrame.cpp:495
2807  #, c-format
2808  msgid "saved project %s"
2809  msgstr "Projet %s enregistré"
2810  
2811 -#: src/hugin/MainFrame.cpp:500
2812 +#: src/hugin/MainFrame.cpp:508
2813  msgid "Save project file"
2814  msgstr "Enregistrer le fichier de projet"
2815  
2816 -#: src/hugin/MainFrame.cpp:502
2817 +#: src/hugin/MainFrame.cpp:510
2818  msgid "Project files (*.pto)|*.pto|All files (*.*)|*.*"
2819  msgstr "Fichiers de projets (*.pto)|*.pto|Tous les fichiers (*.*)|*.*"
2820  
2821 -#: src/hugin/MainFrame.cpp:515
2822 +#: src/hugin/MainFrame.cpp:527
2823  msgid "Save PTStitcher script file"
2824  msgstr "Enregistrer le fichier script PTStitcher"
2825  
2826 -#: src/hugin/MainFrame.cpp:517
2827 +#: src/hugin/MainFrame.cpp:529
2828  msgid "PTStitcher files (*.txt)|*.txt"
2829  msgstr "Fichiers PTStitcher (*.txt)|*.txt"
2830  
2831 -#: src/hugin/MainFrame.cpp:543
2832 +#: src/hugin/MainFrame.cpp:555
2833  msgid "Open project:   "
2834  msgstr "Ouverture du projet :   "
2835  
2836 -#: src/hugin/MainFrame.cpp:555
2837 +#: src/hugin/MainFrame.cpp:567
2838  msgid "Project opened"
2839  msgstr "Projet ouvert"
2840  
2841 -#: src/hugin/MainFrame.cpp:565
2842 +#: src/hugin/MainFrame.cpp:577
2843  msgid "Error opening project:   "
2844  msgstr "Erreur lors de l'ouverture du projet :   "
2845  
2846 -#: src/hugin/MainFrame.cpp:583
2847 +#: src/hugin/MainFrame.cpp:595
2848  msgid "Open project file"
2849  msgstr "Ouverture du fichier de projet"
2850  
2851 -#: src/hugin/MainFrame.cpp:585
2852 +#: src/hugin/MainFrame.cpp:597
2853  msgid ""
2854  "Project files (*.pto,*.ptp,*.pts,*.oto)|*.pto;*.ptp;*.pts;*.oto;|All files "
2855  "(*.*)|*.*"
2856 @@ -653,11 +687,11 @@
2857  "Fichiers de Projet (*.pto,*.ptp,*.pts,*oto)|*.pto;*ptp;*.pts;*.oto;|Tous les "
2858  "fichiers (*.*)|*.*"
2859  
2860 -#: src/hugin/MainFrame.cpp:593
2861 +#: src/hugin/MainFrame.cpp:605
2862  msgid "Open project: cancel"
2863  msgstr "Ouverture du projet : abandon"
2864  
2865 -#: src/hugin/MainFrame.cpp:615 src/include/hugin/wxPanoCommand.h:169
2866 +#: src/hugin/MainFrame.cpp:627 src/include/hugin/wxPanoCommand.h:169
2867  msgid ""
2868  "Image files (*.jpg)|*.jpg;*.JPG|Image files (*.png)|*.png;*.PNG|Image files "
2869  "(*.tif)|*.tif;*.TIF|All files (*.*)|*.*"
2870 @@ -665,27 +699,27 @@
2871  "Fichiers image (*.jpg)|*.jpg;*.JPG|Fichiers image (*.png);*.png;*.PNG|"
2872  "Fichiers image (*.tif)|*.tif;*.TIF|Tous les fichiers (*.*)|*.*"
2873  
2874 -#: src/hugin/MainFrame.cpp:616 src/include/hugin/wxPanoCommand.h:170
2875 +#: src/hugin/MainFrame.cpp:628 src/include/hugin/wxPanoCommand.h:170
2876  msgid "Add images"
2877  msgstr "Ajouter des images"
2878  
2879 -#: src/hugin/MainFrame.cpp:660
2880 +#: src/hugin/MainFrame.cpp:672
2881  msgid "Add Image: cancel"
2882  msgstr "Ajout d'images : abandon"
2883  
2884 -#: src/hugin/MainFrame.cpp:985
2885 +#: src/hugin/MainFrame.cpp:997
2886  msgid "hugin - FAQ"
2887  msgstr "Hugin - FAQ"
2888  
2889 -#: src/hugin/MainFrame.cpp:1064
2890 +#: src/hugin/MainFrame.cpp:1076
2891  msgid "Fine-tuning all points"
2892  msgstr "Ajuster précisément tous les points"
2893  
2894 -#: src/hugin/MainFrame.cpp:1066
2895 +#: src/hugin/MainFrame.cpp:1078
2896  msgid "Finetuning"
2897  msgstr "Ajustement précis"
2898  
2899 -#: src/hugin/MainFrame.cpp:1150
2900 +#: src/hugin/MainFrame.cpp:1162
2901  #, c-format
2902  msgid ""
2903  "%d points fine-tuned, %d points not updated due to low correlation\n"
2904 @@ -714,7 +748,7 @@
2905  "Utiliser la liste des points de contrôle (F3) pour afficher tous les points "
2906  "du projet actuel.\n"
2907  
2908 -#: src/hugin/MainFrame.cpp:1152
2909 +#: src/hugin/MainFrame.cpp:1164
2910  msgid "Fine-tune result"
2911  msgstr "Résultat de l'ajustement précis"
2912  
2913 @@ -757,7 +791,7 @@
2914  msgid "No enblend commandline tool selected"
2915  msgstr "Aucun outil en ligne de commande enblend sélectionné"
2916  
2917 -#: src/hugin/NonaStitcherPanel.cpp:347
2918 +#: src/hugin/NonaStitcherPanel.cpp:349
2919  msgid ""
2920  "Can not call enblend with a command line > 2000 characters.\n"
2921  "This is a Windows limitiation\n"
2922 @@ -770,11 +804,11 @@
2923  "veuillez utiliser moins d'images ou placez les images dans un dossier\n"
2924  "dont le chemin est plus court."
2925  
2926 -#: src/hugin/NonaStitcherPanel.cpp:353
2927 +#: src/hugin/NonaStitcherPanel.cpp:355
2928  msgid "Running Enblend"
2929  msgstr "Lancement d'Enblend"
2930  
2931 -#: src/hugin/NonaStitcherPanel.cpp:353
2932 +#: src/hugin/NonaStitcherPanel.cpp:355
2933  msgid ""
2934  "Enblend will take a while to finish processing the panorama\n"
2935  "You can watch the enblend progress in the command window"
2936 @@ -783,7 +817,7 @@
2937  "panorama\n"
2938  "Vous pouvez suivre la progression d'enblend dans la fenêtre de lancement."
2939  
2940 -#: src/hugin/NonaStitcherPanel.cpp:359
2941 +#: src/hugin/NonaStitcherPanel.cpp:363
2942  msgid ""
2943  "Could not execute enblend, system() failed: \n"
2944  "Command was :"
2945 @@ -791,15 +825,15 @@
2946  "Impossible d'exécuter enblend, system() a Ã©choué :\n"
2947  "La commande Ã©tait :"
2948  
2949 -#: src/hugin/NonaStitcherPanel.cpp:360
2950 +#: src/hugin/NonaStitcherPanel.cpp:364
2951  msgid "Error returned was :"
2952  msgstr "L'erreur retournée a Ã©té :"
2953  
2954 -#: src/hugin/NonaStitcherPanel.cpp:388
2955 +#: src/hugin/NonaStitcherPanel.cpp:392
2956  msgid "CreateProcess Error"
2957  msgstr "Erreur de CreateProcess"
2958  
2959 -#: src/hugin/NonaStitcherPanel.cpp:401
2960 +#: src/hugin/NonaStitcherPanel.cpp:406
2961  msgid "enblend error"
2962  msgstr "Erreur d'enblend"
2963  
2964 @@ -993,7 +1027,7 @@
2965  msgid "width needs to be an integer bigger than 0"
2966  msgstr "la largeur doit Ãªtre un nombre positif"
2967  
2968 -#: src/hugin/PanoPanel.cpp:502
2969 +#: src/hugin/PanoPanel.cpp:506
2970  msgid "Create panorama image"
2971  msgstr "Créer une image panoramique"
2972  
2973 @@ -1029,7 +1063,8 @@
2974  msgid "Select PTStitcher"
2975  msgstr "Sélectionner PTStitcher"
2976  
2977 -#: src/hugin/PreferencesDialog.cpp:188 src/hugin/RunOptimizerFrame.cpp:108
2978 +#: src/hugin/PreferencesDialog.cpp:188 src/hugin/RunOptimizerFrame.cpp:109
2979 +#: src/hugin/RunOptimizerFrame.cpp:123
2980  msgid "Select PTOptimizer"
2981  msgstr "Sélectionner PTOptimizer"
2982  
2983 @@ -1169,33 +1204,33 @@
2984  msgid "PTStitcher note"
2985  msgstr "Note de PTStitcher"
2986  
2987 -#: src/hugin/RunOptimizerFrame.cpp:116
2988 +#: src/hugin/RunOptimizerFrame.cpp:117
2989  msgid "No PTOptimizer.exe selected"
2990  msgstr "PTOptimizer.exe n'a pas Ã©té sélectionné"
2991  
2992 -#: src/hugin/RunOptimizerFrame.cpp:140
2993 +#: src/hugin/RunOptimizerFrame.cpp:131
2994 +#, fuzzy
2995 +msgid "No PTOptimizer selected"
2996 +msgstr "PTOptimizer.exe n'a pas Ã©té sélectionné"
2997 +
2998 +#: src/hugin/RunOptimizerFrame.cpp:155
2999  msgid "Failed to launch PTOptimizer."
3000  msgstr "Échec du lancement de PTOptimizer."
3001  
3002 -#: src/hugin/RunOptimizerFrame.cpp:151
3003 +#: src/hugin/RunOptimizerFrame.cpp:166
3004  msgid "Could not obtain PTOptimizer output"
3005  msgstr "Impossible de récupérer la sortie de PTOptimizer"
3006  
3007 -#: src/hugin/RunOptimizerFrame.cpp:161
3008 +#: src/hugin/RunOptimizerFrame.cpp:176
3009  msgid "Stop"
3010  msgstr "Arrêt"
3011  
3012 -#: src/hugin/RunOptimizerFrame.cpp:223
3013 +#: src/hugin/RunOptimizerFrame.cpp:238
3014  #, c-format
3015  msgid "Strategy %d, Iteration %d, average distance: %f"
3016  msgstr "Stratégie %d, itération %d, distance moyenne %f"
3017  
3018 -#: src/hugin/RunOptimizerFrame.cpp:295 src/hugin/xrc/edit_text.xrs:3
3019 -#: src/hugin/xrc/pref_dialog.xrs:70
3020 -msgid "Cancel"
3021 -msgstr "Abandonner"
3022 -
3023 -#: src/hugin/RunOptimizerFrame.cpp:327
3024 +#: src/hugin/RunOptimizerFrame.cpp:342
3025  msgid ""
3026  "Optimizer run finished.\n"
3027  "WARNING: a very small Field of View (v) has been estimated\n"
3028 @@ -1219,7 +1254,7 @@
3029  "partiels\n"
3030  "lorsque les images sont déjà alignées correctement."
3031  
3032 -#: src/hugin/RunOptimizerFrame.cpp:329
3033 +#: src/hugin/RunOptimizerFrame.cpp:344
3034  #, c-format
3035  msgid ""
3036  "Optimizer run finished.\n"
3037 @@ -2584,10 +2619,6 @@
3038  msgid "Delete remapped tiff files"
3039  msgstr ""
3040  
3041 -#: src/hugin/xrc/pref_dialog.xrs:68
3042 -msgid "Ok"
3043 -msgstr "Valider"
3044 -
3045  #: src/hugin/xrc/pref_dialog.xrs:71
3046  msgid "Load Defaults"
3047  msgstr "Chargement des valeurs par défaut"
3048 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/po/hugin.pot hugin/src/hugin/po/hugin.pot
3049 --- hugin-0.5-beta4/src/hugin/po/hugin.pot      2005-03-08 22:10:49.000000000 +0100
3050 +++ hugin/src/hugin/po/hugin.pot        2005-04-26 13:06:01.000000000 +0200
3051 @@ -8,7 +8,7 @@
3052  msgstr ""
3053  "Project-Id-Version: PACKAGE VERSION\n"
3054  "Report-Msgid-Bugs-To: pablo.dangelo@web.de\n"
3055 -"POT-Creation-Date: 2005-03-08 21:37+0100\n"
3056 +"POT-Creation-Date: 2005-04-26 12:54+0300\n"
3057  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
3058  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
3059  "Language-Team: LANGUAGE <LL@li.org>\n"
3060 @@ -16,71 +16,83 @@
3061  "Content-Type: text/plain; charset=CHARSET\n"
3062  "Content-Transfer-Encoding: 8bit\n"
3063  
3064 -#: src/hugin/AutoCtrlPointCreator.cpp:87
3065 +#: src/hugin/AutoCtrlPointCreator.cpp:92
3066  #, c-format
3067  msgid "Added %d control points"
3068  msgstr ""
3069  
3070 -#: src/hugin/AutoCtrlPointCreator.cpp:87
3071 +#: src/hugin/AutoCtrlPointCreator.cpp:92
3072  msgid "Autopano result"
3073  msgstr ""
3074  
3075 -#: src/hugin/AutoCtrlPointCreator.cpp:102
3076 +#: src/hugin/AutoCtrlPointCreator.cpp:107
3077  msgid "Autopano (version 1.03 or greater), from http://autopano.kolor.com"
3078  msgstr ""
3079  
3080 -#: src/hugin/AutoCtrlPointCreator.cpp:103
3081 +#: src/hugin/AutoCtrlPointCreator.cpp:108
3082  msgid "Autopano-Sift, from http://user.cs.tu-berlin.de/~nowozin/autopano-sift/"
3083  msgstr ""
3084  
3085 -#: src/hugin/AutoCtrlPointCreator.cpp:105
3086 +#: src/hugin/AutoCtrlPointCreator.cpp:110
3087  msgid "Choose which autopano program should be used\n"
3088  msgstr ""
3089  
3090 -#: src/hugin/AutoCtrlPointCreator.cpp:105
3091 +#: src/hugin/AutoCtrlPointCreator.cpp:110
3092  msgid "Select autopano type"
3093  msgstr ""
3094  
3095 -#: src/hugin/AutoCtrlPointCreator.cpp:144
3096 -#: src/hugin/AutoCtrlPointCreator.cpp:331
3097 +#: src/hugin/AutoCtrlPointCreator.cpp:149
3098 +#: src/hugin/AutoCtrlPointCreator.cpp:393
3099  msgid "Select autopano program / frontend script"
3100  msgstr ""
3101  
3102 -#: src/hugin/AutoCtrlPointCreator.cpp:146 src/hugin/PreferencesDialog.cpp:175
3103 +#: src/hugin/AutoCtrlPointCreator.cpp:151 src/hugin/PreferencesDialog.cpp:175
3104  #: src/hugin/PreferencesDialog.cpp:191 src/hugin/PreferencesDialog.cpp:207
3105 -#: src/hugin/PreferencesDialog.cpp:223 src/hugin/RunOptimizerFrame.cpp:110
3106 +#: src/hugin/PreferencesDialog.cpp:223 src/hugin/RunOptimizerFrame.cpp:111
3107  #: src/hugin/RunStitcherFrame.cpp:89
3108  msgid "Executables (*.exe)|*.exe"
3109  msgstr ""
3110  
3111 -#: src/hugin/AutoCtrlPointCreator.cpp:152
3112 -#: src/hugin/AutoCtrlPointCreator.cpp:167
3113 -#: src/hugin/AutoCtrlPointCreator.cpp:339
3114 +#: src/hugin/AutoCtrlPointCreator.cpp:157
3115 +#: src/hugin/AutoCtrlPointCreator.cpp:209
3116 +#: src/hugin/AutoCtrlPointCreator.cpp:401
3117  msgid "No autopano selected"
3118  msgstr ""
3119  
3120 -#: src/hugin/AutoCtrlPointCreator.cpp:159
3121 -msgid "Select autopano-sift frontend script"
3122 +#: src/hugin/AutoCtrlPointCreator.cpp:201
3123 +msgid "Select autopano frontend script"
3124  msgstr ""
3125  
3126 -#: src/hugin/AutoCtrlPointCreator.cpp:205
3127 +#: src/hugin/AutoCtrlPointCreator.cpp:203
3128 +msgid "Shell Scripts (*.sh)|*.sh"
3129 +msgstr ""
3130 +
3131 +#: src/hugin/AutoCtrlPointCreator.cpp:248
3132  #, c-format
3133  msgid "Please use either %namefile or %i in the autopano-sift command line."
3134  msgstr ""
3135  
3136 -#: src/hugin/AutoCtrlPointCreator.cpp:206
3137 -#: src/hugin/AutoCtrlPointCreator.cpp:211
3138 +#: src/hugin/AutoCtrlPointCreator.cpp:249
3139 +#: src/hugin/AutoCtrlPointCreator.cpp:254
3140  msgid "Error in Autopano command"
3141  msgstr ""
3142  
3143 -#: src/hugin/AutoCtrlPointCreator.cpp:210
3144 +#: src/hugin/AutoCtrlPointCreator.cpp:253
3145  #, c-format
3146  msgid ""
3147  "Please use  %namefile or %i to specify the input files for autopano-sift"
3148  msgstr ""
3149  
3150 -#: src/hugin/AutoCtrlPointCreator.cpp:243
3151 -#: src/hugin/AutoCtrlPointCreator.cpp:377
3152 +#: src/hugin/AutoCtrlPointCreator.cpp:288
3153 +msgid "Select autopano .Net executable."
3154 +msgstr ""
3155 +
3156 +#: src/hugin/AutoCtrlPointCreator.cpp:297
3157 +msgid "No autopano directory selected"
3158 +msgstr ""
3159 +
3160 +#: src/hugin/AutoCtrlPointCreator.cpp:305
3161 +#: src/hugin/AutoCtrlPointCreator.cpp:439
3162  msgid ""
3163  "autopano command line too long.\n"
3164  "This is a windows limitation\n"
3165 @@ -88,60 +100,60 @@
3166  "a shorter pathname"
3167  msgstr ""
3168  
3169 -#: src/hugin/AutoCtrlPointCreator.cpp:244
3170 -#: src/hugin/AutoCtrlPointCreator.cpp:378 src/hugin/NonaStitcherPanel.cpp:348
3171 +#: src/hugin/AutoCtrlPointCreator.cpp:306
3172 +#: src/hugin/AutoCtrlPointCreator.cpp:440 src/hugin/NonaStitcherPanel.cpp:350
3173  msgid "Too many images selected"
3174  msgstr ""
3175  
3176 -#: src/hugin/AutoCtrlPointCreator.cpp:253
3177 -#: src/hugin/AutoCtrlPointCreator.cpp:385
3178 +#: src/hugin/AutoCtrlPointCreator.cpp:315
3179 +#: src/hugin/AutoCtrlPointCreator.cpp:447
3180  msgid "Running autopano"
3181  msgstr ""
3182  
3183 -#: src/hugin/AutoCtrlPointCreator.cpp:253
3184 -#: src/hugin/AutoCtrlPointCreator.cpp:385
3185 +#: src/hugin/AutoCtrlPointCreator.cpp:315
3186 +#: src/hugin/AutoCtrlPointCreator.cpp:447
3187  msgid ""
3188  "Please wait while autopano searches control points\n"
3189  "See the command window for autopanos' progress"
3190  msgstr ""
3191  
3192 -#: src/hugin/AutoCtrlPointCreator.cpp:282
3193 -#: src/hugin/AutoCtrlPointCreator.cpp:295
3194 -#: src/hugin/AutoCtrlPointCreator.cpp:400 src/hugin/NonaStitcherPanel.cpp:388
3195 -#: src/hugin/NonaStitcherPanel.cpp:396
3196 +#: src/hugin/AutoCtrlPointCreator.cpp:344
3197 +#: src/hugin/AutoCtrlPointCreator.cpp:357
3198 +#: src/hugin/AutoCtrlPointCreator.cpp:462 src/hugin/NonaStitcherPanel.cpp:392
3199 +#: src/hugin/NonaStitcherPanel.cpp:401
3200  msgid "Could not execute command: "
3201  msgstr ""
3202  
3203 -#: src/hugin/AutoCtrlPointCreator.cpp:282
3204 +#: src/hugin/AutoCtrlPointCreator.cpp:344
3205  msgid "ShellExecuteEx failed"
3206  msgstr ""
3207  
3208 -#: src/hugin/AutoCtrlPointCreator.cpp:295
3209 -#: src/hugin/AutoCtrlPointCreator.cpp:300
3210 -#: src/hugin/AutoCtrlPointCreator.cpp:400
3211 -#: src/hugin/AutoCtrlPointCreator.cpp:406 src/hugin/NonaStitcherPanel.cpp:396
3212 +#: src/hugin/AutoCtrlPointCreator.cpp:357
3213 +#: src/hugin/AutoCtrlPointCreator.cpp:362
3214 +#: src/hugin/AutoCtrlPointCreator.cpp:462
3215 +#: src/hugin/AutoCtrlPointCreator.cpp:468 src/hugin/NonaStitcherPanel.cpp:401
3216  msgid "wxExecute Error"
3217  msgstr ""
3218  
3219 -#: src/hugin/AutoCtrlPointCreator.cpp:298
3220 -#: src/hugin/AutoCtrlPointCreator.cpp:404 src/hugin/NonaStitcherPanel.cpp:399
3221 +#: src/hugin/AutoCtrlPointCreator.cpp:360
3222 +#: src/hugin/AutoCtrlPointCreator.cpp:466 src/hugin/NonaStitcherPanel.cpp:404
3223  msgid "command: "
3224  msgstr ""
3225  
3226 -#: src/hugin/AutoCtrlPointCreator.cpp:299
3227 -#: src/hugin/AutoCtrlPointCreator.cpp:405 src/hugin/NonaStitcherPanel.cpp:400
3228 +#: src/hugin/AutoCtrlPointCreator.cpp:361
3229 +#: src/hugin/AutoCtrlPointCreator.cpp:467 src/hugin/NonaStitcherPanel.cpp:405
3230  msgid ""
3231  "\n"
3232  "failed with error code: "
3233  msgstr ""
3234  
3235 -#: src/hugin/AutoCtrlPointCreator.cpp:306
3236 -#: src/hugin/AutoCtrlPointCreator.cpp:413
3237 +#: src/hugin/AutoCtrlPointCreator.cpp:368
3238 +#: src/hugin/AutoCtrlPointCreator.cpp:475
3239  msgid "Could not open "
3240  msgstr ""
3241  
3242 -#: src/hugin/AutoCtrlPointCreator.cpp:306
3243 -#: src/hugin/AutoCtrlPointCreator.cpp:413
3244 +#: src/hugin/AutoCtrlPointCreator.cpp:368
3245 +#: src/hugin/AutoCtrlPointCreator.cpp:475
3246  msgid ""
3247  " for reading\n"
3248  "This is an indicator that the autopano call failed,\n"
3249 @@ -150,16 +162,16 @@
3250  "Autopano command: "
3251  msgstr ""
3252  
3253 -#: src/hugin/AutoCtrlPointCreator.cpp:307
3254 -#: src/hugin/AutoCtrlPointCreator.cpp:416
3255 +#: src/hugin/AutoCtrlPointCreator.cpp:369
3256 +#: src/hugin/AutoCtrlPointCreator.cpp:478
3257  msgid "autopano failure"
3258  msgstr ""
3259  
3260 -#: src/hugin/AutoCtrlPointCreator.cpp:333 src/hugin/PreferencesDialog.cpp:239
3261 +#: src/hugin/AutoCtrlPointCreator.cpp:395 src/hugin/PreferencesDialog.cpp:239
3262  msgid "Executables (*.exe,*.vbs,*.cmd)|*.exe;*.vbs;*.cmd"
3263  msgstr ""
3264  
3265 -#: src/hugin/AutoCtrlPointCreator.cpp:414
3266 +#: src/hugin/AutoCtrlPointCreator.cpp:476
3267  msgid ""
3268  "\n"
3269  " current directory:"
3270 @@ -204,34 +216,34 @@
3271  msgid "Distance"
3272  msgstr ""
3273  
3274 -#: src/hugin/CPEditorPanel.cpp:406
3275 +#: src/hugin/CPEditorPanel.cpp:405
3276  msgid "No corresponding point found"
3277  msgstr ""
3278  
3279 -#: src/hugin/CPEditorPanel.cpp:475
3280 +#: src/hugin/CPEditorPanel.cpp:474
3281  msgid "new control point added"
3282  msgstr ""
3283  
3284 -#: src/hugin/CPEditorPanel.cpp:575 src/hugin/CPEditorPanel.cpp:781
3285 +#: src/hugin/CPEditorPanel.cpp:574 src/hugin/CPEditorPanel.cpp:780
3286  msgid "searching similar point..."
3287  msgstr ""
3288  
3289 -#: src/hugin/CPEditorPanel.cpp:594 src/hugin/CPEditorPanel.cpp:709
3290 +#: src/hugin/CPEditorPanel.cpp:593 src/hugin/CPEditorPanel.cpp:708
3291  msgid "Error during Fine-tune"
3292  msgstr ""
3293  
3294 -#: src/hugin/CPEditorPanel.cpp:625
3295 +#: src/hugin/CPEditorPanel.cpp:624
3296  msgid "Estimated point outside image"
3297  msgstr ""
3298  
3299 -#: src/hugin/CPEditorPanel.cpp:827
3300 +#: src/hugin/CPEditorPanel.cpp:826
3301  #, c-format
3302  msgid ""
3303  "Point finetuned, angle: %.0f deg, correlation coefficient: %0.3f, curvature: "
3304  "%0.3f %0.3f "
3305  msgstr ""
3306  
3307 -#: src/hugin/CPEditorPanel.cpp:833
3308 +#: src/hugin/CPEditorPanel.cpp:832
3309  #, c-format
3310  msgid ""
3311  "No similar point found.\n"
3312 @@ -239,36 +251,36 @@
3313  "peak curvature: (%.3f, %.3f) ( should be > %.3f)"
3314  msgstr ""
3315  
3316 -#: src/hugin/CPEditorPanel.cpp:835
3317 +#: src/hugin/CPEditorPanel.cpp:834
3318  msgid "No similar point found"
3319  msgstr ""
3320  
3321 -#: src/hugin/CPEditorPanel.cpp:1151 src/hugin/CPListFrame.cpp:402
3322 +#: src/hugin/CPEditorPanel.cpp:1150 src/hugin/CPListFrame.cpp:402
3323  #: src/hugin/PreviewFrame.cpp:156 src/hugin/xrc/cp_editor_panel.xrs:24
3324  msgid "normal"
3325  msgstr ""
3326  
3327 -#: src/hugin/CPEditorPanel.cpp:1154 src/hugin/CPListFrame.cpp:405
3328 +#: src/hugin/CPEditorPanel.cpp:1153 src/hugin/CPListFrame.cpp:405
3329  msgid "vert. Line"
3330  msgstr ""
3331  
3332 -#: src/hugin/CPEditorPanel.cpp:1157 src/hugin/CPListFrame.cpp:408
3333 +#: src/hugin/CPEditorPanel.cpp:1156 src/hugin/CPListFrame.cpp:408
3334  msgid "horiz. Line"
3335  msgstr ""
3336  
3337 -#: src/hugin/CPEditorPanel.cpp:1412
3338 +#: src/hugin/CPEditorPanel.cpp:1411
3339  msgid "Cannot estimate image position without control points"
3340  msgstr ""
3341  
3342 -#: src/hugin/CPEditorPanel.cpp:1603
3343 +#: src/hugin/CPEditorPanel.cpp:1602
3344  msgid "Select Point in right image"
3345  msgstr ""
3346  
3347 -#: src/hugin/CPEditorPanel.cpp:1615
3348 +#: src/hugin/CPEditorPanel.cpp:1614
3349  msgid "Select Point in left image"
3350  msgstr ""
3351  
3352 -#: src/hugin/CPEditorPanel.cpp:1634
3353 +#: src/hugin/CPEditorPanel.cpp:1633
3354  msgid "change points, or press right mouse button to add the pair"
3355  msgstr ""
3356  
3357 @@ -366,6 +378,15 @@
3358  msgid "Always center Crop on d,e"
3359  msgstr ""
3360  
3361 +#: src/hugin/ImageCenter.cpp:105 src/hugin/xrc/pref_dialog.xrs:68
3362 +msgid "Ok"
3363 +msgstr ""
3364 +
3365 +#: src/hugin/ImageCenter.cpp:110 src/hugin/RunOptimizerFrame.cpp:310
3366 +#: src/hugin/xrc/edit_text.xrs:3 src/hugin/xrc/pref_dialog.xrs:70
3367 +msgid "Cancel"
3368 +msgstr ""
3369 +
3370  #: src/hugin/ImageCenter.cpp:207 src/hugin/ImageCenter.cpp:222
3371  #: src/hugin/ImageCenter.cpp:237 src/hugin/ImageCenter.cpp:252
3372  msgid "Please enter a valid number"
3373 @@ -473,55 +494,55 @@
3374  msgid "Equirectangular"
3375  msgstr ""
3376  
3377 -#: src/hugin/ImagesPanel.cpp:271 src/hugin/ImagesPanel.cpp:292
3378 -#: src/hugin/ImagesPanel.cpp:312
3379 +#: src/hugin/ImagesPanel.cpp:270 src/hugin/ImagesPanel.cpp:291
3380 +#: src/hugin/ImagesPanel.cpp:311
3381  msgid "Value must be numeric."
3382  msgstr ""
3383  
3384 -#: src/hugin/ImagesPanel.cpp:563
3385 +#: src/hugin/ImagesPanel.cpp:562
3386  #, c-format
3387  msgid "Really Delete %d control points?"
3388  msgstr ""
3389  
3390 -#: src/hugin/ImagesPanel.cpp:565
3391 +#: src/hugin/ImagesPanel.cpp:564
3392  msgid "Delete Control Points"
3393  msgstr ""
3394  
3395 -#: src/hugin/LensPanel.cpp:649
3396 +#: src/hugin/LensPanel.cpp:650
3397  msgid "Not a jpeg file:"
3398  msgstr ""
3399  
3400 -#: src/hugin/LensPanel.cpp:654 src/hugin/LensPanel.cpp:708
3401 -#: src/hugin/LensPanel.cpp:784 src/hugin/LensPanel.cpp:800
3402 -#: src/hugin/LensPanel.cpp:818
3403 +#: src/hugin/LensPanel.cpp:655 src/hugin/LensPanel.cpp:709
3404 +#: src/hugin/LensPanel.cpp:785 src/hugin/LensPanel.cpp:801
3405 +#: src/hugin/LensPanel.cpp:819
3406  msgid "Please select an image and try again"
3407  msgstr ""
3408  
3409 -#: src/hugin/LensPanel.cpp:672
3410 +#: src/hugin/LensPanel.cpp:673
3411  msgid "Save lens parameters file"
3412  msgstr ""
3413  
3414 -#: src/hugin/LensPanel.cpp:674 src/hugin/LensPanel.cpp:724
3415 +#: src/hugin/LensPanel.cpp:675 src/hugin/LensPanel.cpp:725
3416  msgid "Lens Project Files (*.ini)|*.ini|All files (*.*)|*.*"
3417  msgstr ""
3418  
3419 -#: src/hugin/LensPanel.cpp:722
3420 +#: src/hugin/LensPanel.cpp:723
3421  msgid "Load lens parameters"
3422  msgstr ""
3423  
3424 -#: src/hugin/LensPanel.cpp:808
3425 +#: src/hugin/LensPanel.cpp:809
3426  msgid "Enter new lens number"
3427  msgstr ""
3428  
3429 -#: src/hugin/LensPanel.cpp:808
3430 +#: src/hugin/LensPanel.cpp:809
3431  msgid "Lens number"
3432  msgstr ""
3433  
3434 -#: src/hugin/LensPanel.cpp:809
3435 +#: src/hugin/LensPanel.cpp:810
3436  msgid "Change lens number"
3437  msgstr ""
3438  
3439 -#: src/hugin/LensPanel.cpp:833
3440 +#: src/hugin/LensPanel.cpp:834
3441  msgid ""
3442  "Enter Crop Factor for image\n"
3443  "\n"
3444 @@ -531,7 +552,7 @@
3445  "where diagnal is the diagonal (in mm) of the film or imaging chip."
3446  msgstr ""
3447  
3448 -#: src/hugin/LensPanel.cpp:834
3449 +#: src/hugin/LensPanel.cpp:835
3450  msgid "Adding Image"
3451  msgstr ""
3452  
3453 @@ -560,80 +581,90 @@
3454  msgid "forced close"
3455  msgstr ""
3456  
3457 -#: src/hugin/MainFrame.cpp:491
3458 +#: src/hugin/MainFrame.cpp:476 src/hugin/MainFrame.cpp:504
3459 +#: src/hugin/MainFrame.cpp:523 src/hugin/PanoPanel.cpp:495
3460 +msgid "No images - Nothing to do"
3461 +msgstr ""
3462 +
3463 +#: src/hugin/MainFrame.cpp:476 src/hugin/MainFrame.cpp:504
3464 +#: src/hugin/MainFrame.cpp:523 src/hugin/PanoPanel.cpp:495
3465 +msgid "Warning"
3466 +msgstr ""
3467 +
3468 +#: src/hugin/MainFrame.cpp:495
3469  #, c-format
3470  msgid "saved project %s"
3471  msgstr ""
3472  
3473 -#: src/hugin/MainFrame.cpp:500
3474 +#: src/hugin/MainFrame.cpp:508
3475  msgid "Save project file"
3476  msgstr ""
3477  
3478 -#: src/hugin/MainFrame.cpp:502
3479 +#: src/hugin/MainFrame.cpp:510
3480  msgid "Project files (*.pto)|*.pto|All files (*.*)|*.*"
3481  msgstr ""
3482  
3483 -#: src/hugin/MainFrame.cpp:515
3484 +#: src/hugin/MainFrame.cpp:527
3485  msgid "Save PTStitcher script file"
3486  msgstr ""
3487  
3488 -#: src/hugin/MainFrame.cpp:517
3489 +#: src/hugin/MainFrame.cpp:529
3490  msgid "PTStitcher files (*.txt)|*.txt"
3491  msgstr ""
3492  
3493 -#: src/hugin/MainFrame.cpp:543
3494 +#: src/hugin/MainFrame.cpp:555
3495  msgid "Open project:   "
3496  msgstr ""
3497  
3498 -#: src/hugin/MainFrame.cpp:555
3499 +#: src/hugin/MainFrame.cpp:567
3500  msgid "Project opened"
3501  msgstr ""
3502  
3503 -#: src/hugin/MainFrame.cpp:565
3504 +#: src/hugin/MainFrame.cpp:577
3505  msgid "Error opening project:   "
3506  msgstr ""
3507  
3508 -#: src/hugin/MainFrame.cpp:583
3509 +#: src/hugin/MainFrame.cpp:595
3510  msgid "Open project file"
3511  msgstr ""
3512  
3513 -#: src/hugin/MainFrame.cpp:585
3514 +#: src/hugin/MainFrame.cpp:597
3515  msgid ""
3516  "Project files (*.pto,*.ptp,*.pts,*.oto)|*.pto;*.ptp;*.pts;*.oto;|All files "
3517  "(*.*)|*.*"
3518  msgstr ""
3519  
3520 -#: src/hugin/MainFrame.cpp:593
3521 +#: src/hugin/MainFrame.cpp:605
3522  msgid "Open project: cancel"
3523  msgstr ""
3524  
3525 -#: src/hugin/MainFrame.cpp:615 src/include/hugin/wxPanoCommand.h:169
3526 +#: src/hugin/MainFrame.cpp:627 src/include/hugin/wxPanoCommand.h:169
3527  msgid ""
3528  "Image files (*.jpg)|*.jpg;*.JPG|Image files (*.png)|*.png;*.PNG|Image files "
3529  "(*.tif)|*.tif;*.TIF|All files (*.*)|*.*"
3530  msgstr ""
3531  
3532 -#: src/hugin/MainFrame.cpp:616 src/include/hugin/wxPanoCommand.h:170
3533 +#: src/hugin/MainFrame.cpp:628 src/include/hugin/wxPanoCommand.h:170
3534  msgid "Add images"
3535  msgstr ""
3536  
3537 -#: src/hugin/MainFrame.cpp:660
3538 +#: src/hugin/MainFrame.cpp:672
3539  msgid "Add Image: cancel"
3540  msgstr ""
3541  
3542 -#: src/hugin/MainFrame.cpp:985
3543 +#: src/hugin/MainFrame.cpp:997
3544  msgid "hugin - FAQ"
3545  msgstr ""
3546  
3547 -#: src/hugin/MainFrame.cpp:1064
3548 +#: src/hugin/MainFrame.cpp:1076
3549  msgid "Fine-tuning all points"
3550  msgstr ""
3551  
3552 -#: src/hugin/MainFrame.cpp:1066
3553 +#: src/hugin/MainFrame.cpp:1078
3554  msgid "Finetuning"
3555  msgstr ""
3556  
3557 -#: src/hugin/MainFrame.cpp:1150
3558 +#: src/hugin/MainFrame.cpp:1162
3559  #, c-format
3560  msgid ""
3561  "%d points fine-tuned, %d points not updated due to low correlation\n"
3562 @@ -649,7 +680,7 @@
3563  "Use the Control Point list (F3) to see all point of the current project\n"
3564  msgstr ""
3565  
3566 -#: src/hugin/MainFrame.cpp:1152
3567 +#: src/hugin/MainFrame.cpp:1164
3568  msgid "Fine-tune result"
3569  msgstr ""
3570  
3571 @@ -692,7 +723,7 @@
3572  msgid "No enblend commandline tool selected"
3573  msgstr ""
3574  
3575 -#: src/hugin/NonaStitcherPanel.cpp:347
3576 +#: src/hugin/NonaStitcherPanel.cpp:349
3577  msgid ""
3578  "Can not call enblend with a command line > 2000 characters.\n"
3579  "This is a Windows limitiation\n"
3580 @@ -700,31 +731,31 @@
3581  "a shorter pathname"
3582  msgstr ""
3583  
3584 -#: src/hugin/NonaStitcherPanel.cpp:353
3585 +#: src/hugin/NonaStitcherPanel.cpp:355
3586  msgid "Running Enblend"
3587  msgstr ""
3588  
3589 -#: src/hugin/NonaStitcherPanel.cpp:353
3590 +#: src/hugin/NonaStitcherPanel.cpp:355
3591  msgid ""
3592  "Enblend will take a while to finish processing the panorama\n"
3593  "You can watch the enblend progress in the command window"
3594  msgstr ""
3595  
3596 -#: src/hugin/NonaStitcherPanel.cpp:359
3597 +#: src/hugin/NonaStitcherPanel.cpp:363
3598  msgid ""
3599  "Could not execute enblend, system() failed: \n"
3600  "Command was :"
3601  msgstr ""
3602  
3603 -#: src/hugin/NonaStitcherPanel.cpp:360
3604 +#: src/hugin/NonaStitcherPanel.cpp:364
3605  msgid "Error returned was :"
3606  msgstr ""
3607  
3608 -#: src/hugin/NonaStitcherPanel.cpp:388
3609 +#: src/hugin/NonaStitcherPanel.cpp:392
3610  msgid "CreateProcess Error"
3611  msgstr ""
3612  
3613 -#: src/hugin/NonaStitcherPanel.cpp:401
3614 +#: src/hugin/NonaStitcherPanel.cpp:406
3615  msgid "enblend error"
3616  msgstr ""
3617  
3618 @@ -872,7 +903,7 @@
3619  msgid "width needs to be an integer bigger than 0"
3620  msgstr ""
3621  
3622 -#: src/hugin/PanoPanel.cpp:502
3623 +#: src/hugin/PanoPanel.cpp:506
3624  msgid "Create panorama image"
3625  msgstr ""
3626  
3627 @@ -908,7 +939,8 @@
3628  msgid "Select PTStitcher"
3629  msgstr ""
3630  
3631 -#: src/hugin/PreferencesDialog.cpp:188 src/hugin/RunOptimizerFrame.cpp:108
3632 +#: src/hugin/PreferencesDialog.cpp:188 src/hugin/RunOptimizerFrame.cpp:109
3633 +#: src/hugin/RunOptimizerFrame.cpp:123
3634  msgid "Select PTOptimizer"
3635  msgstr ""
3636  
3637 @@ -1048,33 +1080,32 @@
3638  msgid "PTStitcher note"
3639  msgstr ""
3640  
3641 -#: src/hugin/RunOptimizerFrame.cpp:116
3642 +#: src/hugin/RunOptimizerFrame.cpp:117
3643  msgid "No PTOptimizer.exe selected"
3644  msgstr ""
3645  
3646 -#: src/hugin/RunOptimizerFrame.cpp:140
3647 +#: src/hugin/RunOptimizerFrame.cpp:131
3648 +msgid "No PTOptimizer selected"
3649 +msgstr ""
3650 +
3651 +#: src/hugin/RunOptimizerFrame.cpp:155
3652  msgid "Failed to launch PTOptimizer."
3653  msgstr ""
3654  
3655 -#: src/hugin/RunOptimizerFrame.cpp:151
3656 +#: src/hugin/RunOptimizerFrame.cpp:166
3657  msgid "Could not obtain PTOptimizer output"
3658  msgstr ""
3659  
3660 -#: src/hugin/RunOptimizerFrame.cpp:161
3661 +#: src/hugin/RunOptimizerFrame.cpp:176
3662  msgid "Stop"
3663  msgstr ""
3664  
3665 -#: src/hugin/RunOptimizerFrame.cpp:223
3666 +#: src/hugin/RunOptimizerFrame.cpp:238
3667  #, c-format
3668  msgid "Strategy %d, Iteration %d, average distance: %f"
3669  msgstr ""
3670  
3671 -#: src/hugin/RunOptimizerFrame.cpp:295 src/hugin/xrc/edit_text.xrs:3
3672 -#: src/hugin/xrc/pref_dialog.xrs:70
3673 -msgid "Cancel"
3674 -msgstr ""
3675 -
3676 -#: src/hugin/RunOptimizerFrame.cpp:327
3677 +#: src/hugin/RunOptimizerFrame.cpp:342
3678  msgid ""
3679  "Optimizer run finished.\n"
3680  "WARNING: a very small Field of View (v) has been estimated\n"
3681 @@ -1088,7 +1119,7 @@
3682  "when the images are already aligned well."
3683  msgstr ""
3684  
3685 -#: src/hugin/RunOptimizerFrame.cpp:329
3686 +#: src/hugin/RunOptimizerFrame.cpp:344
3687  #, c-format
3688  msgid ""
3689  "Optimizer run finished.\n"
3690 @@ -2399,10 +2430,6 @@
3691  msgid "Delete remapped tiff files"
3692  msgstr ""
3693  
3694 -#: src/hugin/xrc/pref_dialog.xrs:68
3695 -msgid "Ok"
3696 -msgstr ""
3697 -
3698  #: src/hugin/xrc/pref_dialog.xrs:71
3699  msgid "Load Defaults"
3700  msgstr ""
3701 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/po/it.po hugin/src/hugin/po/it.po
3702 --- hugin-0.5-beta4/src/hugin/po/it.po  2005-03-08 22:10:49.000000000 +0100
3703 +++ hugin/src/hugin/po/it.po    2005-04-26 13:06:01.000000000 +0200
3704 @@ -7,7 +7,7 @@
3705  msgstr ""
3706  "Project-Id-Version: hugin 0.4\n"
3707  "Report-Msgid-Bugs-To: pablo.dangelo@web.de\n"
3708 -"POT-Creation-Date: 2005-03-08 21:37+0100\n"
3709 +"POT-Creation-Date: 2005-04-26 12:54+0300\n"
3710  "PO-Revision-Date: 2005-02-23 01:13+0100\n"
3711  "Last-Translator: Luca Vascon <crimsonkingit@yahoo.com>\n"
3712  "Language-Team: Italian <tp@lists.linux.it>\n"
3713 @@ -16,66 +16,71 @@
3714  "Content-Transfer-Encoding: 8bit\n"
3715  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
3716  
3717 -#: src/hugin/AutoCtrlPointCreator.cpp:87
3718 +#: src/hugin/AutoCtrlPointCreator.cpp:92
3719  #, c-format
3720  msgid "Added %d control points"
3721  msgstr "Aggiunti %d punti di controllo"
3722  
3723 -#: src/hugin/AutoCtrlPointCreator.cpp:87
3724 +#: src/hugin/AutoCtrlPointCreator.cpp:92
3725  msgid "Autopano result"
3726  msgstr "Risultati di Autopano"
3727  
3728 -#: src/hugin/AutoCtrlPointCreator.cpp:102
3729 +#: src/hugin/AutoCtrlPointCreator.cpp:107
3730  msgid "Autopano (version 1.03 or greater), from http://autopano.kolor.com"
3731  msgstr ""
3732  "Autopano (a partire dalla versione  1.03), da http://autopano.kolor.com"
3733  
3734 -#: src/hugin/AutoCtrlPointCreator.cpp:103
3735 +#: src/hugin/AutoCtrlPointCreator.cpp:108
3736  msgid "Autopano-Sift, from http://user.cs.tu-berlin.de/~nowozin/autopano-sift/"
3737  msgstr "Autopano-Sift, da: http://user.cs.tu-berlin.de/~nowozin/autopano-sift/"
3738  
3739 -#: src/hugin/AutoCtrlPointCreator.cpp:105
3740 +#: src/hugin/AutoCtrlPointCreator.cpp:110
3741  msgid "Choose which autopano program should be used\n"
3742  msgstr "Scegliere quale versione di Autopano utilizzare\n"
3743  
3744 -#: src/hugin/AutoCtrlPointCreator.cpp:105
3745 +#: src/hugin/AutoCtrlPointCreator.cpp:110
3746  msgid "Select autopano type"
3747  msgstr "Selezionare il tipo di autopano"
3748  
3749 -#: src/hugin/AutoCtrlPointCreator.cpp:144
3750 -#: src/hugin/AutoCtrlPointCreator.cpp:331
3751 +#: src/hugin/AutoCtrlPointCreator.cpp:149
3752 +#: src/hugin/AutoCtrlPointCreator.cpp:393
3753  msgid "Select autopano program / frontend script"
3754  msgstr "Scegliere il programma Autopano / script"
3755  
3756 -#: src/hugin/AutoCtrlPointCreator.cpp:146 src/hugin/PreferencesDialog.cpp:175
3757 +#: src/hugin/AutoCtrlPointCreator.cpp:151 src/hugin/PreferencesDialog.cpp:175
3758  #: src/hugin/PreferencesDialog.cpp:191 src/hugin/PreferencesDialog.cpp:207
3759 -#: src/hugin/PreferencesDialog.cpp:223 src/hugin/RunOptimizerFrame.cpp:110
3760 +#: src/hugin/PreferencesDialog.cpp:223 src/hugin/RunOptimizerFrame.cpp:111
3761  #: src/hugin/RunStitcherFrame.cpp:89
3762  msgid "Executables (*.exe)|*.exe"
3763  msgstr "Eseguibili (*.exe)|*.exe"
3764  
3765 -#: src/hugin/AutoCtrlPointCreator.cpp:152
3766 -#: src/hugin/AutoCtrlPointCreator.cpp:167
3767 -#: src/hugin/AutoCtrlPointCreator.cpp:339
3768 +#: src/hugin/AutoCtrlPointCreator.cpp:157
3769 +#: src/hugin/AutoCtrlPointCreator.cpp:209
3770 +#: src/hugin/AutoCtrlPointCreator.cpp:401
3771  msgid "No autopano selected"
3772  msgstr "Non e' stata selezionata una versione di Autopano"
3773  
3774 -#: src/hugin/AutoCtrlPointCreator.cpp:159
3775 -msgid "Select autopano-sift frontend script"
3776 +#: src/hugin/AutoCtrlPointCreator.cpp:201
3777 +#, fuzzy
3778 +msgid "Select autopano frontend script"
3779  msgstr "Selezionare uno script per autopano-sift"
3780  
3781 -#: src/hugin/AutoCtrlPointCreator.cpp:205
3782 +#: src/hugin/AutoCtrlPointCreator.cpp:203
3783 +msgid "Shell Scripts (*.sh)|*.sh"
3784 +msgstr ""
3785 +
3786 +#: src/hugin/AutoCtrlPointCreator.cpp:248
3787  #, c-format
3788  msgid "Please use either %namefile or %i in the autopano-sift command line."
3789  msgstr ""
3790  "Per favore, usare %namefile o %i nella linea di comando di autopano-sift."
3791  
3792 -#: src/hugin/AutoCtrlPointCreator.cpp:206
3793 -#: src/hugin/AutoCtrlPointCreator.cpp:211
3794 +#: src/hugin/AutoCtrlPointCreator.cpp:249
3795 +#: src/hugin/AutoCtrlPointCreator.cpp:254
3796  msgid "Error in Autopano command"
3797  msgstr "Erore di comando in Autopano"
3798  
3799 -#: src/hugin/AutoCtrlPointCreator.cpp:210
3800 +#: src/hugin/AutoCtrlPointCreator.cpp:253
3801  #, c-format
3802  msgid ""
3803  "Please use  %namefile or %i to specify the input files for autopano-sift"
3804 @@ -83,8 +88,18 @@
3805  "Per favore, usare %namefile o %i per specificare i files da usare in "
3806  "autopano-sift."
3807  
3808 -#: src/hugin/AutoCtrlPointCreator.cpp:243
3809 -#: src/hugin/AutoCtrlPointCreator.cpp:377
3810 +#: src/hugin/AutoCtrlPointCreator.cpp:288
3811 +#, fuzzy
3812 +msgid "Select autopano .Net executable."
3813 +msgstr "Selezionare il tipo di autopano"
3814 +
3815 +#: src/hugin/AutoCtrlPointCreator.cpp:297
3816 +#, fuzzy
3817 +msgid "No autopano directory selected"
3818 +msgstr "Non e' stata selezionata una versione di Autopano"
3819 +
3820 +#: src/hugin/AutoCtrlPointCreator.cpp:305
3821 +#: src/hugin/AutoCtrlPointCreator.cpp:439
3822  msgid ""
3823  "autopano command line too long.\n"
3824  "This is a windows limitation\n"
3825 @@ -96,18 +111,18 @@
3826  "Usare meno immagini, un nome piu' breve per l'immagine\n"
3827  "finale, un percorso path piu' corto nell'HD."
3828  
3829 -#: src/hugin/AutoCtrlPointCreator.cpp:244
3830 -#: src/hugin/AutoCtrlPointCreator.cpp:378 src/hugin/NonaStitcherPanel.cpp:348
3831 +#: src/hugin/AutoCtrlPointCreator.cpp:306
3832 +#: src/hugin/AutoCtrlPointCreator.cpp:440 src/hugin/NonaStitcherPanel.cpp:350
3833  msgid "Too many images selected"
3834  msgstr "Troppe immagini selezionate"
3835  
3836 -#: src/hugin/AutoCtrlPointCreator.cpp:253
3837 -#: src/hugin/AutoCtrlPointCreator.cpp:385
3838 +#: src/hugin/AutoCtrlPointCreator.cpp:315
3839 +#: src/hugin/AutoCtrlPointCreator.cpp:447
3840  msgid "Running autopano"
3841  msgstr "Autopano in esecuzione"
3842  
3843 -#: src/hugin/AutoCtrlPointCreator.cpp:253
3844 -#: src/hugin/AutoCtrlPointCreator.cpp:385
3845 +#: src/hugin/AutoCtrlPointCreator.cpp:315
3846 +#: src/hugin/AutoCtrlPointCreator.cpp:447
3847  msgid ""
3848  "Please wait while autopano searches control points\n"
3849  "See the command window for autopanos' progress"
3850 @@ -116,31 +131,31 @@
3851  "controllo E' possibile sorvegliare\n"
3852  " il progresso di Autopano nella finestra dos."
3853  
3854 -#: src/hugin/AutoCtrlPointCreator.cpp:282
3855 -#: src/hugin/AutoCtrlPointCreator.cpp:295
3856 -#: src/hugin/AutoCtrlPointCreator.cpp:400 src/hugin/NonaStitcherPanel.cpp:388
3857 -#: src/hugin/NonaStitcherPanel.cpp:396
3858 +#: src/hugin/AutoCtrlPointCreator.cpp:344
3859 +#: src/hugin/AutoCtrlPointCreator.cpp:357
3860 +#: src/hugin/AutoCtrlPointCreator.cpp:462 src/hugin/NonaStitcherPanel.cpp:392
3861 +#: src/hugin/NonaStitcherPanel.cpp:401
3862  msgid "Could not execute command: "
3863  msgstr "Comando non eseguito:"
3864  
3865 -#: src/hugin/AutoCtrlPointCreator.cpp:282
3866 +#: src/hugin/AutoCtrlPointCreator.cpp:344
3867  msgid "ShellExecuteEx failed"
3868  msgstr "ShellExecuteEx fallito"
3869  
3870 -#: src/hugin/AutoCtrlPointCreator.cpp:295
3871 -#: src/hugin/AutoCtrlPointCreator.cpp:300
3872 -#: src/hugin/AutoCtrlPointCreator.cpp:400
3873 -#: src/hugin/AutoCtrlPointCreator.cpp:406 src/hugin/NonaStitcherPanel.cpp:396
3874 +#: src/hugin/AutoCtrlPointCreator.cpp:357
3875 +#: src/hugin/AutoCtrlPointCreator.cpp:362
3876 +#: src/hugin/AutoCtrlPointCreator.cpp:462
3877 +#: src/hugin/AutoCtrlPointCreator.cpp:468 src/hugin/NonaStitcherPanel.cpp:401
3878  msgid "wxExecute Error"
3879  msgstr "Errore di wxExecute"
3880  
3881 -#: src/hugin/AutoCtrlPointCreator.cpp:298
3882 -#: src/hugin/AutoCtrlPointCreator.cpp:404 src/hugin/NonaStitcherPanel.cpp:399
3883 +#: src/hugin/AutoCtrlPointCreator.cpp:360
3884 +#: src/hugin/AutoCtrlPointCreator.cpp:466 src/hugin/NonaStitcherPanel.cpp:404
3885  msgid "command: "
3886  msgstr "command:"
3887  
3888 -#: src/hugin/AutoCtrlPointCreator.cpp:299
3889 -#: src/hugin/AutoCtrlPointCreator.cpp:405 src/hugin/NonaStitcherPanel.cpp:400
3890 +#: src/hugin/AutoCtrlPointCreator.cpp:361
3891 +#: src/hugin/AutoCtrlPointCreator.cpp:467 src/hugin/NonaStitcherPanel.cpp:405
3892  msgid ""
3893  "\n"
3894  "failed with error code: "
3895 @@ -148,13 +163,13 @@
3896  "\n"
3897  "fallito, codice errore:"
3898  
3899 -#: src/hugin/AutoCtrlPointCreator.cpp:306
3900 -#: src/hugin/AutoCtrlPointCreator.cpp:413
3901 +#: src/hugin/AutoCtrlPointCreator.cpp:368
3902 +#: src/hugin/AutoCtrlPointCreator.cpp:475
3903  msgid "Could not open "
3904  msgstr "Apertura fallita"
3905  
3906 -#: src/hugin/AutoCtrlPointCreator.cpp:306
3907 -#: src/hugin/AutoCtrlPointCreator.cpp:413
3908 +#: src/hugin/AutoCtrlPointCreator.cpp:368
3909 +#: src/hugin/AutoCtrlPointCreator.cpp:475
3910  msgid ""
3911  " for reading\n"
3912  "This is an indicator that the autopano call failed,\n"
3913 @@ -167,16 +182,16 @@
3914  "oppure che hai sbagliato qualcosa \n"
3915  "nel dargli la linea di comando."
3916  
3917 -#: src/hugin/AutoCtrlPointCreator.cpp:307
3918 -#: src/hugin/AutoCtrlPointCreator.cpp:416
3919 +#: src/hugin/AutoCtrlPointCreator.cpp:369
3920 +#: src/hugin/AutoCtrlPointCreator.cpp:478
3921  msgid "autopano failure"
3922  msgstr "autopano in palla."
3923  
3924 -#: src/hugin/AutoCtrlPointCreator.cpp:333 src/hugin/PreferencesDialog.cpp:239
3925 +#: src/hugin/AutoCtrlPointCreator.cpp:395 src/hugin/PreferencesDialog.cpp:239
3926  msgid "Executables (*.exe,*.vbs,*.cmd)|*.exe;*.vbs;*.cmd"
3927  msgstr "Eseguibili (*.exe,*.vbs,*.cmd)|*.exe;*.vbs;*.cmd"
3928  
3929 -#: src/hugin/AutoCtrlPointCreator.cpp:414
3930 +#: src/hugin/AutoCtrlPointCreator.cpp:476
3931  msgid ""
3932  "\n"
3933  " current directory:"
3934 @@ -223,27 +238,27 @@
3935  msgid "Distance"
3936  msgstr "Distanza"
3937  
3938 -#: src/hugin/CPEditorPanel.cpp:406
3939 +#: src/hugin/CPEditorPanel.cpp:405
3940  msgid "No corresponding point found"
3941  msgstr "Nessuna corrispondenza trovata"
3942  
3943 -#: src/hugin/CPEditorPanel.cpp:475
3944 +#: src/hugin/CPEditorPanel.cpp:474
3945  msgid "new control point added"
3946  msgstr "nessun punto di controllo aggiunto."
3947  
3948 -#: src/hugin/CPEditorPanel.cpp:575 src/hugin/CPEditorPanel.cpp:781
3949 +#: src/hugin/CPEditorPanel.cpp:574 src/hugin/CPEditorPanel.cpp:780
3950  msgid "searching similar point..."
3951  msgstr "Ricerca punto simile..."
3952  
3953 -#: src/hugin/CPEditorPanel.cpp:594 src/hugin/CPEditorPanel.cpp:709
3954 +#: src/hugin/CPEditorPanel.cpp:593 src/hugin/CPEditorPanel.cpp:708
3955  msgid "Error during Fine-tune"
3956  msgstr "Errore  durante la calibrazione"
3957  
3958 -#: src/hugin/CPEditorPanel.cpp:625
3959 +#: src/hugin/CPEditorPanel.cpp:624
3960  msgid "Estimated point outside image"
3961  msgstr "Punto stimato fuori dall'immagine"
3962  
3963 -#: src/hugin/CPEditorPanel.cpp:827
3964 +#: src/hugin/CPEditorPanel.cpp:826
3965  #, c-format
3966  msgid ""
3967  "Point finetuned, angle: %.0f deg, correlation coefficient: %0.3f, curvature: "
3968 @@ -252,7 +267,7 @@
3969  "Punto calibrato, angolo: %.0f grad, coefficente correlazionet: %0.3f, "
3970  "curvatura: %0.3f %0.3f "
3971  
3972 -#: src/hugin/CPEditorPanel.cpp:833
3973 +#: src/hugin/CPEditorPanel.cpp:832
3974  #, c-format
3975  msgid ""
3976  "No similar point found.\n"
3977 @@ -263,36 +278,36 @@
3978  "Coeff. correlazione: %.3f (dovrebbe essere > %.3f)\n"
3979  "Curvatura picco: (%.3f, %.3f) ( dovrebbe essere > %.3f)"
3980  
3981 -#: src/hugin/CPEditorPanel.cpp:835
3982 +#: src/hugin/CPEditorPanel.cpp:834
3983  msgid "No similar point found"
3984  msgstr "Nessun punto simile trovato"
3985  
3986 -#: src/hugin/CPEditorPanel.cpp:1151 src/hugin/CPListFrame.cpp:402
3987 +#: src/hugin/CPEditorPanel.cpp:1150 src/hugin/CPListFrame.cpp:402
3988  #: src/hugin/PreviewFrame.cpp:156 src/hugin/xrc/cp_editor_panel.xrs:24
3989  msgid "normal"
3990  msgstr "normale"
3991  
3992 -#: src/hugin/CPEditorPanel.cpp:1154 src/hugin/CPListFrame.cpp:405
3993 +#: src/hugin/CPEditorPanel.cpp:1153 src/hugin/CPListFrame.cpp:405
3994  msgid "vert. Line"
3995  msgstr "linea vert."
3996  
3997 -#: src/hugin/CPEditorPanel.cpp:1157 src/hugin/CPListFrame.cpp:408
3998 +#: src/hugin/CPEditorPanel.cpp:1156 src/hugin/CPListFrame.cpp:408
3999  msgid "horiz. Line"
4000  msgstr "Linea orizz."
4001  
4002 -#: src/hugin/CPEditorPanel.cpp:1412
4003 +#: src/hugin/CPEditorPanel.cpp:1411
4004  msgid "Cannot estimate image position without control points"
4005  msgstr "Senza punti di controllo non posso posizionare le immagini "
4006  
4007 -#: src/hugin/CPEditorPanel.cpp:1603
4008 +#: src/hugin/CPEditorPanel.cpp:1602
4009  msgid "Select Point in right image"
4010  msgstr "Scelglere punto in immagine dx"
4011  
4012 -#: src/hugin/CPEditorPanel.cpp:1615
4013 +#: src/hugin/CPEditorPanel.cpp:1614
4014  msgid "Select Point in left image"
4015  msgstr "Scelglere punto in immagine sx"
4016  
4017 -#: src/hugin/CPEditorPanel.cpp:1634
4018 +#: src/hugin/CPEditorPanel.cpp:1633
4019  msgid "change points, or press right mouse button to add the pair"
4020  msgstr "Cambiare i punti, o premere tasto DX per aggiungere la coppia"
4021  
4022 @@ -395,6 +410,15 @@
4023  msgid "Always center Crop on d,e"
4024  msgstr ""
4025  
4026 +#: src/hugin/ImageCenter.cpp:105 src/hugin/xrc/pref_dialog.xrs:68
4027 +msgid "Ok"
4028 +msgstr "Ok"
4029 +
4030 +#: src/hugin/ImageCenter.cpp:110 src/hugin/RunOptimizerFrame.cpp:310
4031 +#: src/hugin/xrc/edit_text.xrs:3 src/hugin/xrc/pref_dialog.xrs:70
4032 +msgid "Cancel"
4033 +msgstr "Cancella"
4034 +
4035  #: src/hugin/ImageCenter.cpp:207 src/hugin/ImageCenter.cpp:222
4036  #: src/hugin/ImageCenter.cpp:237 src/hugin/ImageCenter.cpp:252
4037  #, fuzzy
4038 @@ -503,55 +527,55 @@
4039  msgid "Equirectangular"
4040  msgstr "Equirettangolare"
4041  
4042 -#: src/hugin/ImagesPanel.cpp:271 src/hugin/ImagesPanel.cpp:292
4043 -#: src/hugin/ImagesPanel.cpp:312
4044 +#: src/hugin/ImagesPanel.cpp:270 src/hugin/ImagesPanel.cpp:291
4045 +#: src/hugin/ImagesPanel.cpp:311
4046  msgid "Value must be numeric."
4047  msgstr "Il valore deve essere numerico"
4048  
4049 -#: src/hugin/ImagesPanel.cpp:563
4050 +#: src/hugin/ImagesPanel.cpp:562
4051  #, c-format
4052  msgid "Really Delete %d control points?"
4053  msgstr "Eliminare veramente %d punti di controllo?"
4054  
4055 -#: src/hugin/ImagesPanel.cpp:565
4056 +#: src/hugin/ImagesPanel.cpp:564
4057  msgid "Delete Control Points"
4058  msgstr "Eliminare Punti di Controllo"
4059  
4060 -#: src/hugin/LensPanel.cpp:649
4061 +#: src/hugin/LensPanel.cpp:650
4062  msgid "Not a jpeg file:"
4063  msgstr "Non e' un jpeg valido"
4064  
4065 -#: src/hugin/LensPanel.cpp:654 src/hugin/LensPanel.cpp:708
4066 -#: src/hugin/LensPanel.cpp:784 src/hugin/LensPanel.cpp:800
4067 -#: src/hugin/LensPanel.cpp:818
4068 +#: src/hugin/LensPanel.cpp:655 src/hugin/LensPanel.cpp:709
4069 +#: src/hugin/LensPanel.cpp:785 src/hugin/LensPanel.cpp:801
4070 +#: src/hugin/LensPanel.cpp:819
4071  msgid "Please select an image and try again"
4072  msgstr "Selezionare un'immagine prima di eseguire il comando"
4073  
4074 -#: src/hugin/LensPanel.cpp:672
4075 +#: src/hugin/LensPanel.cpp:673
4076  msgid "Save lens parameters file"
4077  msgstr "Salva un file i parametri dell'obiettivo"
4078  
4079 -#: src/hugin/LensPanel.cpp:674 src/hugin/LensPanel.cpp:724
4080 +#: src/hugin/LensPanel.cpp:675 src/hugin/LensPanel.cpp:725
4081  msgid "Lens Project Files (*.ini)|*.ini|All files (*.*)|*.*"
4082  msgstr "File parametri obiettivo (*.ini)|*.ini|Tutti i files (*.*)|*.*"
4083  
4084 -#: src/hugin/LensPanel.cpp:722
4085 +#: src/hugin/LensPanel.cpp:723
4086  msgid "Load lens parameters"
4087  msgstr "Carica parametri obiettivo"
4088  
4089 -#: src/hugin/LensPanel.cpp:808
4090 +#: src/hugin/LensPanel.cpp:809
4091  msgid "Enter new lens number"
4092  msgstr "Inserire un nuovo numero di obiettivo"
4093  
4094 -#: src/hugin/LensPanel.cpp:808
4095 +#: src/hugin/LensPanel.cpp:809
4096  msgid "Lens number"
4097  msgstr "Obiettivo numero"
4098  
4099 -#: src/hugin/LensPanel.cpp:809
4100 +#: src/hugin/LensPanel.cpp:810
4101  msgid "Change lens number"
4102  msgstr "Cambia numetro obiettivo"
4103  
4104 -#: src/hugin/LensPanel.cpp:833
4105 +#: src/hugin/LensPanel.cpp:834
4106  msgid ""
4107  "Enter Crop Factor for image\n"
4108  "\n"
4109 @@ -567,7 +591,7 @@
4110  "\n"
4111  "ove la diagonale, in mm, e' quella della pellicola, o del chip."
4112  
4113 -#: src/hugin/LensPanel.cpp:834
4114 +#: src/hugin/LensPanel.cpp:835
4115  msgid "Adding Image"
4116  msgstr "Aggiungere immagine"
4117  
4118 @@ -601,44 +625,54 @@
4119  msgid "forced close"
4120  msgstr "chiusura forzata"
4121  
4122 -#: src/hugin/MainFrame.cpp:491
4123 +#: src/hugin/MainFrame.cpp:476 src/hugin/MainFrame.cpp:504
4124 +#: src/hugin/MainFrame.cpp:523 src/hugin/PanoPanel.cpp:495
4125 +msgid "No images - Nothing to do"
4126 +msgstr ""
4127 +
4128 +#: src/hugin/MainFrame.cpp:476 src/hugin/MainFrame.cpp:504
4129 +#: src/hugin/MainFrame.cpp:523 src/hugin/PanoPanel.cpp:495
4130 +msgid "Warning"
4131 +msgstr ""
4132 +
4133 +#: src/hugin/MainFrame.cpp:495
4134  #, c-format
4135  msgid "saved project %s"
4136  msgstr "Salva progetto %s"
4137  
4138 -#: src/hugin/MainFrame.cpp:500
4139 +#: src/hugin/MainFrame.cpp:508
4140  msgid "Save project file"
4141  msgstr "Salva file progetto"
4142  
4143 -#: src/hugin/MainFrame.cpp:502
4144 +#: src/hugin/MainFrame.cpp:510
4145  msgid "Project files (*.pto)|*.pto|All files (*.*)|*.*"
4146  msgstr "files di progetto (*.pto)|*.pto|All files (*.*)|*.*"
4147  
4148 -#: src/hugin/MainFrame.cpp:515
4149 +#: src/hugin/MainFrame.cpp:527
4150  msgid "Save PTStitcher script file"
4151  msgstr "Salva script per PTStitcher"
4152  
4153 -#: src/hugin/MainFrame.cpp:517
4154 +#: src/hugin/MainFrame.cpp:529
4155  msgid "PTStitcher files (*.txt)|*.txt"
4156  msgstr "Files di PTStitcher (*.txt)|*.txt"
4157  
4158 -#: src/hugin/MainFrame.cpp:543
4159 +#: src/hugin/MainFrame.cpp:555
4160  msgid "Open project:   "
4161  msgstr "Apri progetto:"
4162  
4163 -#: src/hugin/MainFrame.cpp:555
4164 +#: src/hugin/MainFrame.cpp:567
4165  msgid "Project opened"
4166  msgstr "Progetto aperto"
4167  
4168 -#: src/hugin/MainFrame.cpp:565
4169 +#: src/hugin/MainFrame.cpp:577
4170  msgid "Error opening project:   "
4171  msgstr "Errore nell'aprire il progetto"
4172  
4173 -#: src/hugin/MainFrame.cpp:583
4174 +#: src/hugin/MainFrame.cpp:595
4175  msgid "Open project file"
4176  msgstr "Apri file progetto"
4177  
4178 -#: src/hugin/MainFrame.cpp:585
4179 +#: src/hugin/MainFrame.cpp:597
4180  msgid ""
4181  "Project files (*.pto,*.ptp,*.pts,*.oto)|*.pto;*.ptp;*.pts;*.oto;|All files "
4182  "(*.*)|*.*"
4183 @@ -646,11 +680,11 @@
4184  "Files progetto (*.pto,*.ptp,*.pts,*.oto)|*.pto;*.ptp;*.pts;*.oto;|All files "
4185  "(*.*)|*.*"
4186  
4187 -#: src/hugin/MainFrame.cpp:593
4188 +#: src/hugin/MainFrame.cpp:605
4189  msgid "Open project: cancel"
4190  msgstr "Apri progetto: annulla"
4191  
4192 -#: src/hugin/MainFrame.cpp:615 src/include/hugin/wxPanoCommand.h:169
4193 +#: src/hugin/MainFrame.cpp:627 src/include/hugin/wxPanoCommand.h:169
4194  msgid ""
4195  "Image files (*.jpg)|*.jpg;*.JPG|Image files (*.png)|*.png;*.PNG|Image files "
4196  "(*.tif)|*.tif;*.TIF|All files (*.*)|*.*"
4197 @@ -658,27 +692,27 @@
4198  "Files immagine (*.jpg)|*.jpg;*.JPG|Image files (*.png)|*.png;*.PNG|Image "
4199  "files (*.tif)|*.tif;*.TIF|All files (*.*)|*.*"
4200  
4201 -#: src/hugin/MainFrame.cpp:616 src/include/hugin/wxPanoCommand.h:170
4202 +#: src/hugin/MainFrame.cpp:628 src/include/hugin/wxPanoCommand.h:170
4203  msgid "Add images"
4204  msgstr "Aggiungi immagini"
4205  
4206 -#: src/hugin/MainFrame.cpp:660
4207 +#: src/hugin/MainFrame.cpp:672
4208  msgid "Add Image: cancel"
4209  msgstr "Aggiungi immagine: annulla"
4210  
4211 -#: src/hugin/MainFrame.cpp:985
4212 +#: src/hugin/MainFrame.cpp:997
4213  msgid "hugin - FAQ"
4214  msgstr "hugin - FAQ"
4215  
4216 -#: src/hugin/MainFrame.cpp:1064
4217 +#: src/hugin/MainFrame.cpp:1076
4218  msgid "Fine-tuning all points"
4219  msgstr "Ricalibra tutti i punti "
4220  
4221 -#: src/hugin/MainFrame.cpp:1066
4222 +#: src/hugin/MainFrame.cpp:1078
4223  msgid "Finetuning"
4224  msgstr "Calibrazione"
4225  
4226 -#: src/hugin/MainFrame.cpp:1150
4227 +#: src/hugin/MainFrame.cpp:1162
4228  #, c-format
4229  msgid ""
4230  "%d points fine-tuned, %d points not updated due to low correlation\n"
4231 @@ -706,7 +740,7 @@
4232  "\n"
4233  "Use the Control Point list (F3) to see all point of the current project\n"
4234  
4235 -#: src/hugin/MainFrame.cpp:1152
4236 +#: src/hugin/MainFrame.cpp:1164
4237  msgid "Fine-tune result"
4238  msgstr "Risultato calibrazione"
4239  
4240 @@ -749,7 +783,7 @@
4241  msgid "No enblend commandline tool selected"
4242  msgstr "Non e' stato impostato alcun comando per Enblend"
4243  
4244 -#: src/hugin/NonaStitcherPanel.cpp:347
4245 +#: src/hugin/NonaStitcherPanel.cpp:349
4246  msgid ""
4247  "Can not call enblend with a command line > 2000 characters.\n"
4248  "This is a Windows limitiation\n"
4249 @@ -761,11 +795,11 @@
4250  "Usare meno immagini, un nome piu' breve per l'immagine\n"
4251  "finale, un percorso path piu' corto nell'HD."
4252  
4253 -#: src/hugin/NonaStitcherPanel.cpp:353
4254 +#: src/hugin/NonaStitcherPanel.cpp:355
4255  msgid "Running Enblend"
4256  msgstr "Enblend in esecuzione"
4257  
4258 -#: src/hugin/NonaStitcherPanel.cpp:353
4259 +#: src/hugin/NonaStitcherPanel.cpp:355
4260  msgid ""
4261  "Enblend will take a while to finish processing the panorama\n"
4262  "You can watch the enblend progress in the command window"
4263 @@ -773,7 +807,7 @@
4264  "Enblend impiegherà del tempo a terminare il panorama\n"
4265  "e' possibile sorvegliare il processo nella finestra di comando"
4266  
4267 -#: src/hugin/NonaStitcherPanel.cpp:359
4268 +#: src/hugin/NonaStitcherPanel.cpp:363
4269  msgid ""
4270  "Could not execute enblend, system() failed: \n"
4271  "Command was :"
4272 @@ -781,15 +815,15 @@
4273  "Enblend non eseguito, system() failed: \n"
4274  "Il comando era :"
4275  
4276 -#: src/hugin/NonaStitcherPanel.cpp:360
4277 +#: src/hugin/NonaStitcherPanel.cpp:364
4278  msgid "Error returned was :"
4279  msgstr "L'errore riportato e' :"
4280  
4281 -#: src/hugin/NonaStitcherPanel.cpp:388
4282 +#: src/hugin/NonaStitcherPanel.cpp:392
4283  msgid "CreateProcess Error"
4284  msgstr "CreateProcess Error"
4285  
4286 -#: src/hugin/NonaStitcherPanel.cpp:401
4287 +#: src/hugin/NonaStitcherPanel.cpp:406
4288  msgid "enblend error"
4289  msgstr "errore in Enblend"
4290  
4291 @@ -978,7 +1012,7 @@
4292  msgid "width needs to be an integer bigger than 0"
4293  msgstr "la larghezza deve essere un intero maggiore di 0"
4294  
4295 -#: src/hugin/PanoPanel.cpp:502
4296 +#: src/hugin/PanoPanel.cpp:506
4297  msgid "Create panorama image"
4298  msgstr "Crea l'immagine panoramica"
4299  
4300 @@ -1014,7 +1048,8 @@
4301  msgid "Select PTStitcher"
4302  msgstr "Seleziona  PTStitcher.exe"
4303  
4304 -#: src/hugin/PreferencesDialog.cpp:188 src/hugin/RunOptimizerFrame.cpp:108
4305 +#: src/hugin/PreferencesDialog.cpp:188 src/hugin/RunOptimizerFrame.cpp:109
4306 +#: src/hugin/RunOptimizerFrame.cpp:123
4307  msgid "Select PTOptimizer"
4308  msgstr "Seleziona PTOptimizer"
4309  
4310 @@ -1154,33 +1189,33 @@
4311  msgid "PTStitcher note"
4312  msgstr "nota PTStitcher"
4313  
4314 -#: src/hugin/RunOptimizerFrame.cpp:116
4315 +#: src/hugin/RunOptimizerFrame.cpp:117
4316  msgid "No PTOptimizer.exe selected"
4317  msgstr "Non hai selezionato il PTOptimizer.exe"
4318  
4319 -#: src/hugin/RunOptimizerFrame.cpp:140
4320 +#: src/hugin/RunOptimizerFrame.cpp:131
4321 +#, fuzzy
4322 +msgid "No PTOptimizer selected"
4323 +msgstr "Non hai selezionato il PTOptimizer.exe"
4324 +
4325 +#: src/hugin/RunOptimizerFrame.cpp:155
4326  msgid "Failed to launch PTOptimizer."
4327  msgstr "Avvio di PTOptimizer fallito."
4328  
4329 -#: src/hugin/RunOptimizerFrame.cpp:151
4330 +#: src/hugin/RunOptimizerFrame.cpp:166
4331  msgid "Could not obtain PTOptimizer output"
4332  msgstr "PTOptimizer output non ottenuto"
4333  
4334 -#: src/hugin/RunOptimizerFrame.cpp:161
4335 +#: src/hugin/RunOptimizerFrame.cpp:176
4336  msgid "Stop"
4337  msgstr "Stop"
4338  
4339 -#: src/hugin/RunOptimizerFrame.cpp:223
4340 +#: src/hugin/RunOptimizerFrame.cpp:238
4341  #, c-format
4342  msgid "Strategy %d, Iteration %d, average distance: %f"
4343  msgstr "Strategy %d, Iteration %d, distanza media: %f"
4344  
4345 -#: src/hugin/RunOptimizerFrame.cpp:295 src/hugin/xrc/edit_text.xrs:3
4346 -#: src/hugin/xrc/pref_dialog.xrs:70
4347 -msgid "Cancel"
4348 -msgstr "Cancella"
4349 -
4350 -#: src/hugin/RunOptimizerFrame.cpp:327
4351 +#: src/hugin/RunOptimizerFrame.cpp:342
4352  msgid ""
4353  "Optimizer run finished.\n"
4354  "WARNING: a very small Field of View (v) has been estimated\n"
4355 @@ -1203,7 +1238,7 @@
4356  "well,\n"
4357  "when the images are already aligned well."
4358  
4359 -#: src/hugin/RunOptimizerFrame.cpp:329
4360 +#: src/hugin/RunOptimizerFrame.cpp:344
4361  #, c-format
4362  msgid ""
4363  "Optimizer run finished.\n"
4364 @@ -2556,10 +2591,6 @@
4365  msgid "Delete remapped tiff files"
4366  msgstr ""
4367  
4368 -#: src/hugin/xrc/pref_dialog.xrs:68
4369 -msgid "Ok"
4370 -msgstr "Ok"
4371 -
4372  #: src/hugin/xrc/pref_dialog.xrs:71
4373  msgid "Load Defaults"
4374  msgstr "Carica Defaults"
4375 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/po/pl.po hugin/src/hugin/po/pl.po
4376 --- hugin-0.5-beta4/src/hugin/po/pl.po  2005-03-08 22:10:50.000000000 +0100
4377 +++ hugin/src/hugin/po/pl.po    2005-04-26 13:06:01.000000000 +0200
4378 @@ -7,74 +7,79 @@
4379  msgstr ""
4380  "Project-Id-Version: hugin 0.5\n"
4381  "Report-Msgid-Bugs-To: pablo.dangelo@web.de\n"
4382 -"POT-Creation-Date: 2005-03-08 21:37+0100\n"
4383 -"PO-Revision-Date: 2005-02-07 10:19-0500\n"
4384 +"POT-Creation-Date: 2005-04-26 12:54+0300\n"
4385 +"PO-Revision-Date: 2005-04-02 12:45-0500\n"
4386  "Last-Translator: Marek Januszewski <spec@webtech.pl>\n"
4387  "Language-Team: Polish <pl@li.org>\n"
4388  "MIME-Version: 1.0\n"
4389  "Content-Type: text/plain; charset=utf-8\n"
4390  "Content-Transfer-Encoding: 8bit\n"
4391  
4392 -#: src/hugin/AutoCtrlPointCreator.cpp:87
4393 +#: src/hugin/AutoCtrlPointCreator.cpp:92
4394  #, c-format
4395  msgid "Added %d control points"
4396  msgstr "Dodano %d punktów kontrolnych"
4397  
4398 -#: src/hugin/AutoCtrlPointCreator.cpp:87
4399 +#: src/hugin/AutoCtrlPointCreator.cpp:92
4400  msgid "Autopano result"
4401  msgstr "Wynik autopano"
4402  
4403 -#: src/hugin/AutoCtrlPointCreator.cpp:102
4404 +#: src/hugin/AutoCtrlPointCreator.cpp:107
4405  msgid "Autopano (version 1.03 or greater), from http://autopano.kolor.com"
4406  msgstr ""
4407  "Autopano (wersja 1.03 lub późniejsza), ze strony http://autopano.kolor.com"
4408  
4409 -#: src/hugin/AutoCtrlPointCreator.cpp:103
4410 +#: src/hugin/AutoCtrlPointCreator.cpp:108
4411  msgid "Autopano-Sift, from http://user.cs.tu-berlin.de/~nowozin/autopano-sift/"
4412  msgstr ""
4413  "Autopano-Sift, ze strony http://user.cs.tu-berlin.de/~nowozin/autopano-sift/"
4414  
4415 -#: src/hugin/AutoCtrlPointCreator.cpp:105
4416 +#: src/hugin/AutoCtrlPointCreator.cpp:110
4417  msgid "Choose which autopano program should be used\n"
4418  msgstr "Wybierz który program autopano ma być używany\n"
4419  
4420 -#: src/hugin/AutoCtrlPointCreator.cpp:105
4421 +#: src/hugin/AutoCtrlPointCreator.cpp:110
4422  msgid "Select autopano type"
4423  msgstr "Wybierz typ autopano"
4424  
4425 -#: src/hugin/AutoCtrlPointCreator.cpp:144
4426 -#: src/hugin/AutoCtrlPointCreator.cpp:331
4427 +#: src/hugin/AutoCtrlPointCreator.cpp:149
4428 +#: src/hugin/AutoCtrlPointCreator.cpp:393
4429  msgid "Select autopano program / frontend script"
4430  msgstr "Wybierz program autopano / skrypt interfejsu"
4431  
4432 -#: src/hugin/AutoCtrlPointCreator.cpp:146 src/hugin/PreferencesDialog.cpp:175
4433 +#: src/hugin/AutoCtrlPointCreator.cpp:151 src/hugin/PreferencesDialog.cpp:175
4434  #: src/hugin/PreferencesDialog.cpp:191 src/hugin/PreferencesDialog.cpp:207
4435 -#: src/hugin/PreferencesDialog.cpp:223 src/hugin/RunOptimizerFrame.cpp:110
4436 +#: src/hugin/PreferencesDialog.cpp:223 src/hugin/RunOptimizerFrame.cpp:111
4437  #: src/hugin/RunStitcherFrame.cpp:89
4438  msgid "Executables (*.exe)|*.exe"
4439  msgstr "Pliki wykonywalne (*.exe)|*.exe"
4440  
4441 -#: src/hugin/AutoCtrlPointCreator.cpp:152
4442 -#: src/hugin/AutoCtrlPointCreator.cpp:167
4443 -#: src/hugin/AutoCtrlPointCreator.cpp:339
4444 +#: src/hugin/AutoCtrlPointCreator.cpp:157
4445 +#: src/hugin/AutoCtrlPointCreator.cpp:209
4446 +#: src/hugin/AutoCtrlPointCreator.cpp:401
4447  msgid "No autopano selected"
4448  msgstr "Nie wybrano autopano"
4449  
4450 -#: src/hugin/AutoCtrlPointCreator.cpp:159
4451 -msgid "Select autopano-sift frontend script"
4452 +#: src/hugin/AutoCtrlPointCreator.cpp:201
4453 +#, fuzzy
4454 +msgid "Select autopano frontend script"
4455  msgstr "Wybierz autopano-sift skrypt interfejsu"
4456  
4457 -#: src/hugin/AutoCtrlPointCreator.cpp:205
4458 +#: src/hugin/AutoCtrlPointCreator.cpp:203
4459 +msgid "Shell Scripts (*.sh)|*.sh"
4460 +msgstr ""
4461 +
4462 +#: src/hugin/AutoCtrlPointCreator.cpp:248
4463  #, c-format
4464  msgid "Please use either %namefile or %i in the autopano-sift command line."
4465  msgstr "ProszÄ™ użyć albo %namefile albo %i linii poleceÅ„ autopano-sift."
4466  
4467 -#: src/hugin/AutoCtrlPointCreator.cpp:206
4468 -#: src/hugin/AutoCtrlPointCreator.cpp:211
4469 +#: src/hugin/AutoCtrlPointCreator.cpp:249
4470 +#: src/hugin/AutoCtrlPointCreator.cpp:254
4471  msgid "Error in Autopano command"
4472  msgstr "BÅ‚Ä…d w poleceniu autopano"
4473  
4474 -#: src/hugin/AutoCtrlPointCreator.cpp:210
4475 +#: src/hugin/AutoCtrlPointCreator.cpp:253
4476  #, c-format
4477  msgid ""
4478  "Please use  %namefile or %i to specify the input files for autopano-sift"
4479 @@ -82,8 +87,18 @@
4480  "ProszÄ™ użyć  %namefile lub %i by podać nazwÄ™ plików wejÅ›ciowych dla autopano-"
4481  "sift"
4482  
4483 -#: src/hugin/AutoCtrlPointCreator.cpp:243
4484 -#: src/hugin/AutoCtrlPointCreator.cpp:377
4485 +#: src/hugin/AutoCtrlPointCreator.cpp:288
4486 +#, fuzzy
4487 +msgid "Select autopano .Net executable."
4488 +msgstr "Wybierz typ autopano"
4489 +
4490 +#: src/hugin/AutoCtrlPointCreator.cpp:297
4491 +#, fuzzy
4492 +msgid "No autopano directory selected"
4493 +msgstr "Nie wybrano autopano"
4494 +
4495 +#: src/hugin/AutoCtrlPointCreator.cpp:305
4496 +#: src/hugin/AutoCtrlPointCreator.cpp:439
4497  msgid ""
4498  "autopano command line too long.\n"
4499  "This is a windows limitation\n"
4500 @@ -95,18 +110,18 @@
4501  "ProszÄ™ wybrać mniej zdjęć lub umieÅ›cić zdjÄ™cia w folderze z\n"
4502  "krótszÄ… Å›cieżkÄ…"
4503  
4504 -#: src/hugin/AutoCtrlPointCreator.cpp:244
4505 -#: src/hugin/AutoCtrlPointCreator.cpp:378 src/hugin/NonaStitcherPanel.cpp:348
4506 +#: src/hugin/AutoCtrlPointCreator.cpp:306
4507 +#: src/hugin/AutoCtrlPointCreator.cpp:440 src/hugin/NonaStitcherPanel.cpp:350
4508  msgid "Too many images selected"
4509  msgstr "Wybrano zbyt wiele zdjęć"
4510  
4511 -#: src/hugin/AutoCtrlPointCreator.cpp:253
4512 -#: src/hugin/AutoCtrlPointCreator.cpp:385
4513 +#: src/hugin/AutoCtrlPointCreator.cpp:315
4514 +#: src/hugin/AutoCtrlPointCreator.cpp:447
4515  msgid "Running autopano"
4516  msgstr "Uruchomiono autopano"
4517  
4518 -#: src/hugin/AutoCtrlPointCreator.cpp:253
4519 -#: src/hugin/AutoCtrlPointCreator.cpp:385
4520 +#: src/hugin/AutoCtrlPointCreator.cpp:315
4521 +#: src/hugin/AutoCtrlPointCreator.cpp:447
4522  msgid ""
4523  "Please wait while autopano searches control points\n"
4524  "See the command window for autopanos' progress"
4525 @@ -114,31 +129,31 @@
4526  "ProszÄ™ czekać. Autopano szuka punktów kontrolnych\n"
4527  "Sprawdź okno poleceÅ„ by zobaczyć postÄ™p autopano"
4528  
4529 -#: src/hugin/AutoCtrlPointCreator.cpp:282
4530 -#: src/hugin/AutoCtrlPointCreator.cpp:295
4531 -#: src/hugin/AutoCtrlPointCreator.cpp:400 src/hugin/NonaStitcherPanel.cpp:388
4532 -#: src/hugin/NonaStitcherPanel.cpp:396
4533 +#: src/hugin/AutoCtrlPointCreator.cpp:344
4534 +#: src/hugin/AutoCtrlPointCreator.cpp:357
4535 +#: src/hugin/AutoCtrlPointCreator.cpp:462 src/hugin/NonaStitcherPanel.cpp:392
4536 +#: src/hugin/NonaStitcherPanel.cpp:401
4537  msgid "Could not execute command: "
4538  msgstr "Nie mogÅ‚em wykonać polecenia:"
4539  
4540 -#: src/hugin/AutoCtrlPointCreator.cpp:282
4541 +#: src/hugin/AutoCtrlPointCreator.cpp:344
4542  msgid "ShellExecuteEx failed"
4543  msgstr "bÅ‚Ä…d ShellExecuteEx"
4544  
4545 -#: src/hugin/AutoCtrlPointCreator.cpp:295
4546 -#: src/hugin/AutoCtrlPointCreator.cpp:300
4547 -#: src/hugin/AutoCtrlPointCreator.cpp:400
4548 -#: src/hugin/AutoCtrlPointCreator.cpp:406 src/hugin/NonaStitcherPanel.cpp:396
4549 +#: src/hugin/AutoCtrlPointCreator.cpp:357
4550 +#: src/hugin/AutoCtrlPointCreator.cpp:362
4551 +#: src/hugin/AutoCtrlPointCreator.cpp:462
4552 +#: src/hugin/AutoCtrlPointCreator.cpp:468 src/hugin/NonaStitcherPanel.cpp:401
4553  msgid "wxExecute Error"
4554  msgstr "BÅ‚Ä…d wxExecute"
4555  
4556 -#: src/hugin/AutoCtrlPointCreator.cpp:298
4557 -#: src/hugin/AutoCtrlPointCreator.cpp:404 src/hugin/NonaStitcherPanel.cpp:399
4558 +#: src/hugin/AutoCtrlPointCreator.cpp:360
4559 +#: src/hugin/AutoCtrlPointCreator.cpp:466 src/hugin/NonaStitcherPanel.cpp:404
4560  msgid "command: "
4561  msgstr "polecenie:"
4562  
4563 -#: src/hugin/AutoCtrlPointCreator.cpp:299
4564 -#: src/hugin/AutoCtrlPointCreator.cpp:405 src/hugin/NonaStitcherPanel.cpp:400
4565 +#: src/hugin/AutoCtrlPointCreator.cpp:361
4566 +#: src/hugin/AutoCtrlPointCreator.cpp:467 src/hugin/NonaStitcherPanel.cpp:405
4567  msgid ""
4568  "\n"
4569  "failed with error code: "
4570 @@ -146,13 +161,13 @@
4571  "\n"
4572  "niepowodzenie z kodem bÅ‚Ä™du:"
4573  
4574 -#: src/hugin/AutoCtrlPointCreator.cpp:306
4575 -#: src/hugin/AutoCtrlPointCreator.cpp:413
4576 +#: src/hugin/AutoCtrlPointCreator.cpp:368
4577 +#: src/hugin/AutoCtrlPointCreator.cpp:475
4578  msgid "Could not open "
4579  msgstr "Nie można otworzyć"
4580  
4581 -#: src/hugin/AutoCtrlPointCreator.cpp:306
4582 -#: src/hugin/AutoCtrlPointCreator.cpp:413
4583 +#: src/hugin/AutoCtrlPointCreator.cpp:368
4584 +#: src/hugin/AutoCtrlPointCreator.cpp:475
4585  msgid ""
4586  " for reading\n"
4587  "This is an indicator that the autopano call failed,\n"
4588 @@ -166,16 +181,16 @@
4589  "\n"
4590  "Polecenie autopano: "
4591  
4592 -#: src/hugin/AutoCtrlPointCreator.cpp:307
4593 -#: src/hugin/AutoCtrlPointCreator.cpp:416
4594 +#: src/hugin/AutoCtrlPointCreator.cpp:369
4595 +#: src/hugin/AutoCtrlPointCreator.cpp:478
4596  msgid "autopano failure"
4597  msgstr "autopano nie powiodÅ‚o siÄ™"
4598  
4599 -#: src/hugin/AutoCtrlPointCreator.cpp:333 src/hugin/PreferencesDialog.cpp:239
4600 +#: src/hugin/AutoCtrlPointCreator.cpp:395 src/hugin/PreferencesDialog.cpp:239
4601  msgid "Executables (*.exe,*.vbs,*.cmd)|*.exe;*.vbs;*.cmd"
4602  msgstr "Pliki wykonywalne (*.exe,*.vbs,*.cmd)|*.exe;*.vbs;*.cmd"
4603  
4604 -#: src/hugin/AutoCtrlPointCreator.cpp:414
4605 +#: src/hugin/AutoCtrlPointCreator.cpp:476
4606  msgid ""
4607  "\n"
4608  " current directory:"
4609 @@ -222,27 +237,27 @@
4610  msgid "Distance"
4611  msgstr "OdlegÅ‚ość"
4612  
4613 -#: src/hugin/CPEditorPanel.cpp:406
4614 +#: src/hugin/CPEditorPanel.cpp:405
4615  msgid "No corresponding point found"
4616  msgstr "Nie znaleziono odpowiadajÄ…cego punktu"
4617  
4618 -#: src/hugin/CPEditorPanel.cpp:475
4619 +#: src/hugin/CPEditorPanel.cpp:474
4620  msgid "new control point added"
4621  msgstr "Dodano nowy punkt kontrolny"
4622  
4623 -#: src/hugin/CPEditorPanel.cpp:575 src/hugin/CPEditorPanel.cpp:781
4624 +#: src/hugin/CPEditorPanel.cpp:574 src/hugin/CPEditorPanel.cpp:780
4625  msgid "searching similar point..."
4626  msgstr "szukam podobnego punktu..."
4627  
4628 -#: src/hugin/CPEditorPanel.cpp:594 src/hugin/CPEditorPanel.cpp:709
4629 +#: src/hugin/CPEditorPanel.cpp:593 src/hugin/CPEditorPanel.cpp:708
4630  msgid "Error during Fine-tune"
4631  msgstr "BÅ‚Ä…d podcza dostrajania"
4632  
4633 -#: src/hugin/CPEditorPanel.cpp:625
4634 +#: src/hugin/CPEditorPanel.cpp:624
4635  msgid "Estimated point outside image"
4636  msgstr "Estymowany punkt jest poza obszarem zdjÄ™cia"
4637  
4638 -#: src/hugin/CPEditorPanel.cpp:827
4639 +#: src/hugin/CPEditorPanel.cpp:826
4640  #, c-format
4641  msgid ""
4642  "Point finetuned, angle: %.0f deg, correlation coefficient: %0.3f, curvature: "
4643 @@ -251,7 +266,7 @@
4644  "Punkt dostrojony, kÄ…t: %.0f stopni, współczynnik korelacji: %0.3f, "
4645  "zakrzywienie: %0.3f %0.3f "
4646  
4647 -#: src/hugin/CPEditorPanel.cpp:833
4648 +#: src/hugin/CPEditorPanel.cpp:832
4649  #, c-format
4650  msgid ""
4651  "No similar point found.\n"
4652 @@ -262,36 +277,36 @@
4653  "współczynnik korelacji: %.3f (powininen być < %.3f)\n"
4654  "szczyt zakrzywienia: (%.3f, %.3f), ( powinien być > %.3f)"
4655  
4656 -#: src/hugin/CPEditorPanel.cpp:835
4657 +#: src/hugin/CPEditorPanel.cpp:834
4658  msgid "No similar point found"
4659  msgstr "Nie znaleziono podobnego punktu"
4660  
4661 -#: src/hugin/CPEditorPanel.cpp:1151 src/hugin/CPListFrame.cpp:402
4662 +#: src/hugin/CPEditorPanel.cpp:1150 src/hugin/CPListFrame.cpp:402
4663  #: src/hugin/PreviewFrame.cpp:156 src/hugin/xrc/cp_editor_panel.xrs:24
4664  msgid "normal"
4665  msgstr "normalny"
4666  
4667 -#: src/hugin/CPEditorPanel.cpp:1154 src/hugin/CPListFrame.cpp:405
4668 +#: src/hugin/CPEditorPanel.cpp:1153 src/hugin/CPListFrame.cpp:405
4669  msgid "vert. Line"
4670  msgstr "pion. linia"
4671  
4672 -#: src/hugin/CPEditorPanel.cpp:1157 src/hugin/CPListFrame.cpp:408
4673 +#: src/hugin/CPEditorPanel.cpp:1156 src/hugin/CPListFrame.cpp:408
4674  msgid "horiz. Line"
4675  msgstr "poz. linia"
4676  
4677 -#: src/hugin/CPEditorPanel.cpp:1412
4678 +#: src/hugin/CPEditorPanel.cpp:1411
4679  msgid "Cannot estimate image position without control points"
4680  msgstr "Nie mogÄ™ estymować pozycji zdjÄ™cia bez punktów kontrolnych"
4681  
4682 -#: src/hugin/CPEditorPanel.cpp:1603
4683 +#: src/hugin/CPEditorPanel.cpp:1602
4684  msgid "Select Point in right image"
4685  msgstr "Zaznacz punkt na prawym zdjÄ™ciu"
4686  
4687 -#: src/hugin/CPEditorPanel.cpp:1615
4688 +#: src/hugin/CPEditorPanel.cpp:1614
4689  msgid "Select Point in left image"
4690  msgstr "Zaznacz punkt na lewym zdjÄ™ciu"
4691  
4692 -#: src/hugin/CPEditorPanel.cpp:1634
4693 +#: src/hugin/CPEditorPanel.cpp:1633
4694  msgid "change points, or press right mouse button to add the pair"
4695  msgstr "zmieÅ„ punkty lub naciÅ›niej prawy przycisk myszy by dodać parÄ™"
4696  
4697 @@ -364,27 +379,24 @@
4698  msgstr "TworzÄ™ zdjÄ™cie piramidalne dla %s, poziom %d"
4699  
4700  #: src/hugin/ImageCenter.cpp:61
4701 -#, fuzzy
4702  msgid "Crop Image"
4703 -msgstr "ZdjÄ™cie-odniesienie"
4704 +msgstr "UciÄ™cie zdjecia"
4705  
4706  #: src/hugin/ImageCenter.cpp:80
4707  msgid "Left:"
4708 -msgstr ""
4709 +msgstr "Lewy:"
4710  
4711  #: src/hugin/ImageCenter.cpp:85
4712 -#, fuzzy
4713  msgid "Right:"
4714 -msgstr "wysokość"
4715 +msgstr "Prawo:"
4716  
4717  #: src/hugin/ImageCenter.cpp:90
4718  msgid "Top:"
4719 -msgstr ""
4720 +msgstr "Góra:"
4721  
4722  #: src/hugin/ImageCenter.cpp:95
4723 -#, fuzzy
4724  msgid "Bottom:"
4725 -msgstr "Zoom:"
4726 +msgstr "Dół:"
4727  
4728  #: src/hugin/ImageCenter.cpp:100 src/hugin/xrc/images_panel.xrs:31
4729  msgid "Reset"
4730 @@ -392,13 +404,21 @@
4731  
4732  #: src/hugin/ImageCenter.cpp:102
4733  msgid "Always center Crop on d,e"
4734 -msgstr ""
4735 +msgstr "Zawsze Å›rodkuj UciÄ™cie na d,e"
4736 +
4737 +#: src/hugin/ImageCenter.cpp:105 src/hugin/xrc/pref_dialog.xrs:68
4738 +msgid "Ok"
4739 +msgstr "Ok"
4740 +
4741 +#: src/hugin/ImageCenter.cpp:110 src/hugin/RunOptimizerFrame.cpp:310
4742 +#: src/hugin/xrc/edit_text.xrs:3 src/hugin/xrc/pref_dialog.xrs:70
4743 +msgid "Cancel"
4744 +msgstr "Anuluj"
4745  
4746  #: src/hugin/ImageCenter.cpp:207 src/hugin/ImageCenter.cpp:222
4747  #: src/hugin/ImageCenter.cpp:237 src/hugin/ImageCenter.cpp:252
4748 -#, fuzzy
4749  msgid "Please enter a valid number"
4750 -msgstr "BÅ‚Ä…d: proszÄ™ wpisać poprawny numer"
4751 +msgstr "ProszÄ™ wpisać poprawny numer"
4752  
4753  #: src/hugin/ImageOrientationPanel.cpp:132
4754  #, c-format
4755 @@ -479,7 +499,7 @@
4756  
4757  #: src/hugin/ImagesList.cpp:291
4758  msgid "Crop"
4759 -msgstr ""
4760 +msgstr "UciÄ™cie"
4761  
4762  #: src/hugin/ImagesList.cpp:305 src/hugin/xrc/lens_panel.xrs:2
4763  msgid "Normal (rectilinear)"
4764 @@ -502,55 +522,55 @@
4765  msgid "Equirectangular"
4766  msgstr "Sferyczny"
4767  
4768 -#: src/hugin/ImagesPanel.cpp:271 src/hugin/ImagesPanel.cpp:292
4769 -#: src/hugin/ImagesPanel.cpp:312
4770 +#: src/hugin/ImagesPanel.cpp:270 src/hugin/ImagesPanel.cpp:291
4771 +#: src/hugin/ImagesPanel.cpp:311
4772  msgid "Value must be numeric."
4773  msgstr "Wartość musi być numeryczna."
4774  
4775 -#: src/hugin/ImagesPanel.cpp:563
4776 +#: src/hugin/ImagesPanel.cpp:562
4777  #, c-format
4778  msgid "Really Delete %d control points?"
4779  msgstr "Na pewno usunąć %d punktów kontrolnych?"
4780  
4781 -#: src/hugin/ImagesPanel.cpp:565
4782 +#: src/hugin/ImagesPanel.cpp:564
4783  msgid "Delete Control Points"
4784  msgstr "UsuÅ„ punkty kontrolne"
4785  
4786 -#: src/hugin/LensPanel.cpp:649
4787 +#: src/hugin/LensPanel.cpp:650
4788  msgid "Not a jpeg file:"
4789  msgstr "To nie jest plik jpeg:"
4790  
4791 -#: src/hugin/LensPanel.cpp:654 src/hugin/LensPanel.cpp:708
4792 -#: src/hugin/LensPanel.cpp:784 src/hugin/LensPanel.cpp:800
4793 -#: src/hugin/LensPanel.cpp:818
4794 +#: src/hugin/LensPanel.cpp:655 src/hugin/LensPanel.cpp:709
4795 +#: src/hugin/LensPanel.cpp:785 src/hugin/LensPanel.cpp:801
4796 +#: src/hugin/LensPanel.cpp:819
4797  msgid "Please select an image and try again"
4798  msgstr "ProszÄ™ wybrać zdjÄ™cie i spróbować ponownie"
4799  
4800 -#: src/hugin/LensPanel.cpp:672
4801 +#: src/hugin/LensPanel.cpp:673
4802  msgid "Save lens parameters file"
4803  msgstr "Zapisz plik parametrów obiektywów"
4804  
4805 -#: src/hugin/LensPanel.cpp:674 src/hugin/LensPanel.cpp:724
4806 +#: src/hugin/LensPanel.cpp:675 src/hugin/LensPanel.cpp:725
4807  msgid "Lens Project Files (*.ini)|*.ini|All files (*.*)|*.*"
4808  msgstr "Pliki parametrów obiektywów (*.ini)|*.ini|Wszystkie pliki (*.*)|*.*"
4809  
4810 -#: src/hugin/LensPanel.cpp:722
4811 +#: src/hugin/LensPanel.cpp:723
4812  msgid "Load lens parameters"
4813  msgstr "Otwórz parametry obiektywów"
4814  
4815 -#: src/hugin/LensPanel.cpp:808
4816 +#: src/hugin/LensPanel.cpp:809
4817  msgid "Enter new lens number"
4818  msgstr "Wpisz numer nowego obiektywu"
4819  
4820 -#: src/hugin/LensPanel.cpp:808
4821 +#: src/hugin/LensPanel.cpp:809
4822  msgid "Lens number"
4823  msgstr "Numer obiektywu"
4824  
4825 -#: src/hugin/LensPanel.cpp:809
4826 +#: src/hugin/LensPanel.cpp:810
4827  msgid "Change lens number"
4828  msgstr "ZmieÅ„ numer obiektywu"
4829  
4830 -#: src/hugin/LensPanel.cpp:833
4831 +#: src/hugin/LensPanel.cpp:834
4832  msgid ""
4833  "Enter Crop Factor for image\n"
4834  "\n"
4835 @@ -566,7 +586,7 @@
4836  "\n"
4837  "gdzie przekÄ…tna jest przekÄ…tnÄ… (w mm) filmu lub matrycy cyfrowej."
4838  
4839 -#: src/hugin/LensPanel.cpp:834
4840 +#: src/hugin/LensPanel.cpp:835
4841  msgid "Adding Image"
4842  msgstr "&DodajÄ™ zdjÄ™cie"
4843  
4844 @@ -600,44 +620,54 @@
4845  msgid "forced close"
4846  msgstr "wymuszone zamkniÄ™cie"
4847  
4848 -#: src/hugin/MainFrame.cpp:491
4849 +#: src/hugin/MainFrame.cpp:476 src/hugin/MainFrame.cpp:504
4850 +#: src/hugin/MainFrame.cpp:523 src/hugin/PanoPanel.cpp:495
4851 +msgid "No images - Nothing to do"
4852 +msgstr ""
4853 +
4854 +#: src/hugin/MainFrame.cpp:476 src/hugin/MainFrame.cpp:504
4855 +#: src/hugin/MainFrame.cpp:523 src/hugin/PanoPanel.cpp:495
4856 +msgid "Warning"
4857 +msgstr ""
4858 +
4859 +#: src/hugin/MainFrame.cpp:495
4860  #, c-format
4861  msgid "saved project %s"
4862  msgstr "zapisano projekt %s"
4863  
4864 -#: src/hugin/MainFrame.cpp:500
4865 +#: src/hugin/MainFrame.cpp:508
4866  msgid "Save project file"
4867  msgstr "Zapisz projekt"
4868  
4869 -#: src/hugin/MainFrame.cpp:502
4870 +#: src/hugin/MainFrame.cpp:510
4871  msgid "Project files (*.pto)|*.pto|All files (*.*)|*.*"
4872  msgstr "Pliki projektów (*.pto)|*.pto|Wszystkie pliki (*.*)|*.*"
4873  
4874 -#: src/hugin/MainFrame.cpp:515
4875 +#: src/hugin/MainFrame.cpp:527
4876  msgid "Save PTStitcher script file"
4877  msgstr "Zapisz plik skryptu PTStitcher"
4878  
4879 -#: src/hugin/MainFrame.cpp:517
4880 +#: src/hugin/MainFrame.cpp:529
4881  msgid "PTStitcher files (*.txt)|*.txt"
4882  msgstr "Pliki PTStitcher'a (*.txt)|*.txt"
4883  
4884 -#: src/hugin/MainFrame.cpp:543
4885 +#: src/hugin/MainFrame.cpp:555
4886  msgid "Open project:   "
4887  msgstr "Otwórz projekt"
4888  
4889 -#: src/hugin/MainFrame.cpp:555
4890 +#: src/hugin/MainFrame.cpp:567
4891  msgid "Project opened"
4892  msgstr "Otwarto projekt"
4893  
4894 -#: src/hugin/MainFrame.cpp:565
4895 +#: src/hugin/MainFrame.cpp:577
4896  msgid "Error opening project:   "
4897  msgstr "BÅ‚Ä…d podczas otwierania projektu:"
4898  
4899 -#: src/hugin/MainFrame.cpp:583
4900 +#: src/hugin/MainFrame.cpp:595
4901  msgid "Open project file"
4902  msgstr "Otwórz projekt"
4903  
4904 -#: src/hugin/MainFrame.cpp:585
4905 +#: src/hugin/MainFrame.cpp:597
4906  msgid ""
4907  "Project files (*.pto,*.ptp,*.pts,*.oto)|*.pto;*.ptp;*.pts;*.oto;|All files "
4908  "(*.*)|*.*"
4909 @@ -645,11 +675,11 @@
4910  "Pliki projektów (*.pto,*.ptp,*.pts,*.oto)|*.pto;*.ptp;*.pts;*.oto;|Wszystkie "
4911  "zdjÄ™cia (*.*)|*.*"
4912  
4913 -#: src/hugin/MainFrame.cpp:593
4914 +#: src/hugin/MainFrame.cpp:605
4915  msgid "Open project: cancel"
4916  msgstr "Otwórz projekt: anuluj"
4917  
4918 -#: src/hugin/MainFrame.cpp:615 src/include/hugin/wxPanoCommand.h:169
4919 +#: src/hugin/MainFrame.cpp:627 src/include/hugin/wxPanoCommand.h:169
4920  msgid ""
4921  "Image files (*.jpg)|*.jpg;*.JPG|Image files (*.png)|*.png;*.PNG|Image files "
4922  "(*.tif)|*.tif;*.TIF|All files (*.*)|*.*"
4923 @@ -657,27 +687,27 @@
4924  "Pliki zdjęć (*.jpg)|*.jpg;*.JPG|Pliki zdjęć (*.png)|*.png;*.PNG|Pliki zdjęć "
4925  "(*.tif)|*.tif;*.TIF|Wszystkie pliki (*.*)|*.*"
4926  
4927 -#: src/hugin/MainFrame.cpp:616 src/include/hugin/wxPanoCommand.h:170
4928 +#: src/hugin/MainFrame.cpp:628 src/include/hugin/wxPanoCommand.h:170
4929  msgid "Add images"
4930  msgstr "Dodaj zdjÄ™cia"
4931  
4932 -#: src/hugin/MainFrame.cpp:660
4933 +#: src/hugin/MainFrame.cpp:672
4934  msgid "Add Image: cancel"
4935  msgstr "Dodaj zdjÄ™cia: anuluj"
4936  
4937 -#: src/hugin/MainFrame.cpp:985
4938 +#: src/hugin/MainFrame.cpp:997
4939  msgid "hugin - FAQ"
4940  msgstr "hugin - FAQ"
4941  
4942 -#: src/hugin/MainFrame.cpp:1064
4943 +#: src/hugin/MainFrame.cpp:1076
4944  msgid "Fine-tuning all points"
4945  msgstr "Dostrajanie wszystkich punktów"
4946  
4947 -#: src/hugin/MainFrame.cpp:1066
4948 +#: src/hugin/MainFrame.cpp:1078
4949  msgid "Finetuning"
4950  msgstr "Dostrajam"
4951  
4952 -#: src/hugin/MainFrame.cpp:1150
4953 +#: src/hugin/MainFrame.cpp:1162
4954  #, c-format
4955  msgid ""
4956  "%d points fine-tuned, %d points not updated due to low correlation\n"
4957 @@ -707,13 +737,13 @@
4958  "Użyj listy Punktów Kontrolnych (F3) aby zobaczyć wszystkie punkty obecnego "
4959  "projektu\n"
4960  
4961 -#: src/hugin/MainFrame.cpp:1152
4962 +#: src/hugin/MainFrame.cpp:1164
4963  msgid "Fine-tune result"
4964  msgstr "Rezultat dostrajania"
4965  
4966  #: src/hugin/MyProgressDialog.cpp:36
4967  msgid "Elapsed time : "
4968 -msgstr "UÅ‚ynęło już : "
4969 +msgstr "UpÅ‚ynęło już : "
4970  
4971  #: src/hugin/NonaStitcherPanel.cpp:236
4972  msgid "Stitching Panorama"
4973 @@ -725,10 +755,13 @@
4974  "The crop settings will be ignored\n"
4975  "Continue anyway?"
4976  msgstr ""
4977 +"Nona jeszcze nie obsÅ‚uguje zdjęć z danymi uciÄ™cia.\n"
4978 +"Ustawienia uciÄ™cia bÄ™dÄ… zignorowane\n"
4979 +"Kontynuować?"
4980  
4981  #: src/hugin/NonaStitcherPanel.cpp:261
4982  msgid "Cropping not supported by nona"
4983 -msgstr ""
4984 +msgstr "Nona nie obsÅ‚uguje ucinania"
4985  
4986  #: src/hugin/NonaStitcherPanel.cpp:280
4987  msgid "error during stitching:"
4988 @@ -750,7 +783,7 @@
4989  msgid "No enblend commandline tool selected"
4990  msgstr "Nie wybrano narzÄ™dzia enblend"
4991  
4992 -#: src/hugin/NonaStitcherPanel.cpp:347
4993 +#: src/hugin/NonaStitcherPanel.cpp:349
4994  msgid ""
4995  "Can not call enblend with a command line > 2000 characters.\n"
4996  "This is a Windows limitiation\n"
4997 @@ -762,11 +795,11 @@
4998  "ProszÄ™ użyć mniejszej iloÅ›ci zdjęć, lub skopiować je do folderu\n"
4999  "o krótszej nazwie Å›cieżki"
5000  
5001 -#: src/hugin/NonaStitcherPanel.cpp:353
5002 +#: src/hugin/NonaStitcherPanel.cpp:355
5003  msgid "Running Enblend"
5004  msgstr "Uruchomiono Enblend"
5005  
5006 -#: src/hugin/NonaStitcherPanel.cpp:353
5007 +#: src/hugin/NonaStitcherPanel.cpp:355
5008  msgid ""
5009  "Enblend will take a while to finish processing the panorama\n"
5010  "You can watch the enblend progress in the command window"
5011 @@ -774,7 +807,7 @@
5012  "Enblend zajmie chwilÄ™, aby zakoÅ„czyć pracÄ™ nad panoramÄ…\n"
5013  "Możesz podglÄ…dać przebieg programu enblend w oknie poleceÅ„"
5014  
5015 -#: src/hugin/NonaStitcherPanel.cpp:359
5016 +#: src/hugin/NonaStitcherPanel.cpp:363
5017  msgid ""
5018  "Could not execute enblend, system() failed: \n"
5019  "Command was :"
5020 @@ -782,15 +815,15 @@
5021  "Nie można byÅ‚o uruchomić enblenda, system() zwróciÅ‚ bÅ‚Ä…d: \n"
5022  "Polecenie byÅ‚o :"
5023  
5024 -#: src/hugin/NonaStitcherPanel.cpp:360
5025 +#: src/hugin/NonaStitcherPanel.cpp:364
5026  msgid "Error returned was :"
5027  msgstr "Zwrócono bÅ‚Ä…d :"
5028  
5029 -#: src/hugin/NonaStitcherPanel.cpp:388
5030 +#: src/hugin/NonaStitcherPanel.cpp:392
5031  msgid "CreateProcess Error"
5032  msgstr "BÅ‚Ä…d CreateProcess"
5033  
5034 -#: src/hugin/NonaStitcherPanel.cpp:401
5035 +#: src/hugin/NonaStitcherPanel.cpp:406
5036  msgid "enblend error"
5037  msgstr "bÅ‚Ä…d enblend"
5038  
5039 @@ -974,7 +1007,7 @@
5040  msgid "width needs to be an integer bigger than 0"
5041  msgstr "szerokość powinna być liczbÄ… wiÄ™kszÄ… od 0"
5042  
5043 -#: src/hugin/PanoPanel.cpp:502
5044 +#: src/hugin/PanoPanel.cpp:506
5045  msgid "Create panorama image"
5046  msgstr "Utwórz zdjÄ™cie panoramiczne"
5047  
5048 @@ -1010,7 +1043,8 @@
5049  msgid "Select PTStitcher"
5050  msgstr "Wybierz PTStitcher"
5051  
5052 -#: src/hugin/PreferencesDialog.cpp:188 src/hugin/RunOptimizerFrame.cpp:108
5053 +#: src/hugin/PreferencesDialog.cpp:188 src/hugin/RunOptimizerFrame.cpp:109
5054 +#: src/hugin/RunOptimizerFrame.cpp:123
5055  msgid "Select PTOptimizer"
5056  msgstr "Wybierz PTOptimizer"
5057  
5058 @@ -1150,33 +1184,33 @@
5059  msgid "PTStitcher note"
5060  msgstr "uwaga PTStitcher'a"
5061  
5062 -#: src/hugin/RunOptimizerFrame.cpp:116
5063 +#: src/hugin/RunOptimizerFrame.cpp:117
5064  msgid "No PTOptimizer.exe selected"
5065  msgstr "Nie wybrano PTOptimizer.exe"
5066  
5067 -#: src/hugin/RunOptimizerFrame.cpp:140
5068 +#: src/hugin/RunOptimizerFrame.cpp:131
5069 +#, fuzzy
5070 +msgid "No PTOptimizer selected"
5071 +msgstr "Nie wybrano PTOptimizer.exe"
5072 +
5073 +#: src/hugin/RunOptimizerFrame.cpp:155
5074  msgid "Failed to launch PTOptimizer."
5075  msgstr "BÅ‚Ä…d uruchamiania PTOptimizer"
5076  
5077 -#: src/hugin/RunOptimizerFrame.cpp:151
5078 +#: src/hugin/RunOptimizerFrame.cpp:166
5079  msgid "Could not obtain PTOptimizer output"
5080  msgstr "BÅ‚Ä…d w wyników rezultatu z PTOptimizer'a"
5081  
5082 -#: src/hugin/RunOptimizerFrame.cpp:161
5083 +#: src/hugin/RunOptimizerFrame.cpp:176
5084  msgid "Stop"
5085  msgstr "Zatrzymaj"
5086  
5087 -#: src/hugin/RunOptimizerFrame.cpp:223
5088 +#: src/hugin/RunOptimizerFrame.cpp:238
5089  #, c-format
5090  msgid "Strategy %d, Iteration %d, average distance: %f"
5091  msgstr "Strategia %d, Iteracja %d, Å›rednia odlegÅ‚ość: %f"
5092  
5093 -#: src/hugin/RunOptimizerFrame.cpp:295 src/hugin/xrc/edit_text.xrs:3
5094 -#: src/hugin/xrc/pref_dialog.xrs:70
5095 -msgid "Cancel"
5096 -msgstr "Anuluj"
5097 -
5098 -#: src/hugin/RunOptimizerFrame.cpp:327
5099 +#: src/hugin/RunOptimizerFrame.cpp:342
5100  msgid ""
5101  "Optimizer run finished.\n"
5102  "WARNING: a very small Field of View (v) has been estimated\n"
5103 @@ -1200,7 +1234,7 @@
5104  "równie dobrze,\n"
5105  "gdy zdjÄ™cia sÄ… już dobrze wyrównane."
5106  
5107 -#: src/hugin/RunOptimizerFrame.cpp:329
5108 +#: src/hugin/RunOptimizerFrame.cpp:344
5109  #, c-format
5110  msgid ""
5111  "Optimizer run finished.\n"
5112 @@ -1675,9 +1709,8 @@
5113  msgstr "pionowy (e):"
5114  
5115  #: src/hugin/xrc/lens_panel.xrs:35
5116 -#, fuzzy
5117  msgid "Set Crop"
5118 -msgstr "Zatrzymaj"
5119 +msgstr "Ustaw UciÄ™cie"
5120  
5121  #: src/hugin/xrc/lens_panel.xrs:36
5122  msgid "Set crop and image center"
5123 @@ -2468,7 +2501,7 @@
5124  
5125  #: src/hugin/xrc/pref_dialog.xrs:42
5126  msgid "Optimize and stitch only images selected in preview window"
5127 -msgstr ""
5128 +msgstr "Optymalizuj i sklej tylko zdjÄ™cia wybrane w oknie podglÄ…du"
5129  
5130  #: src/hugin/xrc/pref_dialog.xrs:43
5131  msgid "File options"
5132 @@ -2547,15 +2580,11 @@
5133  
5134  #: src/hugin/xrc/pref_dialog.xrs:66
5135  msgid "Do not set -w and -o arguments, they are set by hugin"
5136 -msgstr "Nie dodawaj parametrów -w i -o, hugin same je doda"
5137 +msgstr "Nie dodawaj parametrów -w i -o, hugin sam je doda"
5138  
5139  #: src/hugin/xrc/pref_dialog.xrs:67
5140  msgid "Delete remapped tiff files"
5141 -msgstr ""
5142 -
5143 -#: src/hugin/xrc/pref_dialog.xrs:68
5144 -msgid "Ok"
5145 -msgstr "Ok"
5146 +msgstr "UsuÅ„ zremapowane zdjÄ™cia tiff"
5147  
5148  #: src/hugin/xrc/pref_dialog.xrs:71
5149  msgid "Load Defaults"
5150 @@ -2745,9 +2774,3 @@
5151  #: src/hugin/xrc/run_stitcher_frame.xrs:3
5152  msgid "Abort"
5153  msgstr "Anuluj"
5154 -
5155 -#~ msgid "Center dialog"
5156 -#~ msgstr "Wycentruj okno"
5157 -
5158 -#~ msgid "center image shifting it with d and e"
5159 -#~ msgstr "wypoÅ›rodkój zdjÄ™cie przesuwajÄ…c je przez d i e"
5160 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/hugin/RunOptimizerFrame.cpp hugin/src/hugin/RunOptimizerFrame.cpp
5161 --- hugin-0.5-beta4/src/hugin/RunOptimizerFrame.cpp     2005-03-07 21:10:42.000000000 +0100
5162 +++ hugin/src/hugin/RunOptimizerFrame.cpp       2005-03-30 12:48:41.000000000 +0200
5163 @@ -6,7 +6,7 @@
5164   *
5165   *  @author Pablo d'Angelo <pablo.dangelo@web.de>
5166   *
5167 - *  $Id$
5168 + *  $Id$
5169   *
5170   *  This program is free software; you can redistribute it and/or
5171   *  modify it under the terms of the GNU General Public
5172 @@ -30,6 +30,7 @@
5173  #include "panoinc.h"
5174  #include "common/wxPlatform.h"
5175  
5176 +#include "hugin/config_defaults.h"
5177  #include "hugin/CommandHistory.h"
5178  #include "hugin/RunOptimizerFrame.h"
5179  #include "hugin/huginApp.h"
5180 @@ -116,6 +117,20 @@
5181              wxLogError(_("No PTOptimizer.exe selected"));
5182          }
5183      }
5184 +#elif (defined __WXMAC__)
5185 +    wxString optimizerExe = config->Read(wxT("/PanoTools/PTOptimizerExe"), wxT(HUGIN_PT_OPTIMIZER_EXE));
5186 +    if (!wxFile::Exists(optimizerExe)){
5187 +        wxFileDialog dlg(this,_("Select PTOptimizer"),
5188 +                         wxT(""), optimizerExe,
5189 +                         wxT("Any Files |*"),
5190 +                         wxOPEN, wxDefaultPosition);
5191 +        if (dlg.ShowModal() == wxID_OK) {
5192 +            optimizerExe = dlg.GetPath();
5193 +            config->Write(wxT("/PanoTools/PTOptimizerExe"),optimizerExe);
5194 +        } else {
5195 +            wxLogError(_("No PTOptimizer selected"));
5196 +        }
5197 +    }
5198  #else
5199      wxString optimizerExe = config->Read(wxT("/PanoTools/PTOptimizerExe"),wxT("PTOptimizer"));
5200  #endif
5201 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/include/common/utils.h hugin/src/include/common/utils.h
5202 --- hugin-0.5-beta4/src/include/common/utils.h  2005-01-17 02:29:40.000000000 +0100
5203 +++ hugin/src/include/common/utils.h    2005-04-24 18:48:12.000000000 +0200
5204 @@ -3,7 +3,7 @@
5205   *
5206   *  @author Pablo d'Angelo <pablo.dangelo@web.de>
5207   *
5208 - *  $Id$
5209 + *  $Id$
5210   *
5211   *  This is free software; you can redistribute it and/or
5212   *  modify it under the terms of the GNU General Public
5213 @@ -34,14 +34,14 @@
5214  
5215  #ifdef __WXMSW__
5216  // has to be included before!
5217 -//#include <wx/log.h>
5218 +#include <wx/log.h>
5219  
5220  #define snprintf _snprintf
5221  #endif
5222  
5223  #ifdef WIN32
5224  // has to be included before!
5225 -//#include <wx/log.h>
5226 +#include <wx/log.h>
5227  
5228  #define snprintf _snprintf
5229  #endif
5230 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/include/hugin/config_defaults.h hugin/src/include/hugin/config_defaults.h
5231 --- hugin-0.5-beta4/src/include/hugin/config_defaults.h 2005-03-07 21:09:29.000000000 +0100
5232 +++ hugin/src/include/hugin/config_defaults.h   2005-04-12 18:54:48.000000000 +0200
5233 @@ -3,7 +3,7 @@
5234   *
5235   *  @author Pablo d'Angelo <pablo.dangelo@web.de>
5236   *
5237 - *  $Id$
5238 + *  $Id$
5239   *
5240   *  This is free software; you can redistribute it and/or
5241   *  modify it under the terms of the GNU General Public
5242 @@ -56,7 +56,8 @@
5243  #define HUGIN_GUI_SORT_IMG_BY_DATE            0l
5244  
5245  // Program defaults
5246 -#ifdef WIN32
5247 +#if defined WIN32
5248 +
5249  #define HUGIN_PT_STITCHER_EXE                 "PTStitcher.exe"
5250  #define HUGIN_PT_OPTIMIZER_EXE                "PTOptimizer.exe"
5251  
5252 @@ -68,9 +69,8 @@
5253  
5254  #define HUGIN_APSIFT_EXE                      "autopano-win32.exe"
5255  
5256 -#endif
5257  
5258 -#ifdef __WXMAC__
5259 +#elif defined __WXMAC__
5260  
5261  #define HUGIN_PT_STITCHER_EXE                 "PTStitcher"
5262  #define HUGIN_PT_OPTIMIZER_EXE                "PTOptimizer"
5263 @@ -81,10 +81,11 @@
5264  #define HUGIN_APKOLOR_EXE                     ""
5265  #define HUGIN_APKOLOR_ARGS                    ""
5266  
5267 -#define HUGIN_APSIFT_EXE                      "autopano-complete.sh"
5268 -#endif
5269 +#define HUGIN_APSIFT_EXE                      "autopano-complete-mac.sh"
5270 +#define HUGIN_APSIFT_ARGS                     "-o %o -p %p %i"
5271  
5272 -#ifdef unix
5273 +
5274 +#elif defined unix
5275  
5276  #define HUGIN_PT_STITCHER_EXE                 "PTStitcher"
5277  #define HUGIN_PT_OPTIMIZER_EXE                "PTOptimizer"
5278 @@ -97,12 +98,15 @@
5279  
5280  #define HUGIN_APSIFT_EXE                      "autopanog.exe"
5281  
5282 +
5283  #endif
5284  
5285  // enblend args
5286  #define HUGIN_ENBLEND_ARGS                    "-v -z"
5287  
5288  // Autopano-SIFT args
5289 +#ifndef HUGIN_APSIFT_ARGS
5290  #define HUGIN_APSIFT_ARGS                     "--output %o --imagelist %namefile"
5291 +#endif
5292  
5293  #endif // _CONFIG_DEFAULTS_H
5294 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/include/hugin/CPEditorPanel.h hugin/src/include/hugin/CPEditorPanel.h
5295 --- hugin-0.5-beta4/src/include/hugin/CPEditorPanel.h   2005-02-22 11:09:10.000000000 +0100
5296 +++ hugin/src/include/hugin/CPEditorPanel.h     2005-04-24 18:48:12.000000000 +0200
5297 @@ -3,7 +3,7 @@
5298   *
5299   *  @author Pablo d'Angelo <pablo.dangelo@web.de>
5300   *
5301 - *  $Id$
5302 + *  $Id$
5303   *
5304   *  This is free software; you can redistribute it and/or
5305   *  modify it under the terms of the GNU General Public
5306 @@ -237,7 +237,7 @@
5307      wxCheckBox *m_autoAddCB;
5308      wxCheckBox *m_fineTuneCB;
5309      wxCheckBox *m_estimateCB;
5310 -#ifdef USE_WX25x
5311 +#ifdef USE_WX26x
5312         wxScrolledWindow *m_cp_ctrls;
5313      wxSplitterWindow *m_cp_splitter;
5314  #endif
5315 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/include/hugin/ImagesPanel.h hugin/src/include/hugin/ImagesPanel.h
5316 --- hugin-0.5-beta4/src/include/hugin/ImagesPanel.h     2005-02-22 11:09:12.000000000 +0100
5317 +++ hugin/src/include/hugin/ImagesPanel.h       2005-04-24 18:48:12.000000000 +0200
5318 @@ -3,7 +3,7 @@
5319   *
5320   *  @author Kai-Uwe Behrmann <web@tiscali.de>
5321   *
5322 - *  $Id$
5323 + *  $Id$
5324   *
5325   *  This is free software; you can redistribute it and/or
5326   *  modify it under the terms of the GNU General Public
5327 @@ -74,7 +74,7 @@
5328      // event handlers
5329      void OnAddImages(wxCommandEvent & e);
5330      void OnRemoveImages(wxCommandEvent & e);
5331 -#ifdef USE_WX25x
5332 +#ifdef USE_WX26x
5333         void OnPositionChanged(wxSplitterEvent& event);
5334  #endif
5335  
5336 @@ -134,7 +134,7 @@
5337      wxButton * m_matchingButton;
5338      wxButton * m_removeCPButton;
5339         
5340 -#ifdef USE_WX25x
5341 +#ifdef USE_WX26x
5342         wxScrolledWindow *m_img_ctrls;
5343         wxSplitterWindow *m_img_splitter;
5344  #endif
5345 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/include/hugin/LensPanel.h hugin/src/include/hugin/LensPanel.h
5346 --- hugin-0.5-beta4/src/include/hugin/LensPanel.h       2005-02-22 11:09:12.000000000 +0100
5347 +++ hugin/src/include/hugin/LensPanel.h 2005-04-24 18:48:12.000000000 +0200
5348 @@ -3,7 +3,7 @@
5349   *
5350   *  @author Kai-Uwe Behrmann <web@tiscali.de>
5351   *
5352 - *  $Id$
5353 + *  $Id$
5354   *
5355   *  This is free software; you can redistribute it and/or
5356   *  modify it under the terms of the GNU General Public
5357 @@ -124,7 +124,7 @@
5358      int m_distDigitsEdit;
5359      int m_pixelDigits;
5360  
5361 -#ifdef USE_WX25x
5362 +#ifdef USE_WX26x
5363      wxScrolledWindow *m_lens_ctrls;
5364         wxSplitterWindow *m_lens_splitter;
5365  #endif
5366 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/include/hugin/OptimizePanel.h hugin/src/include/hugin/OptimizePanel.h
5367 --- hugin-0.5-beta4/src/include/hugin/OptimizePanel.h   2005-03-07 21:09:29.000000000 +0100
5368 +++ hugin/src/include/hugin/OptimizePanel.h     2005-04-24 18:48:12.000000000 +0200
5369 @@ -3,7 +3,7 @@
5370   *
5371   *  @author Pablo d'Angelo <pablo.dangelo@web.de>
5372   *
5373 - *  $Id$
5374 + *  $Id$
5375   *
5376   *  This is free software; you can redistribute it and/or
5377   *  modify it under the terms of the GNU General Public
5378 @@ -102,7 +102,7 @@
5379      wxCheckBox * m_edit_cb;
5380      wxChoice * m_mode_cb;
5381         
5382 -#ifdef USE_WX25x
5383 +#ifdef USE_WX26x
5384         wxScrolledWindow *m_opt_ctrls;
5385  #endif
5386         
5387 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/include/hugin/PanoPanel.h hugin/src/include/hugin/PanoPanel.h
5388 --- hugin-0.5-beta4/src/include/hugin/PanoPanel.h       2005-02-22 11:09:17.000000000 +0100
5389 +++ hugin/src/include/hugin/PanoPanel.h 2005-04-24 18:48:12.000000000 +0200
5390 @@ -3,7 +3,7 @@
5391   *
5392   *  @author Kai-Uwe Behrmann <web@tiscali.de>
5393   *
5394 - *  $Id$
5395 + *  $Id$
5396   *
5397   *  This is free software; you can redistribute it and/or
5398   *  modify it under the terms of the GNU General Public
5399 @@ -140,7 +140,7 @@
5400      wxButton    * m_CalcHFOVButton;
5401      wxButton    * m_CalcOptWidthButton;
5402  
5403 -#ifdef USE_WX25x
5404 +#ifdef USE_WX26x
5405         wxScrolledWindow *m_pano_ctrls;
5406  #endif
5407  
5408 diff -Nur -x CVS -x .cvsignore hugin-0.5-beta4/src/include/panoinc_WX.h hugin/src/include/panoinc_WX.h
5409 --- hugin-0.5-beta4/src/include/panoinc_WX.h    2005-02-22 11:09:06.000000000 +0100
5410 +++ hugin/src/include/panoinc_WX.h      2005-04-24 18:48:12.000000000 +0200
5411 @@ -63,13 +63,15 @@
5412  #include <wx/regex.h>
5413  #include <wx/valtext.h>
5414  #include <wx/valgen.h>
5415 +
5416  #if wxCHECK_VERSION(2,5,3)
5417 -#ifdef __WXGTK__
5418 -// At present we can only use wxSplitterWindows on GTK
5419 -#define USE_WX25x
5420 -#endif
5421  #include <wx/imaglist.h>
5422  #endif
5423 +
5424 +#if wxCHECK_VERSION(2,6,0)
5425 +#define USE_WX26x
5426 +#endif
5427 +
5428  // remove stupid #defines from the evil windows.h
5429  #ifdef __WXMSW__
5430  #include <wx/msw/winundef.h>
This page took 0.835556 seconds and 3 git commands to generate.