Tizen 2.1 base
authorJinkun Jang <jinkun.jang@samsung.com>
Tue, 12 Mar 2013 16:37:50 +0000 (01:37 +0900)
committerJinkun Jang <jinkun.jang@samsung.com>
Tue, 12 Mar 2013 16:37:50 +0000 (01:37 +0900)
75 files changed:
AUTHORS [new file with mode: 0644]
CMakeLists.txt [new file with mode: 0644]
LICENSE.Flora [new file with mode: 0644]
NOTICE [new file with mode: 0644]
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/dirs [new file with mode: 0644]
debian/net.netpopup.install.in [new file with mode: 0644]
debian/org.tizen.net-popup.install.in [new file with mode: 0644]
debian/rules [new file with mode: 0755]
include/net-popup-strings.h [new file with mode: 0644]
include/net-popup.h [new file with mode: 0644]
net.netpopup.manifest [new file with mode: 0644]
org.tizen.net-popup.manifest [new file with mode: 0644]
packaging/org.tizen.net-popup.spec [new file with mode: 0644]
po/CMakeLists.txt [new file with mode: 0644]
po/POTFILES.in [new file with mode: 0755]
po/ar.po [new file with mode: 0644]
po/az.po [new file with mode: 0644]
po/bg.po [new file with mode: 0644]
po/ca.po [new file with mode: 0644]
po/cs.po [new file with mode: 0644]
po/da.po [new file with mode: 0644]
po/de_DE.po [new file with mode: 0644]
po/el_GR.po [new file with mode: 0644]
po/en.po [new file with mode: 0644]
po/en_PH.po [new file with mode: 0644]
po/en_US.po [new file with mode: 0644]
po/es_ES.po [new file with mode: 0644]
po/es_US.po [new file with mode: 0644]
po/et.po [new file with mode: 0644]
po/eu.po [new file with mode: 0644]
po/fi.po [new file with mode: 0644]
po/fr_CA.po [new file with mode: 0644]
po/fr_FR.po [new file with mode: 0644]
po/ga.po [new file with mode: 0644]
po/gl.po [new file with mode: 0644]
po/hi.po [new file with mode: 0644]
po/hr.po [new file with mode: 0644]
po/hu.po [new file with mode: 0644]
po/hy.po [new file with mode: 0644]
po/is.po [new file with mode: 0644]
po/it_IT.po [new file with mode: 0644]
po/ja_JP.po [new file with mode: 0644]
po/ka.po [new file with mode: 0644]
po/kk.po [new file with mode: 0644]
po/ko_KR.po [new file with mode: 0644]
po/lt.po [new file with mode: 0644]
po/lv.po [new file with mode: 0644]
po/mk.po [new file with mode: 0644]
po/nb.po [new file with mode: 0644]
po/nl_NL.po [new file with mode: 0644]
po/pl.po [new file with mode: 0644]
po/pt_BR.po [new file with mode: 0644]
po/pt_PT.po [new file with mode: 0644]
po/ro.po [new file with mode: 0644]
po/ru_RU.po [new file with mode: 0644]
po/sk.po [new file with mode: 0644]
po/sl.po [new file with mode: 0644]
po/sr.po [new file with mode: 0644]
po/sv.po [new file with mode: 0644]
po/tr_TR.po [new file with mode: 0644]
po/uk.po [new file with mode: 0644]
po/update-po.sh [new file with mode: 0755]
po/uz.po [new file with mode: 0644]
po/zh_CN.po [new file with mode: 0644]
po/zh_HK.po [new file with mode: 0644]
po/zh_SG.po [new file with mode: 0644]
po/zh_TW.po [new file with mode: 0644]
resources/images/Q02_Notification__wifi_in_range.png [new file with mode: 0644]
resources/net-popup.ini [new file with mode: 0644]
resources/net.netpopup.xml [new file with mode: 0644]
resources/org.tizen.net-popup.xml [new file with mode: 0644]
src/net-popup.c [new file with mode: 0644]

