Hello,

find attached a trivial typo fix.

cu Andreas
-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/20170617113917.wnlxwrkpwwk47m45%40argenau.bebt.de.
For more options, visit https://groups.google.com/d/optout.
>From 4aca008ca47a647bc697a8b0aa24ddc48eeb1b1d Mon Sep 17 00:00:00 2001
From: Andreas Metzler <ametz...@bebt.de>
Date: Sat, 17 Jun 2017 13:35:16 +0200
Subject: [PATCH] Typo fix: "an other" -> "another"

---
 src/hugin1/hugin/MainFrame.cpp                       | 4 ++--
 src/hugin1/hugin/MaskEditorPanel.h                   | 4 ++--
 src/hugin1/hugin/MaskImageCtrl.cpp                   | 2 +-
 src/hugin1/hugin/MaskImageCtrl.h                     | 2 +-
 src/hugin1/hugin/PanoOperation.cpp                   | 4 ++--
 src/hugin_base/algorithms/basic/CalculateOverlap.cpp | 2 +-
 src/translations/ca_ES.po                            | 4 ++--
 src/translations/ca...@valencia.po                   | 4 ++--
 src/translations/cs_CZ.po                            | 4 ++--
 src/translations/da.po                               | 4 ++--
 src/translations/de.po                               | 4 ++--
 src/translations/en_GB.po                            | 4 ++--
 src/translations/es.po                               | 4 ++--
 src/translations/eu.po                               | 4 ++--
 src/translations/fi.po                               | 4 ++--
 src/translations/fr.po                               | 4 ++--
 src/translations/hu.po                               | 4 ++--
 src/translations/hugin.pot                           | 4 ++--
 src/translations/it.po                               | 4 ++--
 src/translations/ja.po                               | 4 ++--
 src/translations/nl.po                               | 4 ++--
 src/translations/pl.po                               | 4 ++--
 src/translations/pt_BR.po                            | 4 ++--
 src/translations/ro.po                               | 4 ++--
 src/translations/ru.po                               | 4 ++--
 src/translations/sk.po                               | 4 ++--
 src/translations/sv.po                               | 4 ++--
 src/translations/zh_CN.po                            | 4 ++--
 src/translations/zh_TW.po                            | 4 ++--
 29 files changed, 55 insertions(+), 55 deletions(-)

