Fix build warnings 6
authorKrzysztof Wolanski <k.wolanski@samsung.com>
Mon, 8 Apr 2013 08:25:48 +0000 (10:25 +0200)
committerKrzysztof Wolanski <k.wolanski@samsung.com>
Mon, 8 Apr 2013 08:36:08 +0000 (10:36 +0200)
Change-Id: Id533709dc469232c7e26d33518025ca3505685ce

65 files changed:
Source/WebCore/Modules/webaudio/AudioProcessingEvent.cpp
Source/WebCore/dom/Range.cpp
Source/WebCore/html/HTMLMediaElement.cpp
Source/WebCore/page/EventHandler.cpp
Source/WebCore/platform/efl/RenderThemeEfl.cpp
Source/WebCore/platform/graphics/TiledBackingStore.cpp
Source/WebKit2/Shared/efl/WebMemorySamplerEfl.cpp
Source/WebKit2/UIProcess/API/efl/ewk_error.cpp
Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.cpp
Source/WebKit2/UIProcess/API/efl/tizen/Drag.cpp
Source/WebKit2/UIProcess/efl/po_tizen/ar.po
Source/WebKit2/UIProcess/efl/po_tizen/az.po
Source/WebKit2/UIProcess/efl/po_tizen/bg.po
Source/WebKit2/UIProcess/efl/po_tizen/ca.po
Source/WebKit2/UIProcess/efl/po_tizen/cs.po
Source/WebKit2/UIProcess/efl/po_tizen/da.po
Source/WebKit2/UIProcess/efl/po_tizen/de_DE.po
Source/WebKit2/UIProcess/efl/po_tizen/el_GR.po
Source/WebKit2/UIProcess/efl/po_tizen/en.po
Source/WebKit2/UIProcess/efl/po_tizen/en_PH.po
Source/WebKit2/UIProcess/efl/po_tizen/en_US.po
Source/WebKit2/UIProcess/efl/po_tizen/es_ES.po
Source/WebKit2/UIProcess/efl/po_tizen/es_MX.po
Source/WebKit2/UIProcess/efl/po_tizen/et.po
Source/WebKit2/UIProcess/efl/po_tizen/eu.po
Source/WebKit2/UIProcess/efl/po_tizen/fi.po
Source/WebKit2/UIProcess/efl/po_tizen/fr_CA.po
Source/WebKit2/UIProcess/efl/po_tizen/fr_FR.po
Source/WebKit2/UIProcess/efl/po_tizen/ga.po
Source/WebKit2/UIProcess/efl/po_tizen/gl.po
Source/WebKit2/UIProcess/efl/po_tizen/hi.po
Source/WebKit2/UIProcess/efl/po_tizen/hr.po
Source/WebKit2/UIProcess/efl/po_tizen/hu.po
Source/WebKit2/UIProcess/efl/po_tizen/hy.po
Source/WebKit2/UIProcess/efl/po_tizen/is.po
Source/WebKit2/UIProcess/efl/po_tizen/it_IT.po
Source/WebKit2/UIProcess/efl/po_tizen/ja_JP.po
Source/WebKit2/UIProcess/efl/po_tizen/ka.po
Source/WebKit2/UIProcess/efl/po_tizen/kk.po
Source/WebKit2/UIProcess/efl/po_tizen/ko_KR.po
Source/WebKit2/UIProcess/efl/po_tizen/lt.po
Source/WebKit2/UIProcess/efl/po_tizen/lv.po
Source/WebKit2/UIProcess/efl/po_tizen/mk.po
Source/WebKit2/UIProcess/efl/po_tizen/nb.po
Source/WebKit2/UIProcess/efl/po_tizen/nl_NL.po
Source/WebKit2/UIProcess/efl/po_tizen/pl.po
Source/WebKit2/UIProcess/efl/po_tizen/pt_BR.po
Source/WebKit2/UIProcess/efl/po_tizen/pt_PT.po
Source/WebKit2/UIProcess/efl/po_tizen/ro.po
Source/WebKit2/UIProcess/efl/po_tizen/ru_RU.po
Source/WebKit2/UIProcess/efl/po_tizen/sk.po
Source/WebKit2/UIProcess/efl/po_tizen/sl.po
Source/WebKit2/UIProcess/efl/po_tizen/sr.po
Source/WebKit2/UIProcess/efl/po_tizen/sv.po
Source/WebKit2/UIProcess/efl/po_tizen/tr_TR.po
Source/WebKit2/UIProcess/efl/po_tizen/uk.po
Source/WebKit2/UIProcess/efl/po_tizen/uz.po
Source/WebKit2/UIProcess/efl/po_tizen/zh_CN.po
Source/WebKit2/UIProcess/efl/po_tizen/zh_HK.po
Source/WebKit2/UIProcess/efl/po_tizen/zh_SG.po
Source/WebKit2/UIProcess/efl/po_tizen/zh_TW.po
Source/WebKit2/UIProcess/tizen/WebContextMenuProxyTizen.cpp
Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
Source/WebKit2/WebProcess/WebPage/efl/tizen/WebPageSerializerTizen.cpp
Source/WebKit2/WebProcess/efl/WebProcessEfl.cpp