diff --git a/AUTHORS b/AUTHORS
new file mode 100644 (file)
index 0000000..9973c94
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,2 @@
+Sanghoon Cho <sanghoon80.cho@samsung.com>\r
+Danny Jeongseok Seo <s.seo@samsung.com>\r
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644 (file)
index 0000000..f4d110d
--- /dev/null
@@ -0,0 +1,73 @@
+CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
+PROJECT(net-popup C)
+
+SET(SRCS ${CMAKE_SOURCE_DIR}/src/net-popup.c)
+
+SET(PREFIX ${CMAKE_INSTALL_PREFIX})
+SET(LOCALEDIR "${PREFIX}/share/locale")
+
+IF("${CMAKE_BUILD_TYPE}" STREQUAL "")
+       SET(CMAKE_BUILD_TYPE "Release")
+ENDIF("${CMAKE_BUILD_TYPE}" STREQUAL "")
+MESSAGE("Build type: ${CMAKE_BUILD_TYPE}")
+
+INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include)
+
+INCLUDE(FindPkgConfig)
+pkg_check_modules(pkgs REQUIRED
+       appcore-efl
+       bundle
+       dlog
+       ecore
+       edje
+       elementary
+       evas
+       status
+       syspopup
+       notification
+       appsvc)
+
+FOREACH(flag ${pkgs_CFLAGS})
+       SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag} -Wall -g")
+ENDFOREACH(flag)
+#SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} -finstrument-functions")
+
+SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIC")
+SET(CMAKE_C_FLAGS_DEBUG "-O0 -g ")
+SET(CMAKE_C_FLAGS_RELEASE "-O2")
+#This is flag for Gprof
+#SET(CMAKE_C_FLAGS_RELEASE "-pg")
+
+FIND_PROGRAM(UNAME NAMES uname)
+EXEC_PROGRAM("${UNAME}" ARGS "-m" OUTPUT_VARIABLE "ARCH")
+IF("${ARCH}" STREQUAL "arm")
+       ADD_DEFINITIONS("-DTARGET")
+       MESSAGE("add -DTARGET")
+ENDIF("${ARCH}" STREQUAL "arm")
+
+ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"")
+ADD_DEFINITIONS("-DSLP_DEBUG")
+
+SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -pie")
+
+ADD_EXECUTABLE(${PROJECT_NAME} ${SRCS})
+TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${pkgs_LDFLAGS})
+
+#ADD_CUSTOM_TARGET(custom_popup.edj
+#COMMAND edje_cc -id ${CMAKE_CURRENT_SOURCE_DIR}/data
+#${CMAKE_CURRENT_SOURCE_DIR}/data/custom_popup.edc
+#${CMAKE_CURRENT_SOURCE_DIR}/data/custom_popup.edj DEPENDS
+#${CMAKE_CURRENT_SOURCE_DIR}/data/custom_popup.edc
+#)
+
+#ADD_DEPENDENCIES(${PROJECT_NAME} custom_popup.edj)
+
+INSTALL(TARGETS ${PROJECT_NAME} DESTINATION /usr/apps/org.tizen.net-popup/bin)
+
+# install desktop file & icon
+SET(PREFIX ${CMAKE_INSTALL_PREFIX})
+INSTALL(FILES ${CMAKE_BINARY_DIR}/resources/org.tizen.net-popup.xml DESTINATION /usr/share/packages/)
+#INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/data/org.tizen.net-popup.png DESTINATION /usr/share/icons/default/small)
+#INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/data/custom_popup.edj DESTINATION /usr/apps/org.tizen.net-popup/res/edje)
+
+ADD_SUBDIRECTORY(po)
diff --git a/LICENSE.Flora b/LICENSE.Flora
new file mode 100644 (file)
index 0000000..9c95663
--- /dev/null
@@ -0,0 +1,206 @@
+Flora License
+
+Version 1.0, May, 2012
+
+http://floralicense.org/license/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+"License" shall mean the terms and conditions for use, reproduction,
+and distribution as defined by Sections 1 through 9 of this document.
+
+"Licensor" shall mean the copyright owner or entity authorized by
+the copyright owner that is granting the License.
+
+"Legal Entity" shall mean the union of the acting entity and
+all other entities that control, are controlled by, or are
+under common control with that entity. For the purposes of
+this definition, "control" means (i) the power, direct or indirect,
+to cause the direction or management of such entity,
+whether by contract or otherwise, or (ii) ownership of fifty percent (50%)
+or more of the outstanding shares, or (iii) beneficial ownership of
+such entity.
+
+"You" (or "Your") shall mean an individual or Legal Entity
+exercising permissions granted by this License.
+
+"Source" form shall mean the preferred form for making modifications,
+including but not limited to software source code, documentation source,
+and configuration files.
+
+"Object" form shall mean any form resulting from mechanical
+transformation or translation of a Source form, including but
+not limited to compiled object code, generated documentation,
+and conversions to other media types.
+
+"Work" shall mean the work of authorship, whether in Source or Object form,
+made available under the License, as indicated by a copyright notice
+that is included in or attached to the work (an example is provided
+in the Appendix below).
+
+"Derivative Works" shall mean any work, whether in Source or Object form,
+that is based on (or derived from) the Work and for which the editorial
+revisions, annotations, elaborations, or other modifications represent,
+as a whole, an original work of authorship. For the purposes of this License,
+Derivative Works shall not include works that remain separable from,
+or merely link (or bind by name) to the interfaces of, the Work and
+Derivative Works thereof.
+
+"Contribution" shall mean any work of authorship, including the original
+version of the Work and any modifications or additions to that Work or
+Derivative Works thereof, that is intentionally submitted to Licensor
+for inclusion in the Work by the copyright owner or by an individual or
+Legal Entity authorized to submit on behalf of the copyright owner.
+For the purposes of this definition, "submitted" means any form of
+electronic, verbal, or written communication sent to the Licensor or
+its representatives, including but not limited to communication on
+electronic mailing lists, source code control systems, and issue
+tracking systems that are managed by, or on behalf of, the Licensor
+for the purpose of discussing and improving the Work, but excluding
+communication that is conspicuously marked or otherwise designated
+in writing by the copyright owner as "Not a Contribution."
+
+"Contributor" shall mean Licensor and any individual or Legal Entity
+on behalf of whom a Contribution has been received by Licensor and
+subsequently incorporated within the Work.
+
+"Tizen Certified Platform" shall mean a software platform that complies
+with the standards set forth in the Compatibility Definition Document
+and passes the Compatibility Test Suite as defined from time to time
+by the Tizen Technical Steering Group and certified by the Tizen
+Association or its designated agent.
+
+2. Grant of Copyright License.  Subject to the terms and conditions of
+this License, each Contributor hereby grants to You a perpetual,
+worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+copyright license to reproduce, prepare Derivative Works of,
+publicly display, publicly perform, sublicense, and distribute the
+Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License.  Subject to the terms and conditions of
+this License, each Contributor hereby grants to You a perpetual,
+worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+(except as stated in this section) patent license to make, have made,
+use, offer to sell, sell, import, and otherwise transfer the Work
+solely as incorporated into a Tizen Certified Platform, where such
+license applies only to those patent claims licensable by such
+Contributor that are necessarily infringed by their Contribution(s)
+alone or by combination of their Contribution(s) with the Work solely
+as incorporated into a Tizen Certified Platform to which such
+Contribution(s) was submitted. If You institute patent litigation
+against any entity (including a cross-claim or counterclaim
+in a lawsuit) alleging that the Work or a Contribution incorporated
+within the Work constitutes direct or contributory patent infringement,
+then any patent licenses granted to You under this License for that
+Work shall terminate as of the date such litigation is filed.
+
+4. Redistribution.  You may reproduce and distribute copies of the
+Work or Derivative Works thereof pursuant to the copyright license
+above, in any medium, with or without modifications, and in Source or
+Object form, provided that You meet the following conditions:
+
+  1. You must give any other recipients of the Work or Derivative Works
+     a copy of this License; and
+  2. You must cause any modified files to carry prominent notices stating
+     that You changed the files; and
+  3. You must retain, in the Source form of any Derivative Works that
+     You distribute, all copyright, patent, trademark, and attribution
+     notices from the Source form of the Work, excluding those notices
+     that do not pertain to any part of the Derivative Works; and
+  4. If the Work includes a "NOTICE" text file as part of its distribution,
+     then any Derivative Works that You distribute must include a readable
+     copy of the attribution notices contained within such NOTICE file,
+     excluding those notices that do not pertain to any part of
+     the Derivative Works, in at least one of the following places:
+     within a NOTICE text file distributed as part of the Derivative Works;
+     within the Source form or documentation, if provided along with the
+     Derivative Works; or, within a display generated by the Derivative Works,
+     if and wherever such third-party notices normally appear.
+     The contents of the NOTICE file are for informational purposes only
+     and do not modify the License.
+
+You may add Your own attribution notices within Derivative Works
+that You distribute, alongside or as an addendum to the NOTICE text
+from the Work, provided that such additional attribution notices
+cannot be construed as modifying the License. You may add Your own
+copyright statement to Your modifications and may provide additional or
+different license terms and conditions for use, reproduction, or
+distribution of Your modifications, or for any such Derivative Works
+as a whole, provided Your use, reproduction, and distribution of
+the Work otherwise complies with the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+any Contribution intentionally submitted for inclusion in the Work
+by You to the Licensor shall be under the terms and conditions of
+this License, without any additional terms or conditions.
+Notwithstanding the above, nothing herein shall supersede or modify
+the terms of any separate license agreement you may have executed
+with Licensor regarding such Contributions.
+
+6. Trademarks.  This License does not grant permission to use the trade
+names, trademarks, service marks, or product names of the Licensor,
+except as required for reasonable and customary use in describing the
+origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+agreed to in writing, Licensor provides the Work (and each
+Contributor provides its Contributions) on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+implied, including, without limitation, any warranties or conditions
+of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+PARTICULAR PURPOSE. You are solely responsible for determining the
+appropriateness of using or redistributing the Work and assume any
+risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+whether in tort (including negligence), contract, or otherwise,
+unless required by applicable law (such as deliberate and grossly
+negligent acts) or agreed to in writing, shall any Contributor be
+liable to You for damages, including any direct, indirect, special,
+incidental, or consequential damages of any character arising as a
+result of this License or out of the use or inability to use the
+Work (including but not limited to damages for loss of goodwill,
+work stoppage, computer failure or malfunction, or any and all
+other commercial damages or losses), even if such Contributor
+has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+the Work or Derivative Works thereof, You may choose to offer,
+and charge a fee for, acceptance of support, warranty, indemnity,
+or other liability obligations and/or rights consistent with this
+License. However, in accepting such obligations, You may act only
+on Your own behalf and on Your sole responsibility, not on behalf
+of any other Contributor, and only if You agree to indemnify,
+defend, and hold each Contributor harmless for any liability
+incurred by, or claims asserted against, such Contributor by reason
+of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Flora License to your work
+
+To apply the Flora License to your work, attach the following
+boilerplate notice, with the fields enclosed by brackets "[]"
+replaced with your own identifying information. (Don't include
+the brackets!) The text should be enclosed in the appropriate
+comment syntax for the file format. We also recommend that a
+file or class name and description of purpose be included on the
+same "printed page" as the copyright notice for easier
+identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Flora License, Version 1.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://floralicense.org/license/
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
diff --git a/NOTICE b/NOTICE
new file mode 100644 (file)
index 0000000..f37f329
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1,4 @@
+Copyright (c) Samsung Electronics Co., Ltd. All rights reserved.
+Except as noted, this software is licensed under Flora License, Version 1.
+Please, see the LICENSE.Flora file for Flora License terms and conditions.
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..681793b
--- /dev/null
@@ -0,0 +1,167 @@
+net-popup (0.2.01-1) unstable; urgency=low
+
+  * Change net-popup to app-svc application.
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.2.01-1
+
+ -- Praveen C <pravin.c@samsung.com>  Wed, 19 Dec 2012 14:21:35 +0530
+
+net-popup (0.1.20-14) unstable; urgency=low
+
+  * Add support to remove the "WiFi networks found" from notification tray.
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-14
+
+ -- Praveen C <pravin.c@samsung.com>  Mon, 17 Dec 2012 19:01:27 +0530
+
+net-popup (0.1.20-13) unstable; urgency=low
+
+  * Change I91f9d8a5: Update Multi language support
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-13
+
+ -- Kim sun il <sunil85.kim@samsung.com>  Wed, 21 Nov 2012 15:55:56 +0900
+
+net-popup (0.1.20-12) unstable; urgency=low
+
+  * Change string tickernoti to status noti
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-12
+
+ -- Sanghoon Cho <sanghoon80.cho@samsung.com>  Mon, 19 Nov 2012 17:35:58 +0900
+
+net-popup (0.1.20-11) unstable; urgency=low
+
+  * Change 3G alert string to "Mobile networks ..."
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-11
+
+ -- Sanghoon Cho <sanghoon80.cho@samsung.com>  Mon, 12 Nov 2012 19:40:35 +0900
+
+net-popup (0.1.20-10) unstable; urgency=low
+
+  * Remove add/del notification function
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-10
+
+ -- Sanghoon Cho <sanghoon80.cho@samsung.com>  Thu, 25 Oct 2012 11:15:47 +0900
+
+net-popup (0.1.20-9) unstable; urgency=low
+
+  * Install license
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-9
+
+ -- Danny Jeongseok Seo <s.seo@samsung.com>  Fri, 12 Oct 2012 11:14:23 +0900
+
+net-popup (0.1.20-8) unstable; urgency=low
+
+  * Apply SMACK manifest
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-8
+
+ -- Sanghoon Cho <sanghoon80.cho@samsung.com>  Thu, 20 Sep 2012 13:40:51 +0900
+
+net-popup (0.1.20-7) unstable; urgency=low
+
+  * Change Quick panel and Livebox icon.
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-7
+
+ -- Kim sun il <sunil85.kim@samsung.com>  Mon, 10 Sep 2012 12:35:09 +0900
+
+net-popup (0.1.20-6) unstable; urgency=low
+
+  * "PO" files update.(net-popup)
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-6
+
+ -- Kim sun il <sunil85.kim@samsung.com>  Thu, 30 Aug 2012 17:22:26 +0900
+
+net-popup (0.1.20-5) unstable; urgency=low
+
+  * Change net-popup package license to 'Flora'
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-5
+
+ -- Kim sun il <sunil85.kim@samsung.com>  Fri, 10 Aug 2012 13:29:57 +0900
+
+net-popup (0.1.20-4) unstable; urgency=low
+
+  * Implement desktop manifest
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-4
+
+ -- Sanghoon Cho <sanghoon80.cho@samsung.com>  Tue, 31 Jul 2012 20:08:48 +0900
+
+net-popup (0.1.20-3) unstable; urgency=low
+
+  * Implement to del a notification
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-3
+
+ -- Sanghoon Cho <sanghoon80.cho@samsung.com>  Mon, 16 Jul 2012 16:12:34 +0900
+
+net-popup (0.1.20-2) unstable; urgency=low
+
+  * Add NULL check for bundle parameters
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-2
+
+ -- Danny Jeongseok Seo <s.seo@samsung.com>  Sat, 07 Jul 2012 19:47:21 +0900
+
+net-popup (0.1.20-1) unstable; urgency=low
+
+  * Add NULL check for bundle parameters
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20-1
+
+ -- Danny Jeongseok Seo <s.seo@samsung.com>  Sat, 07 Jul 2012 17:57:18 +0900
+
+net-popup (0.1.20) unstable; urgency=low
+
+  * Add NULL check for bundle parameters
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.20
+
+ -- Sanghoon Cho <sanghoon80.cho@samsung.com>  Fri, 06 Jul 2012 12:40:06 +0900
+
+net-popup (0.1.19) unstable; urgency=low
+
+  * Implement to add a notification
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.19
+
+ -- Sanghoon Cho <sanghoon80.cho@samsung.com>  Fri, 29 Jun 2012 14:26:00 +0900
+
+net-popup (0.1.18) unstable; urgency=low
+
+  * Modify a location of desktop file to /usr
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.18
+
+ -- Sanghoon Cho <sanghoon80.cho@samsung.com>  Tue, 15 May 2012 15:38:43 +0900
+
+net-popup (0.1.17) unstable; urgency=low
+
+  * Add a popup style
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.17
+
+ -- Sanghoon Cho <sanghoon80.cho@samsung.com>  Wed, 04 Apr 2012 20:44:37 +0900
+
+net-popup (0.1.16) unstable; urgency=low
+
+  * Change package name from alert-3g-syspopup to net-popup
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.16
+
+ -- Sanghoon Cho <sanghoon80.cho@samsung.com>  Mon, 06 Feb 2012 12:56:40 +0900
+
+net-popup (0.1.0) unstable; urgency=low
+
+  * Initial Release
+  * Git: magnolia/apps/home/net-popup
+  * Tag: net.netpopup_0.1.0
+
+ -- Sanghoon Cho <sanghoon80.cho@samsung.com>  Mon, 06 Feb 2012 12:56:40 +0900
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..c4164a6
--- /dev/null
@@ -0,0 +1,19 @@
+Source: net-popup
+Section: main
+Priority: extra
+Maintainer: Sanghoon Cho <sanghoon80.cho@samsung.com>, Danny Jeongseok Seo <s.seo@samsung.com>
+Uploaders: Sanghoon Cho <sanghoon80.cho@samsung.com>, Danny Jeongseok Seo <s.seo@samsung.com>
+Build-Depends: debhelper (>= 5),libevas-dev, libecore-dev, libethumb-dev, libelm-dev, libefreet-dev, libappcore-efl-dev, libdevman-dev, syspopup-dev, syspopup-caller-dev, dlog-dev
+Standards-Version: 0.1.0 
+
+Package: org.tizen.net-popup
+Section: main
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, libslp-utilx-0, libdlog-0
+Description: network system-popup application
+
+Package: org.tizen.net-popup-dbg
+Section: debug
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: network system-popup application (unstripped)
diff --git a/debian/dirs b/debian/dirs
new file mode 100644 (file)
index 0000000..ca882bb
--- /dev/null
@@ -0,0 +1,2 @@
+usr/bin
+usr/sbin
diff --git a/debian/net.netpopup.install.in b/debian/net.netpopup.install.in
new file mode 100644 (file)
index 0000000..5e02569
--- /dev/null
@@ -0,0 +1,4 @@
+@PREFIX@/bin/net-popup
+@PREFIX@/share/locale/*
+@PREFIX@/share/applications/net.netpopup.desktop
+@PREFIX@/share/process-info/net-popup.ini
diff --git a/debian/org.tizen.net-popup.install.in b/debian/org.tizen.net-popup.install.in
new file mode 100644 (file)
index 0000000..d643957
--- /dev/null
@@ -0,0 +1,4 @@
+/opt/apps/org.tizen.net-popup/bin/net-popup
+/opt/share/icons/*
+/opt/share/process-info/net-popup.ini
+
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..26def98
--- /dev/null
@@ -0,0 +1,143 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+CFLAGS ?= -Wall -g
+CXXFLAGS ?= -Wall -g
+LDFLAGS ?=
+PREFIX ?= /opt/apps/org.tizen.net-popup
+DATADIR ?= /opt
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+       CFLAGS += -O0
+       CXXFLAGS += -O0
+else
+       CFLAGS += -O2
+       CXXFLAGS += -O2
+endif
+
+LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
+
+#CMAKE_TMP_DIR = $(CURDIR)/cmake_tmp
+
+
+configure: configure-stamp
+configure-stamp:
+       dh_testdir
+       # Add here commands to configure the package.
+#      mkdir -p $(CMAKE_TMP_DIR);
+       CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" cmake . -DCMAKE_INSTALL_PREFIX=$(PREFIX)
+
+       touch configure-stamp
+
+build: build-stamp
+
+build-stamp: configure-stamp
+       dh_testdir
+
+       # Add here commands to compile the package.
+       $(MAKE)
+       #docbook-to-man debian/wavplayer.sgml > wavplayer.1
+
+       for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
+               cat $$f > $${f%.in}; \
+               sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
+               sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
+       done
+
+
+       touch $@
+
+clean:
+       dh_testdir
+       dh_testroot
+       rm -f build-stamp configure-stamp
+
+       # Add here commands to clean up after the build process.
+       -$(MAKE) clean
+       #rm -rf $(CMAKE_TMP_DIR)
+
+       for f in `find $(CURDIR)/ -name "CMakeCache.txt"`; do \
+               rm -f $${f}; \
+       done
+
+       for f in `find $(CURDIR)/ -name "CMakeFiles"`; do \
+               rm -rf $${f}; \
+       done
+
+       for f in `find $(CURDIR)/ -name "cmake_install.cmake"`; do \
+               rm -f $${f}; \
+       done
+
+       for f in `find $(CURDIR)/ -name "Makefile"`; do \
+               rm -f $${f}; \
+       done
+
+       for f in `find $(CURDIR)/ -name "install_manifest.txt"`; do \
+               rm -f $${f}; \
+       done
+
+       for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
+               rm -f $${f%.in}; \
+       done
+
+       rm -f data/*.desktop
+       rm -f ../net.netpopup_*.deb
+       rm -f ../net.netpopup-*.deb
+       rm -f ../net-popup_*.changes
+       rm -f ../net-popup_*.dsc
+       rm -f ../net-popup_*.tar.gz
+
+       dh_clean
+
+install: build
+       dh_testdir
+       dh_testroot
+       dh_clean -k
+       dh_installdirs
+
+       # Add here commands to install the package into debian/wavplayer.
+       $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+       dh_testdir
+       dh_testroot
+       dh_install --sourcedir=debian/tmp
+#      dh_installmenu
+#      dh_installdebconf
+#      dh_installlogrotate
+#      dh_installemacsen
+#      dh_installpam
+#      dh_installmime
+#      dh_python
+#      dh_installinit
+#      dh_installcron
+#      dh_installinfo
+       dh_installman
+       dh_link
+       dh_strip --dbg-package=net.netpopup-dbg
+       dh_compress
+       dh_fixperms
+#      dh_perl
+       dh_makeshlibs
+       dh_installdeb
+       dh_shlibdeps
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
diff --git a/include/net-popup-strings.h b/include/net-popup-strings.h
new file mode 100644 (file)
index 0000000..d79a79a
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+*  net-popup
+*
+* Copyright 2012  Samsung Electronics Co., Ltd
+*
+* Licensed under the Flora License, Version 1.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.tizenopensource.org/license
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*
+*/
+
+#ifndef __DEF_NET_POPUP_STRINGS_H_
+#define __DEF_NET_POPUP_STRINGS_H_
+
+#include <libintl.h>
+#include "net-popup.h"
+
+#define ALERT_STR_MOBILE_NETWORKS_CHARGE               dgettext(PACKAGE, "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN")
+#define ALERT_STR_ERR_UNAVAILABLE              dgettext(PACKAGE, "IDS_IM_POP_SERVICE_NOT_AVAIL")
+#define ALERT_STR_ERR_CONNECT                  dgettext(PACKAGE, "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK")
+#define ALERT_STR_ERR_NOT_SUPPORT              dgettext(PACKAGE, "IDS_ST_POP_NOT_SUPPORTED")
+#define ALERT_STR_WIFI_CONNECTED               dgettext(PACKAGE, "IDS_WIFI_BODY_CONNECTED")
+#define ALERT_STR_RESTRICTED_USE_WIFI  dgettext(PACKAGE, "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI")
+
+
+#endif                         /* __DEF_NET_POPUP_STRINGS_H_ */
diff --git a/include/net-popup.h b/include/net-popup.h
new file mode 100644 (file)
index 0000000..3720353
--- /dev/null
@@ -0,0 +1,38 @@
+/*
+*  net-popup
+*
+* Copyright 2012  Samsung Electronics Co., Ltd
+*
+* Licensed under the Flora License, Version 1.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.tizenopensource.org/license
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*
+*/
+
+#ifndef __DEF_NET_POPUP_H_
+#define __DEF_NET_POPUP_H_
+
+#include <Elementary.h>
+#include <dlog.h>
+
+#ifndef PREFIX
+#define PREFIX "/usr"
+#endif
+
+#define PACKAGE                "net-popup"
+#define ALERT_STR_LEN_MAX 100
+
+#define NET_POPUP      "NET_POPUP"
+#define log_print(tag, format, args...) LOG(LOG_DEBUG, \
+       tag, "%s:%d "format, __func__, __LINE__, ##args)
+
+
+#endif                         /* __DEF_NET_POPUP_H_ */
diff --git a/net.netpopup.manifest b/net.netpopup.manifest
new file mode 100644 (file)
index 0000000..97e8c31
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+       <request>
+               <domain name="_"/>
+       </request>
+</manifest>
diff --git a/org.tizen.net-popup.manifest b/org.tizen.net-popup.manifest
new file mode 100644 (file)
index 0000000..41b6ed1
--- /dev/null
@@ -0,0 +1,12 @@
+<manifest>
+    <define>
+        <domain name="org.tizen.net-popup"/>
+    </define>
+    <assign>
+        <filesystem path="/usr/share/applications/org.tizen.net-popup.desktop" label="_"/>
+        <filesystem path="/opt/share/process-info/net-popup.ini" label="_"/>
+    </assign>
+    <request>
+        <domain name="org.tizen.net-popup"/>
+    </request>
+</manifest>
diff --git a/packaging/org.tizen.net-popup.spec b/packaging/org.tizen.net-popup.spec
new file mode 100644 (file)
index 0000000..d64f29c
--- /dev/null
@@ -0,0 +1,54 @@
+%define _usrdir /usr
+%define _appdir %{_usrdir}/apps
+
+Name:       org.tizen.net-popup
+Summary:    Network Notification Popup application
+Version:    0.2.01_2
+Release:    1
+Group:      App/Network
+License:    Flora License
+Source0:    %{name}-%{version}.tar.gz
+BuildRequires: cmake
+BuildRequires: pkgconfig(appcore-efl)
+BuildRequires: pkgconfig(bundle)
+BuildRequires: pkgconfig(dlog)
+BuildRequires: pkgconfig(ecore)
+BuildRequires: pkgconfig(edje)
+BuildRequires: pkgconfig(elementary)
+BuildRequires: pkgconfig(evas)
+BuildRequires: pkgconfig(syspopup)
+BuildRequires: pkgconfig(syspopup-caller)
+BuildRequires: pkgconfig(glib-2.0)
+BuildRequires: pkgconfig(status)
+BuildRequires: pkgconfig(notification)
+BuildRequires: pkgconfig(appsvc)
+BuildRequires: gettext
+
+%description
+Network Notification Popup application
+
+%prep
+%setup -q
+
+
+%build
+cmake . -DCMAKE_INSTALL_PREFIX=%{_appdir}/org.tizen.net-popup
+
+make %{?jobs:-j%jobs}
+
+
+%install
+%make_install
+
+#License
+mkdir -p %{buildroot}%{_datadir}/license
+cp LICENSE.Flora %{buildroot}%{_datadir}/license/org.tizen.net-popup
+
+
+%files
+%manifest org.tizen.net-popup.manifest
+%defattr(-,root,root,-)
+%{_usrdir}/share/packages/org.tizen.net-popup.xml
+%{_appdir}/org.tizen.net-popup/bin/net-popup
+%{_datadir}/license/org.tizen.net-popup
+%{_appdir}/org.tizen.net-popup/res/locale/*/LC_MESSAGES/*.mo
diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt
new file mode 100644 (file)
index 0000000..1923424
--- /dev/null
@@ -0,0 +1,25 @@
+# for i18n
+
+SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po eu.po et.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po)
+
+SET(MSGFMT "/usr/bin/msgfmt")
+
+FOREACH(pofile ${POFILES})
+       SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile})
+       MESSAGE("PO: ${pofile}")
+       GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE)
+       GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE)
+       SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo)
+       ADD_CUSTOM_COMMAND(
+                       OUTPUT ${moFile}
+                       COMMAND ${MSGFMT} -o ${moFile} ${absPofile}
+                       DEPENDS ${absPofile}
+       )
+       INSTALL(FILES ${moFile}
+                       DESTINATION /usr/apps/org.tizen.net-popup/res/locale/${lang}/LC_MESSAGES RENAME ${PROJECT_NAME}.mo)
+#                      DESTINATION share/locale/${lang}/LC_MESSAGES RENAME ${PROJECT_NAME}.mo)
+       SET(moFiles ${moFiles} ${moFile})
+ENDFOREACH(pofile)
+
+MESSAGE(".mo files: ${moFiles}")
+ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles})
diff --git a/po/POTFILES.in b/po/POTFILES.in
new file mode 100755 (executable)
index 0000000..07e42dc
--- /dev/null
@@ -0,0 +1,3 @@
+# List of source files containing translatable strings.
+net-popup-string.h
+net-popup.c
diff --git a/po/ar.po b/po/ar.po
new file mode 100644 (file)
index 0000000..f0ae0b2
--- /dev/null
+++ b/po/ar.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "تم التوصيل"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "سياسة الأمان تقيد استخدام Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "تعذر الاتصال بالشبكة"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "غير مدعوم"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "الخدمة غير متوفرة، حاول ثانية"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "جاري الاتصال بشبكات الهاتف المحمول...\nقد يتم فرض رسوم إضافية إذا كنت لا تستخدم خطة بيانات ذات سعر موحد"
+
diff --git a/po/az.po b/po/az.po
new file mode 100644 (file)
index 0000000..565db24
--- /dev/null
+++ b/po/az.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Qoşuldu"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Təhlükəsizlik siyasəti Wi-Fi-dan istifadəni məhdudlaşdırır"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Şəbəkəyə qoşulmaq mümkün deyil"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Dəstəklənmir"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Xidmətdən istifadə etmək mümkün deyil. Bir az sonra cəhd edin"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Mobil şəbəkələrə qoşulur...\nSabit qiymət planından istifadə etmirsinizsə, əlavə xərclər tətbiq oluna bilər"
+
diff --git a/po/bg.po b/po/bg.po
new file mode 100644 (file)
index 0000000..f1f1a11
--- /dev/null
+++ b/po/bg.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Свързан"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Правилата за защита ограничават използването на Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Невъзможно свързване с мрежата"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Не се поддържа"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Услугата не е достъпна. опитайте отново"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Свързване към мобилни мрежи...\nМоже да бъдат начислени допълнителни такси, ако не използвате план с твърда ценова тарифа"
+
diff --git a/po/ca.po b/po/ca.po
new file mode 100644 (file)
index 0000000..b7bbe5e
--- /dev/null
+++ b/po/ca.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Connectat"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "La política de seguretat restringeix l'ús de Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Error en la connexió a la xarxa"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "No s'admet"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Servei no disponible. Intenti-ho més tard"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Connectant a xarxes mòbils...\nPot comportar càrrecs addicionals si no utilitza una tarifa plana de dades"
+
diff --git a/po/cs.po b/po/cs.po
new file mode 100644 (file)
index 0000000..66476d0
--- /dev/null
+++ b/po/cs.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Připojeno"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Zásady zabezpečení omezují použití Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Připojení k síti se nezdařilo"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Nepodporováno"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Služba je nedostupná. opakujte akci později"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Připojování k mobilním sítím...\nPokud nepoužíváte paušální datový tarif, mohou vám být účtovány další poplatky"
+
diff --git a/po/da.po b/po/da.po
new file mode 100644 (file)
index 0000000..89ad117
--- /dev/null
+++ b/po/da.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Forbundet"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Sikkerhedspolitik begrænser brug af Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Kan ikke slutte til netværk"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Understøttes ikke"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Tjenesten er ikke tilgængelig. Prøv igen senere"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Opretter forbindelse til mobile netværk ...\nYderligere gebyrer kan forekomme, hvis du ikke bruger et fast abonnement"
+
diff --git a/po/de_DE.po b/po/de_DE.po
new file mode 100644 (file)
index 0000000..835a9dc
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Verbunden"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Sicherheitsrichtlinie schränkt die Verwendung von WLAN ein."
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Verbindung mit Netzwerk nicht möglich"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Nicht unterstützt"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Dienst nicht verfügbar. Später erneut versuchen"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Verbindung mit mobilem Netzwerk wird hergestellt...\nHierbei können zusätzliche Kosten anfallen, wenn Sie keine Flatrate besitzen."
+
diff --git a/po/el_GR.po b/po/el_GR.po
new file mode 100644 (file)
index 0000000..e5939a4
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Συνδέθηκε"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Η πολιτική ασφαλείας περιορίζει τη χρήση του Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Δεν είναι δυνατή η σύνδεση σε δίκτυο"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Δεν υποστηρίζεται"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Η υπηρεσία δεν είναι διαθέσιμη, δοκιμάστε αργότερα!"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Σύνδεση σε δίκτυα κινητής τηλεφωνίας...\nΕνδέχεται να υπάρξουν πρόσθετες χρεώσεις σε περίπτωση που δεν χρησιμοποιείτε πρόγραμμα δεδομένων σταθερής χρέωσης"
+
diff --git a/po/en.po b/po/en.po
new file mode 100644 (file)
index 0000000..2155e12
--- /dev/null
+++ b/po/en.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Connected"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Security policy restricts use of Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Unable to connect to network"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Not supported"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Service not available. Try later"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Connecting to mobile networks...\nAdditional charges may be incurred if you are not using a flat rate data plan"
+
diff --git a/po/en_PH.po b/po/en_PH.po
new file mode 100644 (file)
index 0000000..691a733
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Connected"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Security policy restricts use of Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Unable to connect to network"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Not supported"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Service is temporarily offline. Try again later"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Connecting to mobile networks...\nAdditional charges may be incurred if you are not using a flat rate data plan"
+
diff --git a/po/en_US.po b/po/en_US.po
new file mode 100644 (file)
index 0000000..a5136e3
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Connected"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Security policy restricts use of Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Unable to connect to network"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Not supported"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Service unavailable. Try later"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Connecting to mobile networks...\nAdditional charges may be incurred if you are not using a flat rate data plan"
+
diff --git a/po/es_ES.po b/po/es_ES.po
new file mode 100644 (file)
index 0000000..ea9e9ee
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Conectado"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "La política de seguridad restringe el uso del Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "No se puede conectar a la red"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "No admitido"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Servicio no disponible. Inténtelo más tarde."
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Conectando a redes móviles...\nPuede suponer costes adicionales si no utiliza una tarifa plana de datos"
+
diff --git a/po/es_US.po b/po/es_US.po
new file mode 100644 (file)
index 0000000..018bc00
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Conectado"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "La política de seguridad restringe el uso del Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "No se puede conectar a la red"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "No soportado"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Servicio no disponible. Inténtelo más tarde."
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Conectando a redes móviles...\nPuede generar cobros adicionales si no utiliza un plan de datos de tarifa fija"
+
diff --git a/po/et.po b/po/et.po
new file mode 100644 (file)
index 0000000..4f2c3b7
--- /dev/null
+++ b/po/et.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Ühendatud"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Turvalisuse poliis piirab Wi-Fi kasutuse"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Võrguga ei saa ühendust luua"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Tugi puudub"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Teenus ei ole saadaval. proovi hiljem"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Ühenduse loomine mobiilsidevõrkudega...\nKui te ei kasuta püsitasuga andmepaketti, võivad rakenduda lisatasud"
+
diff --git a/po/eu.po b/po/eu.po
new file mode 100644 (file)
index 0000000..1e7ae87
--- /dev/null
+++ b/po/eu.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Konektatuta"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Segurtasun politikak Wi-Fi erabilera mugatzen du"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Ezin da sarera konektatu"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Bateraezina"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Zerbitzua ez dago eskuragarri. Geroago saiatu"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Sare mugikorretara konektatzen...\nBaliteke kostu osagarriak eragitea, ez baduzu tarifa finko planik erabiltzen"
+
diff --git a/po/fi.po b/po/fi.po
new file mode 100644 (file)
index 0000000..b61eef4
--- /dev/null
+++ b/po/fi.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Yhdistetty"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Suojauskäytäntö estää Wi-Fi-yhteyden käytön"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Verkkoyhteyttä ei voi muodostaa"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Ei tuettu"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Palvelu ei ole saatavilla. Yritä myöhemmin uudelleen."
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Yhdistetään matkapuhelinverkkoihin...\nLisämaksut ovat mahdollisia, jos et käytä kiinteää hinnoittelua"
+
diff --git a/po/fr_CA.po b/po/fr_CA.po
new file mode 100644 (file)
index 0000000..4939f3f
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Connecté"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "La politique de sécurité limite l'utilisation du Wifi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Impossible de se connecter au réseau"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Non pris en charge"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Service non disponible. Réessayez plus tard"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Connexion aux réseaux mobiles...\nDes frais supplémentaires peuvent vous être facturés si vous ne disposez pas d'un forfait"
+
diff --git a/po/fr_FR.po b/po/fr_FR.po
new file mode 100644 (file)
index 0000000..2bc58da
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Connecté"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "La politique de sécurité limite l'utilisation du Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Impossible de se connecter au réseau"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Non pris en charge"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Service non disponible. Réessayez plus tard"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Connexion aux réseaux mobiles...\nDes frais supplémentaires peuvent être facturés si vous ne disposez pas d'un forfait adapté"
+
diff --git a/po/ga.po b/po/ga.po
new file mode 100644 (file)
index 0000000..9af6a21
--- /dev/null
+++ b/po/ga.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Nasctha"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Cuireann an beartas slándála srian ar úsáid Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Ní féidir nascadh le líonra"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Gan tacú"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Níl seirbhís ar fáil. Triail arís níos moille"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Ag nascadh le líonraí móibíleacha...\nIs féidir go ngearrfar táillí breise  mura bhfuil plean sonraí bunrata á úsáid agat"
+
diff --git a/po/gl.po b/po/gl.po
new file mode 100644 (file)
index 0000000..d56d505
--- /dev/null
+++ b/po/gl.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Conectado"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "A política de seguridade limita o uso da Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Non se pode conectar á rede"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Non admitido"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Servizo non dispoñible. Inténteo máis tarde"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Conectando con redes móbiles...\nÉ posible que se deriven custos adicionais se non estás a usar un plan de datos de tarifa plana"
+
diff --git a/po/hi.po b/po/hi.po
new file mode 100644 (file)
index 0000000..91bff62
--- /dev/null
+++ b/po/hi.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "जोड़ा गया"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "सुरक्षा नीति Wi-Fi के उपयोग को प्रतिबंधित करती है"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "नेटवर्क से जोड़ने में अक्षम"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "असमर्थित"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "सेवा अनुपलब्‍ध। बाद में कोशिश करें"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "मोबाइल नेटवर्क्स से कनेक्ट किया जा रहा है...\nअतिरिक्त शुल्क लागू हो सकते हैं यदि आप फ़्लैट रेट प्लान का उपयोग नही कर रहे हैं"
+
diff --git a/po/hr.po b/po/hr.po
new file mode 100644 (file)
index 0000000..06bf30a
--- /dev/null
+++ b/po/hr.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Spojeno"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Sigurnosne odredbe ograničavaju Wi-Fi korištenje"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Greška spajanja na mrežu"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Nepodržan"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Usluga nije dostupna, Pokušajte poslije!"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Spajanje na mobilne mreže...\nMogući su dodatni troškovi ako ne koristite tarifu bez ograničenja"
+
diff --git a/po/hu.po b/po/hu.po
new file mode 100644 (file)
index 0000000..d16756f
--- /dev/null
+++ b/po/hu.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Csatlakoztatva"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "A biztonsági irányelv korlátozza a Wi-Fi használatát"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Nem lehet kapcsolódni a hálózathoz"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Nem támogatott"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "A szolgáltatás nem elérhető. próbálja meg később"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Mobilhálózati kapcsolat létesítése...\nHa nem átalánydíjas adatcsomagra fizetett elő, akkor további költségek merülhetnek fel"
+
diff --git a/po/hy.po b/po/hy.po
new file mode 100644 (file)
index 0000000..b44f011
--- /dev/null
+++ b/po/hy.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Միացված է"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Անվտանգության քաղաքականությունը սահմանափակում է Wi-Fi-ի օգտագործումը"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Անհնար է միանալ ցանցին"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Չի սատարվում"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Ծառայությունը հասանելի չէ. Փորձեք ավելի ուշ"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Միանում է շարժական կապի ցանցերին...\nԼրացուցիչ վճար կարող է պահանջվել, եթե չեք օգտագործում հաստատուն սակագնով տվյալների փոխանցման պլան"
+
diff --git a/po/is.po b/po/is.po
new file mode 100644 (file)
index 0000000..254d069
--- /dev/null
+++ b/po/is.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Tengt"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Öryggisreglur takmarka notkun Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Mistókst að tengjast við kerfi"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Óstutt"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Þjónustan er ekki tiltæk. Reynið aftur síðar"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Tengi við farsímakerfi...\nViðbótargjöld kunna að fylgja ef þú borgar ekki fast gjald"
+
diff --git a/po/it_IT.po b/po/it_IT.po
new file mode 100644 (file)
index 0000000..4c297b2
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Connesso"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "I criteri di sicurezza limitano l'uso del Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Impossibile connettersi alla rete"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Non supportato"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Servizio non disponibile. Riprovare più tardi."
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Connessione a reti mobili in corso...\nPotrebbero essere applicati addebiti aggiuntivi se non si usa un piano dati a tariffa fissa"
+
diff --git a/po/ja_JP.po b/po/ja_JP.po
new file mode 100644 (file)
index 0000000..b95bbc8
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "接続しました。"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Wi-Fiの使用は、セキュリティポリシーによって制限されています。"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "ネット​ワーク​に​接続​できません"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "サポート​されて​いません。"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "サービス​を​利用​できません。​後ほどお試しください"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "モバイルネットワークに接続中...\n定額フラットプランを適用していない場合、追加料金が発生する可能性があります。"
+
diff --git a/po/ka.po b/po/ka.po
new file mode 100644 (file)
index 0000000..955e234
--- /dev/null
+++ b/po/ka.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "დაკავშირებულია"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "უსაფრთხოების პოლიტიკა ზღუდავს Wi-Fi-ის გამოყენებას"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "ქსელს ვერ უკავშირდება"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "გაუთვალისწინებელი"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "მომსახურება არ არის. მოგვიანებით ცადეთ"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "მყარდება კავშირი მობილურ ქსელებთან...\nშეიძლება დაგერიცხოთ დამატებითი გადასახადი, თუ არ იყენებთ ფიქსირებულ გადასახადს"
+
diff --git a/po/kk.po b/po/kk.po
new file mode 100644 (file)
index 0000000..5724f7d
--- /dev/null
+++ b/po/kk.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Қосылды"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Қауіпсіздік саясаты Wi-Fi пайдаланылуын шектейді"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Желіге қосылу мүмкін емес"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Ұстамайды"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Қызмет Жоқ. Кейінрек Қайталаңыз"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Ұялы байланыс желілірені қосылуда...\nБіркелкі тарифтік жоспар пайдаланылмаса, қосымша ақылар алыуны мүмкін"
+
diff --git a/po/ko_KR.po b/po/ko_KR.po
new file mode 100644 (file)
index 0000000..78f4c64
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "연결되었습니다"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "보안 정책에 따라 Wi-Fi 사용이 제한됩니다"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "네트워크에 연결할 수 없습니다"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "사용할 수 없습니다"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "서비스를 이용할 수 없습니다. 잠시 후 다시 시도하세요"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "데이터 네트워크에 연결합니다. 정액요금제 또는 무료이용 서비스가 아닌 경우 데이터 통화료가 부과됩니다."
+
diff --git a/po/lt.po b/po/lt.po
new file mode 100644 (file)
index 0000000..0aa856c
--- /dev/null
+++ b/po/lt.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Prisijungta"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Saugos strategija riboja naudojimąsi „Wi-Fi“"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Neįmanoma prisijungti prie tinklo"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Nepalaikoma"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Paslauga neteikiama. pamėginkite vėliau"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Jungiantis prie mobiliųjų tinklų...\ngali būti taikomas papildomas mokestis, jei nesinaudojate fiksuoto dydžio įmokos planu"
+
diff --git a/po/lv.po b/po/lv.po
new file mode 100644 (file)
index 0000000..5583779
--- /dev/null
+++ b/po/lv.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Savienots"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Drošības politika ierobežo Wi-Fi lietošanu"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Nevar izveidot savienojumu ar tīklu"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Nav nodrošināts"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Pakalpojums nav pieejams. mēģiniet vēlāk"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Veido savienojumu ar mobilajiem tīkliem...\nJa neizmantojat vienoto tarifa plānu, var rasties papildu izmaksas"
+
diff --git a/po/mk.po b/po/mk.po
new file mode 100644 (file)
index 0000000..17f0597
--- /dev/null
+++ b/po/mk.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Поврзано"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Политиката на безбедност го ограничува користењето Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Не може да се поврзе со мрежата"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Не е поддржано"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Услугата е недостапна. обидете се подоцна"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Се поврзува со мобилни мрежи...\nМоже да има дополнителни трошоци ако не користите тарифен план за неограничен пристап до податоци"
+
diff --git a/po/nb.po b/po/nb.po
new file mode 100644 (file)
index 0000000..a086f51
--- /dev/null
+++ b/po/nb.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Tilkoblet"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Sikkerhetspolicy begrenser bruk av Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Kan ikke koble til nettverket"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Støttes ikke"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Tjenester er ikke tilgjengelig. forsøk senere"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Kobler til mobilnettverk...\nDette kan medføre ekstra kostnader hvis du ikke bruker en fastpris"
+
diff --git a/po/nl_NL.po b/po/nl_NL.po
new file mode 100644 (file)
index 0000000..920ec8d
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Verbonden"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Gebruik van Wi-Fi beperkt door beveiligingsbeleid"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Kan niet verbinden met netwerk"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Niet ondersteund"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Dienst niet beschikbaar. Probeer het later opnieuw."
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Verbinden met mobiele netwerken...\nEr kunnen extra kosten gelden, als u geen abonnement met een vast tarief hebt"
+
diff --git a/po/pl.po b/po/pl.po
new file mode 100644 (file)
index 0000000..8b55627
--- /dev/null
+++ b/po/pl.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Połączono"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Zasady zabezpieczeń ograniczają użycie sieci Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Nie można nawiązać połączenia z siecią"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Nieobsługiwane"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Usługa niedostępna. Spróbuj później"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Łączenie z sieciami komórkowymi...\nMogą zostać naliczone dodatkowe opłaty, jeżeli nie używasz planu jednolitych taryf"
+
diff --git a/po/pt_BR.po b/po/pt_BR.po
new file mode 100644 (file)
index 0000000..4b6d3bf
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Conectado"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "A política de segurança restringe a utilização de Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Impossível conectar à rede"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Não suportado"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Serviço indisponível. Tente mais tarde"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Conectando às redes móveis...\nCobranças adicionais podem estar sujeitas se você não estiver usando um plano de tarifa fixa"
+
diff --git a/po/pt_PT.po b/po/pt_PT.po
new file mode 100644 (file)
index 0000000..3653f3c
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Ligado"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "A política de segurança restringe a utilização de Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Impossível ligar à rede"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Não suportado"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Serviço indisponível. tente mais tarde"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "A ligar a redes móveis...\nPode incorrer em taxas adicionais se não estiver a utilizar um tarifário de taxa fixa"
+
diff --git a/po/ro.po b/po/ro.po
new file mode 100644 (file)
index 0000000..8eabef3
--- /dev/null
+++ b/po/ro.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Conectat"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Politica de securitate restricţionează utilizarea reţelei Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Imposibil de conectat la reţea"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Neacceptat"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Serviciu indisponibil, încercaţi mai târziu!"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Se conectează la reţelele mobile...\nSe pot genera taxe suplimentare dacă nu utilizaţi un plan de date cu tarife fixe"
+
diff --git a/po/ru_RU.po b/po/ru_RU.po
new file mode 100644 (file)
index 0000000..9177c83
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Подключено"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Политика безопасности ограничивает использование Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Не удается подключиться к сети"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Не поддерживается"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Услуга недоступна. повторите попытку позже"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Подключение к мобильной сети...\nЕсли не используется безлимитный тариф, за это может взиматься дополнительная плата"
+
diff --git a/po/sk.po b/po/sk.po
new file mode 100644 (file)
index 0000000..2108467
--- /dev/null
+++ b/po/sk.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Pripojené"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Politika zabezpečenia obmedzuje použitie pripojenia Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Nedá sa pripojiť k sieti"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Nepodporované"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Služba je nedostupná. skúste to znova."
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Pripája sa k mobilným sieťam...\nAk nepoužívate paušálny dátový tarifný program, môžu sa účtovať ďalšie poplatky"
+
diff --git a/po/sl.po b/po/sl.po
new file mode 100644 (file)
index 0000000..b1bf1dd
--- /dev/null
+++ b/po/sl.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Povezano"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Varnostni pravilnik omejuje uporabo omrežja Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Ni mogoče vzpostaviti povezave z omrežjem"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Nepodprto"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Storitve ni na voljo. poskusite znova"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Povezovanje z mobilnimi omrežji ...\nČe nimate pavšalne mesečne naročnine, lahko pride do dodatnih stroškov"
+
diff --git a/po/sr.po b/po/sr.po
new file mode 100644 (file)
index 0000000..0e07e1d
--- /dev/null
+++ b/po/sr.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Povezan"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Politika bezbednosti ograničava upotrebu Wi-Fija"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Nemoguće povezati se na mrežu"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Nepodržano"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Usluga nedostupna. probaj kasnije"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Povezivanje na mobilne mreže...\nMože doći do dodatnih troškova ako ne koristiš paušalni plan plaćanja za prenos podataka"
+
diff --git a/po/sv.po b/po/sv.po
new file mode 100644 (file)
index 0000000..5b3017b
--- /dev/null
+++ b/po/sv.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Ansluten"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Säkerhetspolicy begränsar användningen av Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Det går inte att ansluta till nätverket"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Kan ej användas"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Tjänsten är inte tillgänglig. försök senare."
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Ansluter till mobilnätverk...\nYtterligare avgifter kan tillkomma om du inte har en dataplan med fast taxa"
+
diff --git a/po/tr_TR.po b/po/tr_TR.po
new file mode 100644 (file)
index 0000000..6c1bb34
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Bağlantı kuruldu"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Güvenlik ilkesi Wi-Fi kullanımını kısıtlıyor"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Ağa bağlanamadı"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Desteklenmiyor"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Hizmete Erişilemiyor. Daha Sonra Deneyin"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Mobil ağlara bağlanıyor...\nSabit fiyatlı tarife kullanmıyorsanız ek ücrete tabi olabilirsiniz"
+
diff --git a/po/uk.po b/po/uk.po
new file mode 100644 (file)
index 0000000..33142b5
--- /dev/null
+++ b/po/uk.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "З'єднано"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Використання мережі Wi-Fi обмежено політикою безпеки"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Неможливо підключитися до мережі"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Не підтримується"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Послуга недоступна. спробуйте пізніше"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Підключення до мобільних мереж...\nУ разі використання тарифного плану, відмінного від фіксованого, може стягуватися додаткова плата"
+
diff --git a/po/update-po.sh b/po/update-po.sh
new file mode 100755 (executable)
index 0000000..81ecb0e
--- /dev/null
@@ -0,0 +1,60 @@
+#!/bin/sh
+
+PACKAGE=net-popup
+SRCROOT=..
+POTFILES=POTFILES.in
+
+#ALL_LINGUAS= am az be ca cs da de el en_CA en_GB es et fi fr hr hu it ja ko lv mk ml ms nb ne nl pa pl pt pt_BR ru rw sk sl sr sr@Latn sv ta tr uk vi zh_CN zh_TW
+ALL_LINGUAS="en de_DE el_GR es_ES it_IT fr_FR ko_KR pt_PT ja_JP nl_NL tr_TR ru_RU zh_CN zh_TW zh_HK"
+
+XGETTEXT=/usr/bin/xgettext
+MSGMERGE=/usr/bin/msgmerge
+
+echo -n "Make ${PACKAGE}.pot  "
+if [ ! -e $POTFILES ] ; then
+       echo "$POTFILES not found"
+       exit 1
+fi
+
+$XGETTEXT --default-domain=${PACKAGE} --directory=${SRCROOT} \
+               --add-comments --keyword=_ --keyword=N_ --files-from=$POTFILES
+if [ $? -ne 0 ]; then
+       echo "error"
+       exit 1
+fi
+
+if [ ! -f ${PACKAGE}.po ]; then
+       echo "No such file: ${PACKAGE}.po"
+       exit 1
+fi
+
+rm -f ${PACKAGE}.pot && mv ${PACKAGE}.po ${PACKAGE}.pot
+echo "done"
+
+for LANG in $ALL_LINGUAS; do
+       echo "$LANG : "
+
+       if [ ! -e $LANG.po ] ; then
+               sed 's/CHARSET/UTF-8/g' ${PACKAGE}.pot > ${LANG}.po
+               echo "${LANG}.po created"
+       else
+               if $MSGMERGE ${LANG}.po ${PACKAGE}.pot -o ${LANG}.new.po ; then
+                       if cmp ${LANG}.po ${LANG}.new.po > /dev/null 2>&1; then
+                               rm -f ${LANG}.new.po
+                       else
+                               if mv -f ${LANG}.new.po ${LANG}.po; then
+                                       echo ""
+                               else
+                                       echo "msgmerge for $LANG.po failed: cannot move $LANG.new.po to $LANG.po" 1>&2
+                                       rm -f ${LANG}.new.po
+                                       exit 1
+                               fi
+                       fi
+               else
+                       echo "msgmerge for $LANG failed!"
+                       rm -f ${LANG}.new.po
+               fi
+       fi
+       echo ""
+done
+
diff --git a/po/uz.po b/po/uz.po
new file mode 100644 (file)
index 0000000..07ec5f3
--- /dev/null
+++ b/po/uz.po
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "Ulangan"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "Xavfsizlik siyosati Wi-Fidan foydalanishni cheklaydi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "Tarmoqqa ulanib bo‘lmaydi"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "Qo‘llab-quvvatlanmaydi"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "Xizmatdan foydalanib bo‘lmaydi. Keyinroq urinib ko‘ring"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "Mobil tarmoqqa ulanmoqda...\nAgar o‘zgarmas narxlar tarifidan foydalanmayotgan bo‘lsangiz, qo‘shimcha to‘lov olinishi mumkin"
+
diff --git a/po/zh_CN.po b/po/zh_CN.po
new file mode 100644 (file)
index 0000000..6070245
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "已连接"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "安全政策限制使用Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "无法连接网络"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "不支持"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "服务不可用,稍后再试"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "正在连接至移动网络…\n如果您未使用统一收费数据方案可能产生额外费用"
+
diff --git a/po/zh_HK.po b/po/zh_HK.po
new file mode 100644 (file)
index 0000000..3e43e9f
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "已連接"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "安全政策限制使用 Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "無法連接網絡"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "不支援"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "無可用服務。請稍後再試"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "正在連接至流動網絡...\n若您並非使用固定收費計劃,將會產生額外費用"
+
diff --git a/po/zh_SG.po b/po/zh_SG.po
new file mode 100644 (file)
index 0000000..aea0c6f
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "已连接"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "安全政策限制使用Wi-Fi"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "无法连接网络"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "不支持"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "服务暂时离线。请稍后再试"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "正在连接至移动网络…\n如果您未使用统一收费数据方案可能产生额外费用"
+
diff --git a/po/zh_TW.po b/po/zh_TW.po
new file mode 100644 (file)
index 0000000..bb3b4bd
--- /dev/null
@@ -0,0 +1,18 @@
+msgid "IDS_WIFI_BODY_CONNECTED"
+msgstr "已連線"
+
+msgid "IDS_COM_POP_SECURITY_POLICY_RESTRICTS_USE_OF_WI_FI"
+msgstr "由於安全政策,使用Wi-Fi被限制"
+
+msgid "IDS_ST_BODY_UNABLE_TO_CONNECT_TO_THE_NETWORK"
+msgstr "無法連接到網路"
+
+msgid "IDS_ST_POP_NOT_SUPPORTED"
+msgstr "不支援"
+
+msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
+msgstr "無法使用服務。請稍後再試"
+
+msgid "IDS_ST_POP_CONNECTING_TO_MOBILE_NETWORKS_ING_N_ADDITIONAL_CHARGES_MAY_BE_INCURRED_IF_YOU_ARE_NOT_USING_A_FLAT_RATE_DATA_PLAN"
+msgstr "連接至行動網路...\n若您並非使用固定費率,將會產生額外費用"
+
diff --git a/resources/images/Q02_Notification__wifi_in_range.png b/resources/images/Q02_Notification__wifi_in_range.png
new file mode 100644 (file)
index 0000000..957d352
Binary files /dev/null and b/resources/images/Q02_Notification__wifi_in_range.png differ
diff --git a/resources/net-popup.ini b/resources/net-popup.ini
new file mode 100644 (file)
index 0000000..5abbace
--- /dev/null
@@ -0,0 +1,2 @@
+[ProcessSetting]
+BG_SCHEDULE=true
diff --git a/resources/net.netpopup.xml b/resources/net.netpopup.xml
new file mode 100644 (file)
index 0000000..fca4a68
--- /dev/null
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" package="net.netpopup" version="0.4.55-3" install-location="internal-only">
+       <label>Network popup</label>
+       <author email="sanghoon80.cho@samsung.com" href="www.samsung.com">Sanghoon Cho</author>
+       <description>Network popup</description>
+       <ui-application appid="net.netpopup" exec="/usr/bin/net-popup" nodisplay="true" multiple="false" type="capp" taskmanage="false">
+               <label>Network popup</label>
+       </ui-application>
+</manifest>
diff --git a/resources/org.tizen.net-popup.xml b/resources/org.tizen.net-popup.xml
new file mode 100644 (file)
index 0000000..a6aefc4
--- /dev/null
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" package="org.tizen.net-popup" version="0.1.01-1" install-location="internal-only">
+       <label>Network popup</label>
+       <author email="sanghoon80.cho@samsung.com" href="www.samsung.com">Sanghoon Cho</author>
+       <description>Network popup</description>
+       <ui-application appid="org.tizen.net-popup" exec="/usr/apps/org.tizen.net-popup/bin/net-popup" nodisplay="true" multiple="false" type="capp" taskmanage="false">
+               <label>Network popup</label>
+       </ui-application>
+</manifest>
diff --git a/src/net-popup.c b/src/net-popup.c
new file mode 100644 (file)
index 0000000..def4a51
--- /dev/null
@@ -0,0 +1,334 @@
+/*
+*  net-popup
+*
+* Copyright 2012  Samsung Electronics Co., Ltd
+*
+* Licensed under the Flora License, Version 1.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.tizenopensource.org/license
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*
+*/
+
+#include <stdio.h>
+#include <appcore-efl.h>
+#include <syspopup.h>
+#include <glib.h>
+#include <Ecore_X.h>
+#include <status.h>
+#include <notification.h>
+#include <appsvc.h>
+
+#include "net-popup.h"
+#include "net-popup-strings.h"
+
+#define NETCONFIG_NOTIFICATION_WIFI_FOUND_PRIV_ID      1000
+#define NETCONFIG_NOTIFICATION_WIFI_ICON \
+                                       "/usr/share/icon/Q02_Notification__wifi_in_range.png"
+#define NETCONFIG_NOTIFICATION_WIFI_FOUND_TITLE                "Wi-Fi networks found"
+#define NETCONFIG_NOTIFICATION_WIFI_FOUND_CONTENT      "Open Wi-Fi setting"
+
+static int __net_popup_show_tickernoti(bundle *b, void *data);
+static int __net_popup_show_popup(bundle *b, void *data);
+static void __net_popup_add_found_ap_noti(void);
+static void __net_popup_del_found_ap_noti(void);
+
+static int __net_popup_term(bundle *b, void *data)
+{
+       log_print(NET_POPUP, "\nnet-popup: terminate");
+       return 0;
+}
+
+static int __net_popup_timeout(bundle *b, void *data)
+{
+       log_print(NET_POPUP, "\nnet-popup: timeout");
+       return 0;
+}
+
+static int __net_popup_create(void *data)
+{
+       log_print(NET_POPUP, "__net_popup_create()\n");
+
+//     bindtextdomain(PACKAGE, LOCALEDIR);
+
+       return 0;
+}
+
+static int __net_popup_terminate(void *data)
+{
+       return 0;
+}
+
+static int __net_popup_pause(void *data)
+{
+       return 0;
+}
+
+static int __net_popup_resume(void *data)
+{
+       return 0;
+}
+
+static int __net_popup_reset(bundle *b, void *data)
+{
+       log_print(NET_POPUP, "__net_popup_reset()\n");
+
+       const char* type = bundle_get_val(b, "_SYSPOPUP_TYPE_");
+
+       if (type == NULL) {
+               elm_exit();
+               return 0;
+       }
+
+       log_print(NET_POPUP, "type = %s\n", type);
+
+       if (g_str_equal(type, "notification")) {
+               __net_popup_show_tickernoti(b, data);
+               elm_exit();
+       } else if (g_str_equal(type, "popup")) {
+               __net_popup_show_popup(b, data);
+       } else  if (g_str_equal(type, "add_found_ap_noti")) {
+               __net_popup_add_found_ap_noti();
+               elm_exit();
+       } else  if (g_str_equal(type, "del_found_ap_noti")) {
+               __net_popup_del_found_ap_noti();
+               elm_exit();
+       } else {
+               __net_popup_show_tickernoti(b, data);
+               elm_exit();
+       }
+
+       return 0;
+}
+
+static void _ok_button_clicked_cb(void *data, Evas_Object *obj, void *event_info)
+{
+       if (data)
+               evas_object_del(data);
+       elm_exit();
+}
+
+static int __net_popup_show_tickernoti(bundle *b, void *data)
+{
+       const char* mode = bundle_get_val(b, "_SYSPOPUP_CONTENT_");
+       if (mode == NULL) {
+               return 0;
+       }
+
+       log_print(NET_POPUP, "content = %s\n", mode);
+
+       if (strcmp(mode, "connected") == 0) {
+               status_message_post(ALERT_STR_MOBILE_NETWORKS_CHARGE);
+               log_print(NET_POPUP, "alert 3g\n");
+       } else if (strcmp(mode, "fail to connect") == 0) {
+               status_message_post(ALERT_STR_ERR_UNAVAILABLE);
+               log_print(NET_POPUP, "alert err\n");
+       } else if (strcmp(mode, "unable to connect") == 0) {
+               status_message_post(ALERT_STR_ERR_CONNECT);
+               log_print(NET_POPUP, "alert unable to connect\n");
+       } else if (strcmp(mode, "not support") == 0) {
+               status_message_post(ALERT_STR_ERR_NOT_SUPPORT);
+               log_print(NET_POPUP, "alert not support\n");
+       } else if (strcmp(mode, "wifi restricted") == 0) {
+               status_message_post(ALERT_STR_RESTRICTED_USE_WIFI);
+               log_print(NET_POPUP, "alert wifi restricted\n");
+       } else if (strcmp(mode, "wifi connected") == 0) {
+               char buf[ALERT_STR_LEN_MAX] = "";
+               char *ap_name = (char *)bundle_get_val(b, "_AP_NAME_");
+
+               if (ap_name != NULL)
+                       snprintf(buf, ALERT_STR_LEN_MAX, "%s  %s", ap_name, ALERT_STR_WIFI_CONNECTED);
+               else
+                       snprintf(buf, ALERT_STR_LEN_MAX, "%s", ALERT_STR_WIFI_CONNECTED);
+
+               status_message_post(buf);
+
+               log_print(NET_POPUP, "alert wifi connected\n");
+       } else {
+               status_message_post(mode);
+               log_print(NET_POPUP, "%s\n", mode);
+       }
+
+       return 0;
+}
+
+static int __net_popup_show_popup(bundle *b, void *data)
+{
+       Evas_Object *win;
+       Evas_Object *popup;
+       Evas_Object *button;
+       int w, h;
+
+       const char* mode = bundle_get_val(b, "_SYSPOPUP_CONTENT_");
+
+       if (mode == NULL) {
+               elm_exit();
+               return 0;
+       }
+
+       log_print(NET_POPUP, "content = %s\n", mode);
+
+       win = elm_win_add(NULL, PACKAGE, ELM_WIN_BASIC);
+       elm_win_alpha_set(win, EINA_TRUE);
+       elm_win_borderless_set(win, EINA_TRUE);
+       ecore_x_window_size_get(ecore_x_window_root_first_get(), &w, &h);
+       evas_object_resize(win, w, h);
+
+       popup = elm_popup_add(win);
+       evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       if (strcmp(mode, "connected") == 0) {
+               elm_object_text_set(popup, ALERT_STR_MOBILE_NETWORKS_CHARGE);
+               log_print(NET_POPUP, "alert 3g\n");
+       } else if (strcmp(mode, "fail to connect") == 0) {
+               elm_object_text_set(popup, ALERT_STR_ERR_UNAVAILABLE);
+               log_print(NET_POPUP, "alert err\n");
+       } else if (strcmp(mode, "unable to connect") == 0) {
+               elm_object_text_set(popup, ALERT_STR_ERR_CONNECT);
+               log_print(NET_POPUP, "alert unable to connect\n");
+       } else if (strcmp(mode, "not support") == 0) {
+               elm_object_text_set(popup, ALERT_STR_ERR_NOT_SUPPORT);
+               log_print(NET_POPUP, "alert not support\n");
+       } else if (strcmp(mode, "wifi restricted") == 0) {
+               elm_object_text_set(popup, ALERT_STR_RESTRICTED_USE_WIFI);
+               log_print(NET_POPUP, "alert wifi restricted\n");
+       } else if (strcmp(mode, "wifi connected") == 0) {
+               char buf[ALERT_STR_LEN_MAX] = "";
+               char *ap_name = (char *)bundle_get_val(b, "_AP_NAME_");
+
+               if (ap_name != NULL)
+                       snprintf(buf, ALERT_STR_LEN_MAX, "%s  %s", ap_name, ALERT_STR_WIFI_CONNECTED);
+               else
+                       snprintf(buf, ALERT_STR_LEN_MAX, "%s", ALERT_STR_WIFI_CONNECTED);
+
+               elm_object_text_set(popup, buf);
+
+               log_print(NET_POPUP, "alert wifi connected\n");
+       } else {
+               elm_object_text_set(popup, mode);
+               log_print(NET_POPUP, "%s\n", mode);
+       }
+
+       button = elm_button_add(popup);
+       elm_object_text_set(button, "OK");
+       elm_object_part_content_set(popup, "button1", button);
+       evas_object_smart_callback_add(button, "clicked", _ok_button_clicked_cb, popup);
+       evas_object_show(popup);
+       evas_object_show(win);
+
+       return 0;
+}
+
+static void __net_popup_add_found_ap_noti(void)
+{
+       int noti_flags = 0;
+       notification_h noti = NULL;
+       notification_error_e noti_err = NOTIFICATION_ERROR_NONE;
+       bundle *b = NULL;
+
+       notification_delete_all_by_type("org.tizen.net-popup", NOTIFICATION_TYPE_ONGOING);
+       noti = notification_new(NOTIFICATION_TYPE_ONGOING, NOTIFICATION_GROUP_ID_NONE,
+                       NETCONFIG_NOTIFICATION_WIFI_FOUND_PRIV_ID);
+       if (noti == NULL) {
+               log_print(NET_POPUP, "fail to create notification");
+               return;
+       }
+
+       noti_err = notification_set_time(noti, time(NULL));
+       if(noti_err != NOTIFICATION_ERROR_NONE) {
+               log_print(NET_POPUP, "fail to notification_set_time : %d", noti_err);
+               goto error;
+       }
+
+       noti_err = notification_set_image(noti, NOTIFICATION_IMAGE_TYPE_ICON,
+                       NETCONFIG_NOTIFICATION_WIFI_ICON);
+       if(noti_err != NOTIFICATION_ERROR_NONE) {
+               log_print(NET_POPUP, "fail to notification_set_image : %d", noti_err);
+               goto error;
+       }
+
+       noti_err = notification_set_text(noti, NOTIFICATION_TEXT_TYPE_TITLE,
+                       NETCONFIG_NOTIFICATION_WIFI_FOUND_TITLE,
+                       NETCONFIG_NOTIFICATION_WIFI_FOUND_TITLE,
+                       NOTIFICATION_VARIABLE_TYPE_NONE);
+       if (noti_err != NOTIFICATION_ERROR_NONE) {
+               log_print(NET_POPUP, "fail to notification_set_title : %d", noti_err);
+               goto error;
+       }
+
+       noti_err = notification_set_text(noti, NOTIFICATION_TEXT_TYPE_CONTENT,
+                       NETCONFIG_NOTIFICATION_WIFI_FOUND_CONTENT,
+                       NETCONFIG_NOTIFICATION_WIFI_FOUND_CONTENT,
+                       NOTIFICATION_VARIABLE_TYPE_NONE);
+       if (noti_err != NOTIFICATION_ERROR_NONE) {
+               log_print(NET_POPUP, "fail to notification_set_content : %d", noti_err);
+               goto error;
+       }
+
+       noti_flags = NOTIFICATION_DISPLAY_APP_NOTIFICATION_TRAY;
+       noti_err = notification_set_display_applist(noti, noti_flags);
+       if(noti_err != NOTIFICATION_ERROR_NONE) {
+               log_print(NET_POPUP, "fail to notification_set_display_applist : %d", noti_err);
+               goto error;
+       }
+
+       b = bundle_create();
+       bundle_add(b, "_INTERNAL_SYSPOPUP_NAME_", "wifi-qs");
+
+       appsvc_set_pkgname(b, "net.wifi-qs");
+
+       noti_err = notification_set_execute_option(noti,
+                       NOTIFICATION_EXECUTE_TYPE_SINGLE_LAUNCH, "Launch", NULL, b);
+       if (noti_err != NOTIFICATION_ERROR_NONE) {
+               log_print(NET_POPUP, "fail to notification_set_execute_option");
+               goto error;
+       }
+
+       noti_err = notification_insert(noti, NULL);
+       if (noti_err != NOTIFICATION_ERROR_NONE) {
+               log_print(NET_POPUP, "fail to notification_insert");
+               goto error;
+       }
+
+       log_print(NET_POPUP, "Successfully added notification");
+
+error:
+       if (b != NULL)
+               bundle_free(b);
+
+       if (noti != NULL)
+               notification_free(noti);
+}
+
+static void __net_popup_del_found_ap_noti(void)
+{
+       notification_error_e noti_err = NOTIFICATION_ERROR_NONE;
+
+       noti_err = notification_delete_all_by_type("org.tizen.net-popup",NOTIFICATION_TYPE_ONGOING);
+       if (noti_err != NOTIFICATION_ERROR_NONE) {
+               log_print(NET_POPUP, "fail to notification_delete_by_priv_id");
+               return;
+       }
+
+       log_print(NET_POPUP, "Successfully deleted notification");
+}
+
+int main(int argc, char *argv[])
+{
+       struct appcore_ops ops = {
+               .create = __net_popup_create,
+               .terminate = __net_popup_terminate,
+               .pause = __net_popup_pause,
+               .resume = __net_popup_resume,
+               .reset = __net_popup_reset,
+       };
+
+       return appcore_efl_main(PACKAGE, &argc, &argv, &ops);
+}
+