diff --git a/src/hugin1/hugin/MainFrame.cpp b/src/hugin1/hugin/MainFrame.cpp
index 80b4ce0..6dd3a38 100755
--- a/src/hugin1/hugin/MainFrame.cpp
+++ b/src/hugin1/hugin/MainFrame.cpp
@@ -764,7 +764,7 @@ bool MainFrame::CloseProject(bool cancelable, CloseReason reason)
         switch (reason)
         {
             case LOAD_NEW_PROJECT:
-                messageString = _("Save changes to the panorama before opening an other project?");
+                messageString = _("Save changes to the panorama before opening another project?");
                 break;
             case NEW_PROJECT:
                 messageString = _("Save changes to the panorama before starting a new project?");
@@ -784,7 +784,7 @@ bool MainFrame::CloseProject(bool cancelable, CloseReason reason)
         switch(reason)
         {
             case LOAD_NEW_PROJECT:
-                message.SetExtendedMessage(_("If you load an other project without saving, your changes since your last save will be discarded."));
+                message.SetExtendedMessage(_("If you load another project without saving, your changes since your last save will be discarded."));
                 break;
             case NEW_PROJECT:
                 message.SetExtendedMessage(_("If you start a new project without saving, your changes since your last save will be discarded."));
diff --git a/src/hugin1/hugin/MaskEditorPanel.h b/src/hugin1/hugin/MaskEditorPanel.h
index c3a2726..dac8487 100755
--- a/src/hugin1/hugin/MaskEditorPanel.h
+++ b/src/hugin1/hugin/MaskEditorPanel.h
@@ -88,9 +88,9 @@ public:
     void panoramaChanged(HuginBase::Panorama &pano);
     void panoramaImagesChanged(HuginBase::Panorama &pano, const HuginBase::UIntSet & imgNr);
 
-    /** called when user selected an other image */
+    /** called when user selected another image */
     void OnImageSelect(wxListEvent &e);
-    /** called when user selected an other mask */
+    /** called when user selected another mask */
     void OnMaskSelect(wxListEvent &e);
     /** handler when mask type was changed */
     void OnMaskTypeChange(wxCommandEvent &e);
diff --git a/src/hugin1/hugin/MaskImageCtrl.cpp b/src/hugin1/hugin/MaskImageCtrl.cpp
index cf455df..df822c3 100755
--- a/src/hugin1/hugin/MaskImageCtrl.cpp
+++ b/src/hugin1/hugin/MaskImageCtrl.cpp
@@ -742,7 +742,7 @@ void MaskImageCtrl::OnLeftMouseUp(wxMouseEvent& mouse)
                     //there were no points selected
                     if(!selectedPoints)
                     {
-                        //if there where no points selected before, we searching for an other polygon
+                        //if there where no points selected before, we searching for another polygon
                         hugin_utils::FDiff2D p;
                         p.x=invtransform(m_dragStartPos.x+(m_currentPos.x-m_dragStartPos.x)/2);
                         p.y=invtransform(m_dragStartPos.y+(m_currentPos.y-m_dragStartPos.y)/2);
diff --git a/src/hugin1/hugin/MaskImageCtrl.h b/src/hugin1/hugin/MaskImageCtrl.h
index b1e7a69..cd41074 100755
--- a/src/hugin1/hugin/MaskImageCtrl.h
+++ b/src/hugin1/hugin/MaskImageCtrl.h
@@ -292,7 +292,7 @@ protected:
         POINTS_MOVING, // dragging points
         POINTS_DELETING,  // remove points inside rect
         POINTS_ADDING,  // adding new points add mouse position
-        POLYGON_SELECTING, // selecting an region to select an other polygon
+        POLYGON_SELECTING, // selecting an region to select another polygon
         REGION_SELECTING, // currently selecting an region
         NEW_POLYGON_STARTED, // modus is new polygon, but no point setted yet
         NEW_POLYGON_CREATING,  // currently creating new polygon
diff --git a/src/hugin1/hugin/PanoOperation.cpp b/src/hugin1/hugin/PanoOperation.cpp
index f52e971..070dfb8 100755
--- a/src/hugin1/hugin/PanoOperation.cpp
+++ b/src/hugin1/hugin/PanoOperation.cpp
@@ -454,7 +454,7 @@ bool ChangeLensOperation::IsEnabled(HuginBase::Panorama& pano, HuginBase::UIntSe
     }
     else
     {
-        //project must have more than 1 lens before you can assign an other lens number
+        //project must have more than 1 lens before you can assign another lens number
         HuginBase::StandardImageVariableGroups variableGroups(pano);
         return variableGroups.getLenses().getNumberOfParts() > 1;
     };
@@ -1175,7 +1175,7 @@ bool ChangeStackOperation::IsEnabled(HuginBase::Panorama& pano, HuginBase::UIntS
     }
     else
     {
-        //project must have more than 1 stack before you can assign an other stack number
+        //project must have more than 1 stack before you can assign another stack number
         HuginBase::StandardImageVariableGroups variableGroups(pano);
         return variableGroups.getStacks().getNumberOfParts() > 1;
     };
diff --git a/src/hugin_base/algorithms/basic/CalculateOverlap.cpp b/src/hugin_base/algorithms/basic/CalculateOverlap.cpp
index 6b0adff..849982f 100755
--- a/src/hugin_base/algorithms/basic/CalculateOverlap.cpp
+++ b/src/hugin_base/algorithms/basic/CalculateOverlap.cpp
@@ -103,7 +103,7 @@ void CalculateImageOverlap::calculate(unsigned int steps)
                     double xi,yi;
                     if (m_invTransform[imgNr]->transformImgCoord(xi, yi, xc, yc))
                     {
-                        //now, check if point is inside an other image
+                        //now, check if point is inside another image
                         for(unsigned int j=0;j<m_nrImg;j++)
                         {
                             if (imgNr == j)
diff --git a/src/translations/ca_ES.po b/src/translations/ca_ES.po
index 08ab382..dbbfc6d 100755
--- a/src/translations/ca_ES.po
+++ b/src/translations/ca_ES.po
@@ -2499,7 +2499,7 @@ msgstr "Exposició"
 
 #: hugin1/hugin/MainFrame.cpp:767
 #, fuzzy
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Deseu els canvis al panorama abans de tancar?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2514,7 +2514,7 @@ msgstr "Deseu els canvis al panorama abans de tancar?"
 #: hugin1/hugin/MainFrame.cpp:787
 #, fuzzy
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Si tanqueu sense desar, els canvis des de la darrera desada seran descartats"
diff --git a/src/translations/ca...@valencia.po b/src/translations/ca...@valencia.po
index 50b0954..6364578 100755
--- a/src/translations/ca...@valencia.po
+++ b/src/translations/ca...@valencia.po
@@ -2494,7 +2494,7 @@ msgstr "Exposició"
 
 #: hugin1/hugin/MainFrame.cpp:767
 #, fuzzy
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Alceu els canvis al panorama abans de tancar?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2509,7 +2509,7 @@ msgstr "Alceu els canvis al panorama abans de tancar?"
 #: hugin1/hugin/MainFrame.cpp:787
 #, fuzzy
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Si tanqueu sense alçar, els canvis des de la darrera alçada seran descartats"
diff --git a/src/translations/cs_CZ.po b/src/translations/cs_CZ.po
index ff7ec09..157546b 100755
--- a/src/translations/cs_CZ.po
+++ b/src/translations/cs_CZ.po
@@ -2497,7 +2497,7 @@ msgstr "Expozice"
 
 #: hugin1/hugin/MainFrame.cpp:767
 #, fuzzy
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Chcete před ukončením uložit změny?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2512,7 +2512,7 @@ msgstr "Chcete před ukončením uložit změny?"
 #: hugin1/hugin/MainFrame.cpp:787
 #, fuzzy
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr "Pokud uzavřete bez uložení, ztratíte všechny změny."
 
diff --git a/src/translations/da.po b/src/translations/da.po
index b0000e7..7630238 100755
--- a/src/translations/da.po
+++ b/src/translations/da.po
@@ -2500,7 +2500,7 @@ msgstr "Eksponering"
 
 #: hugin1/hugin/MainFrame.cpp:767
 #, fuzzy
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Gem ændringer på panorama før programmet lukkes?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2515,7 +2515,7 @@ msgstr "Gem ændringer på panorama før programmet lukkes?"
 #: hugin1/hugin/MainFrame.cpp:787
 #, fuzzy
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Hvis du lukket uden at gemme, vil dine ændringer siden sidste gemning blive "
diff --git a/src/translations/de.po b/src/translations/de.po
index 09c870c..59c9278 100755
--- a/src/translations/de.po
+++ b/src/translations/de.po
@@ -2518,7 +2518,7 @@ msgid "Exposure"
 msgstr "Belichtung"
 
 #: hugin1/hugin/MainFrame.cpp:767
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Änderungen am Panorama vor dem Öffnen eines anderen Projektes sichern?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2531,7 +2531,7 @@ msgstr "Änderungen am Panorama vor dem Schliessen sichern?"
 
 #: hugin1/hugin/MainFrame.cpp:787
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Alle Änderungen seit dem letzten Speichern gehen verloren, wenn Sie jetzt "
diff --git a/src/translations/en_GB.po b/src/translations/en_GB.po
index 360de53..2643656 100755
--- a/src/translations/en_GB.po
+++ b/src/translations/en_GB.po
@@ -2327,7 +2327,7 @@ msgid "Exposure"
 msgstr ""
 
 #: hugin1/hugin/MainFrame.cpp:767
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr ""
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2340,7 +2340,7 @@ msgstr ""
 
 #: hugin1/hugin/MainFrame.cpp:787
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 
diff --git a/src/translations/es.po b/src/translations/es.po
index d4b53f5..c88ac97 100755
--- a/src/translations/es.po
+++ b/src/translations/es.po
@@ -2666,7 +2666,7 @@ msgstr "Exposición"
 
 #: hugin1/hugin/MainFrame.cpp:767
 #, fuzzy
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "¿Guardar los cambios a la panorámica antes de cerrar?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2681,7 +2681,7 @@ msgstr "¿Guardar los cambios a la panorámica antes de cerrar?"
 #: hugin1/hugin/MainFrame.cpp:787
 #, fuzzy
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Si cierra sin guardar perderá los cambios desde la última vez que lo guardó"
diff --git a/src/translations/eu.po b/src/translations/eu.po
index edd3584..cf4f4e3 100755
--- a/src/translations/eu.po
+++ b/src/translations/eu.po
@@ -2526,7 +2526,7 @@ msgstr "Esposaketa"
 
 #: hugin1/hugin/MainFrame.cpp:767
 #, fuzzy
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Itxi baino lehen panoramaren aldaketak gorde?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2541,7 +2541,7 @@ msgstr "Itxi baino lehen panoramaren aldaketak gorde?"
 #: hugin1/hugin/MainFrame.cpp:787
 #, fuzzy
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Gorde gabe itxiz gero, gorde duzun azken puntutik hona egindako aldaketak "
diff --git a/src/translations/fi.po b/src/translations/fi.po
index 8cda139..400e835 100755
--- a/src/translations/fi.po
+++ b/src/translations/fi.po
@@ -2520,7 +2520,7 @@ msgid "Exposure"
 msgstr "Valotus"
 
 #: hugin1/hugin/MainFrame.cpp:767
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr ""
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2533,7 +2533,7 @@ msgstr ""
 
 #: hugin1/hugin/MainFrame.cpp:787
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 
diff --git a/src/translations/fr.po b/src/translations/fr.po
index f3a3de6..fdf1630 100755
--- a/src/translations/fr.po
+++ b/src/translations/fr.po
@@ -2538,7 +2538,7 @@ msgid "Exposure"
 msgstr "Exposition"
 
 #: hugin1/hugin/MainFrame.cpp:767
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr ""
 "Faut-il enregistrer les modifications apportées au panorama avant d'ouvrir "
 "un autre projet ?"
@@ -2556,7 +2556,7 @@ msgstr ""
 
 #: hugin1/hugin/MainFrame.cpp:787
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Si vous chargez un autre projet sans enregistrer les modifications apportées "
diff --git a/src/translations/hu.po b/src/translations/hu.po
index 89fd3fd..3615f6b 100755
--- a/src/translations/hu.po
+++ b/src/translations/hu.po
@@ -2499,7 +2499,7 @@ msgid "Exposure"
 msgstr "Expozíció"
 
 #: hugin1/hugin/MainFrame.cpp:767
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Mentse a változásokat a panorámába egy másik projekt megnyitása előtt?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2512,7 +2512,7 @@ msgstr "Mentse a panoráma változásait bezárás előtt?"
 
 #: hugin1/hugin/MainFrame.cpp:787
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Ha egy másik projektet megnyit mentés nélkül, az utolsó mentés utáni "
diff --git a/src/translations/hugin.pot b/src/translations/hugin.pot
index 86ff2ee..2d569ef 100755
--- a/src/translations/hugin.pot
+++ b/src/translations/hugin.pot
@@ -2319,7 +2319,7 @@ msgid "Exposure"
 msgstr ""
 
 #: hugin1/hugin/MainFrame.cpp:767
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr ""
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2332,7 +2332,7 @@ msgstr ""
 
 #: hugin1/hugin/MainFrame.cpp:787
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 
diff --git a/src/translations/it.po b/src/translations/it.po
index 1754309..0b96fb7 100755
--- a/src/translations/it.po
+++ b/src/translations/it.po
@@ -2570,7 +2570,7 @@ msgid "Exposure"
 msgstr "Esposizione"
 
 #: hugin1/hugin/MainFrame.cpp:767
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Salvare le modifiche al panorama prima di aprire un altro progetto?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2583,7 +2583,7 @@ msgstr "Salvare le modifiche al panorama prima di chiudere?"
 
 #: hugin1/hugin/MainFrame.cpp:787
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Se si carica un altro progetto senza salvare, i cambiamenti dall'ultimo "
diff --git a/src/translations/ja.po b/src/translations/ja.po
index 7ca7ff3..0695bfb 100755
--- a/src/translations/ja.po
+++ b/src/translations/ja.po
@@ -2540,7 +2540,7 @@ msgstr "露出"
 
 #: hugin1/hugin/MainFrame.cpp:767
 #, fuzzy
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "閉じる前にパノラマの変更を保存しますか?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2555,7 +2555,7 @@ msgstr "閉じる前にパノラマの変更を保存しますか?"
 #: hugin1/hugin/MainFrame.cpp:787
 #, fuzzy
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr "保存せずに閉じると、最後に保存してから後の変更は破棄されます"
 
diff --git a/src/translations/nl.po b/src/translations/nl.po
index 090b467..b046ca5 100755
--- a/src/translations/nl.po
+++ b/src/translations/nl.po
@@ -2512,7 +2512,7 @@ msgid "Exposure"
 msgstr "Belichting"
 
 #: hugin1/hugin/MainFrame.cpp:767
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Panorama wijzigingen bewaren voor openen van volgend project?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2525,7 +2525,7 @@ msgstr "Panorama wijzigingen bewaren voor afsluiten?"
 
 #: hugin1/hugin/MainFrame.cpp:787
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Als u een ander project laadt zonder nu eerst op te slaan, worden uw laatste "
diff --git a/src/translations/pl.po b/src/translations/pl.po
index 1f3ac3f..6bb284c 100755
--- a/src/translations/pl.po
+++ b/src/translations/pl.po
@@ -2499,7 +2499,7 @@ msgstr "Ekspozycja"
 
 #: hugin1/hugin/MainFrame.cpp:767
 #, fuzzy
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Zapisać zmiany w panoramie przed zamknięciem?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2514,7 +2514,7 @@ msgstr "Zapisać zmiany w panoramie przed zamknięciem?"
 #: hugin1/hugin/MainFrame.cpp:787
 #, fuzzy
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "W przypadku zamknięcia bez zapisu, zmiany od ostatniego zapisania zostaną "
diff --git a/src/translations/pt_BR.po b/src/translations/pt_BR.po
index a76cf62..8a437cc 100755
--- a/src/translations/pt_BR.po
+++ b/src/translations/pt_BR.po
@@ -2514,7 +2514,7 @@ msgid "Exposure"
 msgstr "Exposição"
 
 #: hugin1/hugin/MainFrame.cpp:767
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Gravar alterações no panorama antes de abrir outro projeto?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2527,7 +2527,7 @@ msgstr "Gravar alterações do panorama antes de sair?"
 
 #: hugin1/hugin/MainFrame.cpp:787
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Se você carregar outro projeto sem gravar, as mudanças desde a última "
diff --git a/src/translations/ro.po b/src/translations/ro.po
index 641c135..80fcffb 100755
--- a/src/translations/ro.po
+++ b/src/translations/ro.po
@@ -2525,7 +2525,7 @@ msgid "Exposure"
 msgstr "Expunere"
 
 #: hugin1/hugin/MainFrame.cpp:767
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr ""
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2538,7 +2538,7 @@ msgstr ""
 
 #: hugin1/hugin/MainFrame.cpp:787
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 
diff --git a/src/translations/ru.po b/src/translations/ru.po
index 65891c1..4138477 100755
--- a/src/translations/ru.po
+++ b/src/translations/ru.po
@@ -2492,7 +2492,7 @@ msgstr "Экспозиция"
 
 #: hugin1/hugin/MainFrame.cpp:767
 #, fuzzy
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Сохранить изменения в проекте перед закрытием?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2507,7 +2507,7 @@ msgstr "Сохранить изменения в проекте перед за
 #: hugin1/hugin/MainFrame.cpp:787
 #, fuzzy
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Если вы выйдите без сохранения, изменения с момента последнего сохранения "
diff --git a/src/translations/sk.po b/src/translations/sk.po
index 204539b..56a0319 100755
--- a/src/translations/sk.po
+++ b/src/translations/sk.po
@@ -2494,7 +2494,7 @@ msgid "Exposure"
 msgstr "Expozícia"
 
 #: hugin1/hugin/MainFrame.cpp:767
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Uložiť zmeny panorámy pred otvorením iného projektu?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2507,7 +2507,7 @@ msgstr "Uložiť zmeny panorámy pred uzatvorením?"
 
 #: hugin1/hugin/MainFrame.cpp:787
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Ak naložíte iný projekt bez uloženia, zmeny ktoré ste urobili od posledného "
diff --git a/src/translations/sv.po b/src/translations/sv.po
index 00a89e7..322d54b 100755
--- a/src/translations/sv.po
+++ b/src/translations/sv.po
@@ -2552,7 +2552,7 @@ msgstr "Exponering"
 
 #: hugin1/hugin/MainFrame.cpp:767
 #, fuzzy
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "Spara förändringar av panoramat innan stängning?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2567,7 +2567,7 @@ msgstr "Spara förändringar av panoramat innan stängning?"
 #: hugin1/hugin/MainFrame.cpp:787
 #, fuzzy
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr ""
 "Om du stänger utan att spara kommer ändringar gjorda sedan senaste sparning "
diff --git a/src/translations/zh_CN.po b/src/translations/zh_CN.po
index cab1a1c..a9a2a19 100755
--- a/src/translations/zh_CN.po
+++ b/src/translations/zh_CN.po
@@ -2440,7 +2440,7 @@ msgstr "曝光"
 
 #: hugin1/hugin/MainFrame.cpp:767
 #, fuzzy
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "在关闭前保存对全影图像的修改吗?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2455,7 +2455,7 @@ msgstr "在关闭前保存对全影图像的修改吗?"
 #: hugin1/hugin/MainFrame.cpp:787
 #, fuzzy
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr "假如您不保存就关闭, 自从您上次保存以来的修改将会被丢弃"
 
diff --git a/src/translations/zh_TW.po b/src/translations/zh_TW.po
index c2321ed..79873f4 100755
--- a/src/translations/zh_TW.po
+++ b/src/translations/zh_TW.po
@@ -2441,7 +2441,7 @@ msgstr "光圈"
 
 #: hugin1/hugin/MainFrame.cpp:767
 #, fuzzy
-msgid "Save changes to the panorama before opening an other project?"
+msgid "Save changes to the panorama before opening another project?"
 msgstr "在關閉前儲存檔案?"
 
 #: hugin1/hugin/MainFrame.cpp:770
@@ -2456,7 +2456,7 @@ msgstr "在關閉前儲存檔案?"
 #: hugin1/hugin/MainFrame.cpp:787
 #, fuzzy
 msgid ""
-"If you load an other project without saving, your changes since your last "
+"If you load another project without saving, your changes since your last "
 "save will be discarded."
 msgstr "如果你想要在儲存前關閉檔案,所有沒有存檔的部分將不會保留。"
 
-- 
2.11.0

Reply via email to