index 80340ef..bbcc3dd 100644 (file)
@@ -57,9 +57,9 @@ AudioProcessingEvent::AudioProcessingEvent()
 #if ENABLE(TIZEN_WEB_AUDIO)
 AudioProcessingEvent::AudioProcessingEvent(ScriptProcessorNode* node, PassRefPtr<AudioBuffer> inputBuffer, PassRefPtr<AudioBuffer> outputBuffer, double time)
     : Event(eventNames().audioprocessEvent, true, false)
-    , m_node(node)
     , m_inputBuffer(inputBuffer)
     , m_outputBuffer(outputBuffer)
+    , m_node(node)
     , m_playbackTime(time)
 {
 }
index 8d3961e..1a0b96d 100644 (file)
@@ -1657,8 +1657,6 @@ void Range::boundingBoxEx(Vector<IntRect>& rects, bool useSelectionHeight, Range
             someFixed |= isFixed;
         } else if (r && r->isImage()) {
             RenderImage* renderImage= toRenderImage(r);
-            int startOffset = node == startContainer ? m_start.offset() : 0;
-            int endOffset = node == endContainer ? m_end.offset() : numeric_limits<int>::max();
             bool isFixed = false;
             IntRect r = renderImage->absoluteBoundingBoxRect();
             rects.append(r);
index c2e2bed..749099b 100755 (executable)
@@ -4834,6 +4834,8 @@ bool HTMLMediaElement::shouldSuspendMedia()
     if (!TizenExtensibleAPI::extensibleAPI().backgroundMusic())
         return true;
 #endif
+
+    return false;
 }
 
 void HTMLMediaElement::setSuspended(bool suspended)
index 68bd9bc..6f4a70d 100755 (executable)
@@ -1655,6 +1655,9 @@ bool EventHandler::handleMousePressEvent(const PlatformMouseEvent& mouseEvent)
         m_mouseDownPos = view->windowToContents(mouseEvent.position());
 #endif
     else {
+#if ENABLE(TIZEN_DAILY_UPVERSIONING)
+        UNUSED_PARAM(view);
+#endif
         invalidateClick();
         return false;
     }
index ec3f6b9..691851d 100755 (executable)
@@ -691,8 +691,8 @@ RenderThemeEfl::RenderThemeEfl(Page* page)
 #if ENABLE(TIZEN_GSTREAMER_VIDEO)
     , m_mediaPanelColor(0, 0, 0, 0)
     , m_mediaSliderColor(0xDC, 0xDC, 0xDC, 0x80)
-    , m_mediaPlayingColor(0x36, 0x8A, 0xFF)
     , m_mediaBufferingColor(0x96, 0x96, 0x96)
+    , m_mediaPlayingColor(0x36, 0x8A, 0xFF)
 #else
     , m_mediaPanelColor(220, 220, 195) // light tannish color.
     , m_mediaSliderColor(Color::white)
index 7069b9c..aab68f7 100755 (executable)
@@ -412,8 +412,8 @@ void TiledBackingStore::createTiles()
 #if ENABLE(TIZEN_CUTOFF_TILES_OVER_MEMORY_LIMIT)
     m_cutOffInfoList.clear();
     TileCutOffInfo zeroDistanceInfo;
-    for (unsigned yCoordinate = topLeft.y(); yCoordinate <= bottomRight.y(); ++yCoordinate) {
-        for (unsigned xCoordinate = topLeft.x(); xCoordinate <= bottomRight.x(); ++xCoordinate) {
+    for (int yCoordinate = topLeft.y(); yCoordinate <= bottomRight.y(); ++yCoordinate) {
+        for (int xCoordinate = topLeft.x(); xCoordinate <= bottomRight.x(); ++xCoordinate) {
             Tile::Coordinate currentCoordinate(xCoordinate, yCoordinate);
             double distance = tileManhattanDistance(visibleRect, currentCoordinate);
             if (distance > 0) {
index 48f6e50..e5cf3fb 100644 (file)
@@ -188,7 +188,11 @@ ApplicationMemoryStats sampleApplicationMalloc(int pid)
     sprintf(processPath, "/proc/%d/statm", getpid());
     FILE* fMemoryStatus = fopen(processPath, "r");
     if (fMemoryStatus) {
+#if ENABLE(TIZEN_DAILY_UPVERSIONING)
+        int returnValue = fscanf(fMemoryStatus, "%d %d %d %d %d %d %d",
+#else
         fscanf(fMemoryStatus, "%d %d %d %d %d %d %d",
+#endif
                 &applicationStats.totalProgramSize,
                 &applicationStats.residentSetSize,
                 &applicationStats.sharedSize,
@@ -196,6 +200,9 @@ ApplicationMemoryStats sampleApplicationMalloc(int pid)
                 &applicationStats.librarySize,
                 &applicationStats.dataStackSize,
                 &applicationStats.dirtyPageSize);
+#if ENABLE(TIZEN_DAILY_UPVERSIONING)
+        UNUSED_PARAM(returnValue);
+#endif
         fclose(fMemoryStatus);
     }
 
index 8607718..dacc4a9 100755 (executable)
@@ -198,7 +198,7 @@ void ewk_error_load_error_page(Ewk_Error* error, WKPageRef page)
     char errorMessage[1280] = {0x00, };
 
 #if ENABLE(TIZEN_WEBKIT2_TEXT_TRANSLATION)
-    snprintf(errorMessage, 1280, dgettext("WebKit", "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"), urlLink.utf8().data());
+    snprintf(errorMessage, 1280, dgettext("WebKit", "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"), urlLink.utf8().data());
 
     htmlSource = htmlSource.replace("%errorMessage%", String::fromUTF8(errorMessage));
     htmlSource = htmlSource.replace("%errorCause%", String::fromUTF8(dgettext("WebKit", "IDS_WEBVIEW_BODY_UNABLE_TO_RETRIEVE_WEB_PAGE_HWEB_PAGE_MIGHT_BE_TEMPORARILY_DOWN_OR_HAVE_MOVED_TO_NEW_URL")));
index 8a0fe50..578947d 100755 (executable)
@@ -38,8 +38,13 @@ extern EWK2UnitTest::EWK2UnitTestEnvironment* environment;
 namespace EWK2UnitTest {
 
 EWK2UnitTestBase::EWK2UnitTestBase()
+#if ENABLE(TIZEN_DAILY_UPVERSIONING)
+    : m_webView(0)
+    , m_ecoreEvas(0)
+#else
     : m_ecoreEvas(0)
     , m_webView(0)
+#endif
     , m_ewkViewClass(EWK_VIEW_SMART_CLASS_INIT_NAME_VERSION("Browser_View"))
 {
     ewk_view_smart_class_set(&m_ewkViewClass);
index 1054f84..1252316 100755 (executable)
@@ -101,7 +101,7 @@ void Drag::handleMouseMove(DragHandle* handle)
     m_viewImpl->page()->dragUpdated(dragData ,m_dragStorageName);
 
     DragSession dragSession = m_viewImpl->page()->dragSession();
-    if (dragSession.operation != DragSourceActionNone)
+    if (dragSession.operation != DragOperationNone)
         handle->updateHandleIcon(true);
      else
         handle->updateHandleIcon(false);
@@ -120,7 +120,7 @@ void Drag::handleMouseUp(DragHandle* handle)
     m_viewImpl->page()->dragUpdated(dragData ,m_dragStorageName);
 
     DragSession dragSession = m_viewImpl->page()->dragSession();
-    if (dragSession.operation != DragSourceActionNone) {
+    if (dragSession.operation != DragOperationNone) {
         m_viewImpl->page()->performDrag(dragData, m_dragStorageName);
         setDragMode(false);
         m_Handle->hide();
index 6c5e087..27fc38a 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "صفحة الويب‬ غير متاحة"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "صفحة الويب غير متاحة مؤقتا"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "حدث الخطأ التالي أثناء استرداد صفحة الويب %s."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 61baade..ba720d9 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Veb-səhifə mümkün deyil"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Veb-səhifə müvəqqəti mümkün deyil"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Veb-səhifəni yükləyərkən %s, aşağıdakı səhv baş verdi."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index e334ac4..b3498b5 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Уеб страницата не е достъпна"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Уеб страницата временно не е достъпна"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "По време на извличането на уеб страницата %s възникна следната грешка."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 0642b2e..39bde63 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Pàgina web no disponible"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Pàgina web no disponible temporalment"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "S'ha produït l'error següent en recuperar la pàgina web %s."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index b31be08..eccab02 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Webová stránka není k dispozici"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Webová stránka dočasně není k dispozici"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Při načítání webové stránky %s došlo k následující chybě."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index fd6adb4..2f6cc07 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Webside ej tilgængelig"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Webside midlertidigt ikke tilgængelig"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Ved hentning af webside %s, opstod følgende fejl."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 13dc101..5d1e6f4 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Webseite nicht verfügbar"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Webseite ist zur Zeit nicht verfügbar"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Während des Abrufens der Webseite %s ist folgender Fehler aufgetreten."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 23e7613..e1f4b1f 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Η ιστοσελίδα δεν είναι διαθέσιμη"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Η ιστοσελίδα δεν είναι διαθέσιμη προσωρινά"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Προέκυψε το παρακάτω σφάλμα κατά την ανάκτηση της ιστοσελίδας %s."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index a58981b..2c36cd5 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Web page not available"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Web page temporarily not available"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "While retrieving Web page %s, following error occurred."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index a58981b..2c36cd5 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Web page not available"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Web page temporarily not available"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "While retrieving Web page %s, following error occurred."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 745618a..4098be5 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Web page not available"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Web page temporarily not available"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "While retrieving Web page %s, the following error occurred."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 8257deb..253c03c 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Página web no disponible"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "La página web no está disponible temporalmente"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Se ha producido el siguiente error al recuperar la página web %s."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 1b71cb0..8213746 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Página Web no disponible"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Página Web temporalmente no disponible"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Al recuperar la página Web %s, ocurrió el siguiente error."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 96488f8..b8bcbf7 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Veebileht pole saadaval"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Veebileht pole ajutiselt saadaval"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Veebilehe %s toomisel ilmnes järgmine tõrge."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 7de475e..ccb78f2 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Web orria ez dago erabilgarri"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Web orria ez dago erabilgarri aldi baterako"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "%s web orria berreskuratu bitartean, ondoko errore hau gertatu da."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index e853d2a..bb708dd 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Verkkosivu ei ole käytettävissä"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Verkkosivu ei tällä hetkellä ole käytettävissä"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Verkkosivua %s haettaessa tapahtui seuraava virhe."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 6c1edce..d9ac147 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Page Web non disponible"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Page Web temporairement indisponible"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Lors de la récupération de la page Web %s, l'erreur suivante s'est produite."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index f6b123e..483668c 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Page Web non disponible"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Page Web temporairement indisponible"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Lors de la récupération de la page Web %s, l'erreur suivante s'est produite."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 4721d16..6018eb5 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Níl leathanach Gréasáin ar fáil"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Níl leathanach Gréasáin ar fáil go sealadach"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Tharla an earráid seo a leanas agus leathanach Gréasáin %s á aisghabháil."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 56255cf..df597ca 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Páxina web non dispoñible"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Páxina web non dispoñible temporalmente"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Durante a recuperación da páxina web %s, produciuse o seguinte erro."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 22b28b0..2e06e09 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "वेब पेज उपलब्ध नहीं"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "वेब पेज अस्थायी रूप में उपलब्ध नहीं"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "वेब पेज %s पुनर्प्राप्त करने के दौरान, निम्नलिखित त्रुटि पाई गई।"
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 9407946..013d289 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Internet stranica nedostupna"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Internet stranica privremeno nedostupna"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Došlo je do sljedeće greške tijekom dohvaćanja internet stranice %s."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 4a58980..226cd86 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "A weboldal nem elérhető"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "A weboldal átmenetileg nem elérhető"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "A következő hiba történt a(z) %s weboldal beolvasása során."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 4f53fce..3e45554 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Կայքէջը մատչելի չէ"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Կայքէջը ժամանակավորապես մատչելի չէ"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Հետևյալ սխալը տեղի ունեցավ %s կայքէջն առբերելու ընթացքում:"
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index d9a5ef8..c0849b4 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Vefsíðan er ekki tiltæk"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Vefsíðan er ekki tiltæk eins og er"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Eftirfarandi villa kom upp þegar vefsíðan %s var sótt."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index a62123b..a7129c1 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Pagina Web non disponibile"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Pagina Web temporaneamente non disponibile"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Si è verificato il seguente errore durante il recupero della pagina Web %s."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 806af0d..9cc5366 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Webページを利用できません。"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Webページが一時的に利用できません。"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Webページ%sの取得中に以下のエラーが発生しました。"
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 4697ffe..20ba99c 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "ვებგვერდი მიუწვდომელია"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "ვებგვერდი დროებით მიუწვდომელია"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "როდესაც იტვირთებოდა ვებგვერდი %s, მოხდა შემდეგი შეცდომა."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index f49cf4d..5373651 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Веб-бет қол жетімді емес"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Веб-бет уақытша қол жетімді емес"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Веб-бет %s алынғанда, төмендегі қате пайда болды."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index a5d5788..0e38c7b 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "웹 페이지에 연결할 수 없습니다"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "웹 페이지를 일시적으로 사용할 수 없습니다"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "웹 페이지 %s을(를) 가져오는 중에 다음 오류가 발생하였습니다."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index dea7589..d1ee7dc 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Tinklalapis nepasiekiamas"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Tinklalapis laikinai nepasiekiamas"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Priimant tinklalapį %s, įvyko ši klaida."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index ebcea2c..a9efdd8 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Tīmekļa lapa nav pieejama"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Tīmekļa lapa īslaicīgi nav pieejama"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Tīmekļa lapas %s izguves laikā rādās šāda kļūda."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 7bd0c02..69e2da8 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Веб-страницата е недостапна"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Веб-страницата е привремено недостапна"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Додека се отвораше веб-страницата %s, дојде до следнава грешка."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 99fc3f9..59722ca 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Nettside ikke tilgjengelig"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Nettsiden er midlertidig utilgjengelig"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Under henting av nettside %s oppstod følgende feil."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 91dabb2..b183b0c 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Webpagina niet beschikbaar"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Webpagina tijdelijk niet beschikbaar"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "De volgende fout is opgetreden bij het ophalen van webpagina %s."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index cb3da35..0e76904 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Strona WWW niedostępna"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Strona WWW tymczasowo niedostępna"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Podczas pobierania strony WWW %s wystąpił następujący błąd."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index f401934..21cf5e3 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Página da Web não disponível"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Página da Web temporariamente não disponível"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Durante a recuperação da página da Web %s, o seguinte erro ocorreu."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index ca449bf..1b50f6c 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Página Web indisponível"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Página Web temporariamente indisponível"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Ao obter a página %s da Web, ocorreu o erro seguinte."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 76c838e..d3ec376 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Pagină Web indisponibilă"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Pagină Web temporar indisponibilă"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "S-a produs următoarea eroare la preluarea paginii Web %s."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 5c8d95d..2202bdc 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Веб-страница недоступна"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Веб-страница временно недоступна"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "При получении веб-страницы %s произошла следующая ошибка."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index ee7eb57..07f8ea4 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Webová stránka nie je k dispozícii"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Webová stránka dočasne nie je k dispozícii"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Počas načítania webovej stránky %s sa vyskytla nasledujúca chyba."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 9546058..172450c 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Spletna stran ni na voljo"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Spletna stran trenutno ni na voljo"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Med prikazovanjem spletne strani %s je prišlo do te napake."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index a0e1288..1383fab 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Web stranica nije dostupna"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Web stranica privremeno nije dostupna"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Tokom učitavanja web stranice %s, došlo je do sledeće greške."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index e60e015..d669bf9 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Webbsidan är ej tillgänglig"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Webbsidan är för tillfället ej tillgänglig"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "När webbsidan %s hämtades inträffade följande fel."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 30fc324..8791a27 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Web sayfası kullanılamıyor"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Web sayfası geçici olarak kullanılamıyor"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Web sayfası %s alınırken, aşağıdaki hata oluştu."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 1d38abb..9ca93a8 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Веб-сторінка недоступна"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Веб-сторінка тимчасово недоступна"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "Під час завантаження веб-сторінки %s сталася така помилка."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index c508be3..ac9d3c5 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "Veb-sahifadan foydalanib bo‘lmaydi"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "Veb-sahifadan vaqtincha foydalanib bo‘lmaydi"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "%s Veb-sahifasi olinayotganda, quyidagi xato yuzaga keldi."
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 656ff6e..7bfd5f0 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "网页不可用"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "网页临时不可用"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "获取网页 %s 时发生以下错误"
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 0d6b4bc..ee4df07 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "網頁不可用"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "網頁暫時不可用"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "取得網頁 %s 時,發生以下錯誤"
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index a912d6b..64a109c 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "网页不可用"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "网页临时不可用"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "获取网页 %s 时发生以下错误"
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index 1f95960..6091b14 100755 (executable)
@@ -52,7 +52,7 @@ msgstr "網頁不可用"
 msgid "IDS_WEBVIEW_BODY_WEB_PAGE_TEMPORARILY_NOT_AVAILABLE"
 msgstr "網頁暫時不可用"
 
-msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_PS_FOLLOWING_ERROR_OCCURRED"
+msgid "IDS_WEBVIEW_BODY_WHILE_RETRIEVING_WEB_PAGE_%s_FOLLOWING_ERROR_OCCURRED"
 msgstr "取得網頁 %s 時,發生以下錯誤"
 
 msgid "IDS_WEBVIEW_BUTTON_DONE"
index ea64bc2..65e218b 100755 (executable)
@@ -123,8 +123,8 @@ void WebContextMenuProxyTizen::createEflMenu(const Vector<WebContextMenuItemData
             if (!m_items.at(i).iconFile().isEmpty()) {
                 icon = elm_icon_add(m_popup);
                 TIZEN_LOGI("icon file path : %s", m_items.at(i).iconFile().utf8().data());
-                if (!elm_icon_file_set(icon, m_items.at(i).iconFile().utf8().data(), NULL)) {
-                    TIZEN_LOGE("elm_icon_file_set is failed");
+                if (!elm_image_file_set(icon, m_items.at(i).iconFile().utf8().data(), NULL)) {
+                    TIZEN_LOGE("elm_image_file_set is failed");
                     icon = 0;
                 }
             }
index a212fa6..c103ef1 100644 (file)
@@ -576,6 +576,9 @@ bool NetscapePlugin::platformHandleMouseEvent(const WebMouseEvent& event)
 #if ENABLE(GESTURE_EVENTS)
     case WebEvent::GestureScrollBegin:
     case WebEvent::GestureScrollEnd:
+#if ENABLE(TIZEN_DAILY_UPVERSIONING)
+    case WebEvent::GestureSingleTap:
+#endif
 #endif
 #if ENABLE(TOUCH_EVENTS)
     case WebEvent::TouchStart:
index 376d53d..de1e4e1 100644 (file)
@@ -337,7 +337,7 @@ void WebPageSerializerTizen::openTagToString(Element* element,
                     } else {
                         result += m_localDirectoryName + "/";
                         size_t index = attrValue.reverseFind('/');
-                        if (index != -1)
+                        if (index != WTF::notFound)
                             result += attrValue.substring(index + 1);
                     }
                 } else
@@ -475,9 +475,8 @@ bool WebPageSerializerTizen::getSerializedPageContent(WebPage* page, String& loc
 {
     WebFrame* frame = page->mainWebFrame();
     WebPageSerializerTizen serializer(frame, localDir);
-    bool ret = serializer.serialize();
-    if (!ret)
-        return false;
+
+    return serializer.serialize();
 }
 
 bool WebPageSerializerTizen::serialize()
@@ -519,7 +518,7 @@ bool WebPageSerializerTizen::serialize()
             if (!url.isEmpty() && !url.lastPathComponent().isEmpty()) {
                 fileName += frameDirName + "/" + url.lastPathComponent();
                 size_t index_filename = fileName.reverseFind('.');
-                if (index_filename == -1)
+                if (index_filename == WTF::notFound)
                     fileName += ".html";
             } else
                 fileName = frameDirName + "/" + "index.html";
index 385f6d7..6cd3d4e 100755 (executable)
@@ -316,7 +316,7 @@ void WebProcess::setProxy(const WTF::String& proxyAddress)
 {
     SoupSession* session = WebCore::ResourceHandle::defaultSession();
     if (!proxyAddress) {
-        g_object_set(session, SOUP_SESSION_PROXY_URI, 0, 0);
+        g_object_set(session, SOUP_SESSION_PROXY_URI, 0, NULL);
         soup_session_remove_feature_by_type(session, SOUP_TYPE_PROXY_RESOLVER);
         return;
     }
@@ -327,7 +327,7 @@ void WebProcess::setProxy(const WTF::String& proxyAddress)
 
     SoupURI* uri = soup_uri_new(proxyValue.utf8().data());
     if (uri) {
-        g_object_set(session, SOUP_SESSION_PROXY_URI, uri, 0);
+        g_object_set(session, SOUP_SESSION_PROXY_URI, uri, NULL);
         soup_uri_free(uri);
     }
 }