pax_global_header00006660000000000000000000000064145612115760014522gustar00rootroot0000000000000052 comment=7dc775ce1ce67e1df0955494c3ff509ab9ae9b40 content-hub-1.1.1/000077500000000000000000000000001456121157600137505ustar00rootroot00000000000000content-hub-1.1.1/.gitignore000066400000000000000000000007621456121157600157450ustar00rootroot00000000000000 # Created by https://www.toptal.com/developers/gitignore/api/cmake # Edit at https://www.toptal.com/developers/gitignore?templates=cmake ### CMake ### CMakeLists.txt.user CMakeCache.txt CMakeFiles CMakeScripts Testing Makefile cmake_install.cmake install_manifest.txt compile_commands.json CTestTestfile.cmake _deps CMakeUserPresets.json ### CMake Patch ### # External projects *-prefix/ # End of https://www.toptal.com/developers/gitignore/api/cmake # common build dirs build/ build-*/ obj-*/content-hub-1.1.1/AUTHORS000066400000000000000000000015331456121157600150220ustar00rootroot00000000000000Adolfo Jayme Barrientos Alberto Mardegan Alexandre Abreu Allan Nordhøy Anonymous Bittin1ddc447d824349b2 Dalton Durst Dan Daniel D'Andrada Daniel Frost Dimitri John Ledkov Florian Boucault Gallegonovato Gnu-ewm Guenter Schwann Guido Berhoerster Heimen Stoffels Hosted Weblate Ivan Semkin Ivo Xavier Jami Kettunen Javier Collado Joan CiberSheep Jozef Mlich Ken VanDine Kugi Eusebio Lionel Duboeuf Loïc Minier Luca Weiss Łukasz 'sil2100' Zemczak Luna Jernberg Lu Xu Marius Gripsgard Michael Sheldon Michael Terry Mike Gabriel Milan Korecky Muhammad Phlostically Ratchanan Srirattanamet Renato Araujo Oliveira Filho Ricardo Salveti De Araujo Robert Ancell Robert Bruce Park Robert Tari Rodney Rudra Harsh V Singh Sebastien Bacher Sergey Chupligin Sergii Horichenko Sylke Vicious Ted Gould Temuri Doghonadze Thomas Voß Timothy G Vlad Nirky Weblate William Hua content-hub-1.1.1/CMakeLists.txt000066400000000000000000000123371456121157600165160ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss cmake_minimum_required(VERSION 3.5) project(content-hub VERSION 1.1.1) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) option(ENABLE_TESTS "Build tests" ON) option(ENABLE_DOC "Build documentation" ON) option(ENABLE_UBUNTU_COMPAT "Enable Ubuntu.Content QML compatibility layer" OFF) include (GNUInstallDirs) find_package(GSettings) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC -pthread") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -fno-strict-aliasing -fPIC -pthread -Wno-unused-function -Wall -Wextra -pedantic") set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") option(Werror "Treat warnings as errors" ON) if (Werror) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror") endif() # Workaround for libexecdir on debian if (EXISTS "/etc/debian_version") set(CMAKE_INSTALL_LIBEXECDIR ${CMAKE_INSTALL_LIBDIR}) set(CMAKE_INSTALL_FULL_LIBEXECDIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBEXECDIR}") endif() set(pkglibexecdir "${CMAKE_INSTALL_FULL_LIBEXECDIR}") set(CMAKE_INCLUDE_CURRENT_DIR ON) find_package(Qt5Core) find_package(Qt5DBus) find_package(Qt5Gui) find_package(PkgConfig REQUIRED) pkg_check_modules(GLIB REQUIRED glib-2.0) pkg_check_modules(GIO REQUIRED gio-unix-2.0) pkg_check_modules(LOMIRI_LAUNCH REQUIRED lomiri-app-launch-0) pkg_check_modules(GSETTINGS REQUIRED gsettings-qt) pkg_check_modules(LOMIRI_API REQUIRED liblomiri-api) pkg_check_modules(DBUS REQUIRED dbus-1) pkg_check_modules(LOMIRI_DOWNLOAD_MANAGER REQUIRED lomiri-download-manager-client) pkg_check_modules(NOTIFY REQUIRED libnotify) pkg_check_modules(APPARMOR REQUIRED libapparmor) pkg_check_modules(LIBERTINE libertine) if(LIBERTINE_FOUND) message("Building with libertine support") else() message(WARNING "Building without libertine support") endif() add_definitions(-DDEBUG_ENABLED) set(GETTEXT_PACKAGE "content-hub") add_definitions(-DI18N_DOMAIN="${GETTEXT_PACKAGE}") set(CONTENT_HUB_VERSION_MAJOR 1) set(CONTENT_HUB_VERSION_MINOR 1) set(CONTENT_HUB_VERSION_PATCH 0) set(CONTENT_HUB_VERSION "${CONTENT_HUB_VERSION_MAJOR}.${CONTENT_HUB_VERSION_MINOR}.${CONTENT_HUB_VERSION_PATCH}") set(QML_API_VERSION_MAJOR 1) include_directories(include) # for dh_translations to extract the domain # (regarding syntax consistency, see http://pad.lv/1181187) set (GETTEXT_PACKAGE "content-hub") if (${ENABLE_DOC}) add_subdirectory(doc) endif() add_subdirectory(po) add_subdirectory(src) add_subdirectory(import) add_subdirectory(examples) add_subdirectory(tools) install(DIRECTORY include DESTINATION ${CMAKE_INSTALL_PREFIX}) # Build and install a pkg-config file set(prefix ${CMAKE_INSTALL_PREFIX}) set(exec_prefix ${prefix}/bin) set(libdir ${prefix}/${CMAKE_INSTALL_LIBDIR}) set(pkg-name "libcontent-hub") set(glib-pkg-name "libcontent-hub-glib") configure_file(libcontent-hub.pc.in libcontent-hub.pc @ONLY) configure_file(libcontent-hub-glib.pc.in libcontent-hub-glib.pc @ONLY) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libcontent-hub.pc ${CMAKE_CURRENT_BINARY_DIR}/libcontent-hub-glib.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig ) if (${ENABLE_TESTS}) enable_testing() find_package(CoverageReport) ##################################################################### # Enable code coverage calculation with gcov/gcovr/lcov # Usage: # * Switch build type to coverage (use ccmake or cmake-gui) # * Invoke make, make test, make coverage # * Find html report in subdir coveragereport # * Find xml report feasible for jenkins in coverage.xml ##################################################################### IF(CMAKE_BUILD_TYPE MATCHES [cC][oO][vV][eE][rR][aA][gG][eE]) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ftest-coverage -fprofile-arcs" ) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -ftest-coverage -fprofile-arcs" ) SET(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -ftest-coverage -fprofile-arcs" ) SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -ftest-coverage -fprofile-arcs" ) ENDIF(CMAKE_BUILD_TYPE MATCHES [cC][oO][vV][eE][rR][aA][gG][eE]) add_subdirectory(tests) # There's no nice way to format this. Thanks CMake. add_test(LGPL-required /bin/sh -c "! grep -rl 'GNU General' ${PROJECT_SOURCE_DIR}/src/client ${PROJECT_SOURCE_DIR}/include/client ${PROJECT_SOURCE_DIR}/src/shared ${PROJECT_SOURCE_DIR}/include/shared" ) add_test(GPL-required /bin/sh -c "! grep -rl 'GNU Lesser' ${PROJECT_SOURCE_DIR}/src/server ${PROJECT_SOURCE_DIR}/include/server ${PROJECT_SOURCE_DIR}/include/test ${PROJECT_SOURCE_DIR}/tests ${PROJECT_SOURCE_DIR}/examples" ) endif() content-hub-1.1.1/COPYING.GPL000066400000000000000000001043741456121157600154350ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . content-hub-1.1.1/COPYING.LGPL000066400000000000000000000167431456121157600155530ustar00rootroot00000000000000 GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. content-hub-1.1.1/ChangeLog000066400000000000000000004116111456121157600155260ustar00rootroot000000000000002024-02-08 Mike Gabriel * Release 1.1.1 (HEAD -> main, tag: 1.1.1) 2024-02-08 Ratchanan Srirattanamet * Merge branch 'personal/peat-psuwit/20-stub-more-functions' into 'main' (d8ebfe0) * src: add missing symbols in GLib compatibility layer (3fecd73) Fixes: https://gitlab.com/ubports/development/core/content-hub/-/issues/20 2024-01-25 Vlad Nirky * Translated using Weblate (French) (90d9ee8) 2023-12-31 phlostically * Translated using Weblate (Esperanto) (1ed1f30) 2023-12-27 Weblate * Added translation using Weblate (Chinese (Simplified) (zh_LATN@pinyin)) (a9932b8) * Added translation using Weblate (Tamil (Sri Lanka)) (387fada) * Added translation using Weblate (German (Walser)) (6663c9a) * Added translation using Weblate (Meadow Mari) (496eaca) * Added translation using Weblate (Crimean Tatar) (79c2d44) * Added translation using Weblate (Chuvash) (a9df2ee) * Added translation using Weblate (Silesian) (948cacc) * Added translation using Weblate (Latin) (6d23f4a) * Added translation using Weblate (Venetian) (fad8be4) * Added translation using Weblate (Ossetian) (68ca95f) * Added translation using Weblate (Sami (Northern)) (2e6ef7f) * Added translation using Weblate (Greenlandic) (4c7b9f6) * Added translation using Weblate (Assamese) (79ae4f7) * Added translation using Weblate (Haitian) (878147c) * Added translation using Weblate (Cornish) (2c5ccf6) * Added translation using Weblate (Frisian) (dae609e) * Added translation using Weblate (Kashubian) (d2d1f62) * Added translation using Weblate (Aragonese) (43003c0) * Added translation using Weblate (Tibetan) (ae7b715) * Added translation using Weblate (Filipino) (b2fb2bc) * Added translation using Weblate (Tigrinya) (3dbd226) * Added translation using Weblate (Tatar) (36bcaad) 2023-12-26 Weblate * Added translation using Weblate (Italian (it_CARES)) (1bd76b0) 2023-11-29 bittin1ddc447d824349b2 * Translated using Weblate (Swedish) (9edf846) 2023-10-17 Weblate * Added translation using Weblate (Xhosa) (6c23720) * Added translation using Weblate (Manx) (57e50b3) * Added translation using Weblate (Corsican) (a2451ef) * Added translation using Weblate (Chechen) (dbea6e6) * Added translation using Weblate (Wolof) (87edff3) * Added translation using Weblate (Kurdish (Central)) (9a17fa4) * Added translation using Weblate (Uzbek) (2ca8a6b) * Added translation using Weblate (Kyrgyz) (4e5c86a) * Added translation using Weblate (Kurdish) (41887f1) * Added translation using Weblate (Sotho (Southern)) (6e0d8ab) * Added translation using Weblate (Norwegian Nynorsk) (47078e8) * Added translation using Weblate (Swahili) (8baa083) * Added translation using Weblate (Afrikaans) (e9c883c) * Added translation using Weblate (Marathi) (7b9e39d) * Added translation using Weblate (Odia) (ee680ee) * Added translation using Weblate (Bengali) (8d648fe) 2023-10-11 phlostically * Translated using Weblate (Esperanto) (1973973) 2023-10-15 Mike Gabriel * Release 1.1.0 (d3c42fb) (tag: 1.1.0) 2023-09-24 Mike Gabriel * Merge branch 'personal/peat-psuwit/17-content-store' into 'main' (0ac5130) * src/com/lomiri/content/transfer.cpp: Grammar fixes in comments, don't use emojis in code. (cbcd439) * tests/acceptance-tests/app_hub_communication_store_migration.cpp: White-space clean-up. (406989c) 2023-09-12 Ratchanan Srirattanamet * debian/control: fix Depends of glib library dev pkg (2b82781) * src: fix compatibility of glib library (0f99327) 2023-09-07 Ratchanan Srirattanamet * CMakeLists.txt, debian/changelog: bump minor version for new API (08c712a) * Make content-hub service specify the store path, not the client (d954707) Fixes: https://gitlab.com/ubports/development/core/content-hub/-/issues/17 Fixes: https://gitlab.com/ubports/development/core/content-hub/-/issues/18 Fixes: https://gitlab.com/ubports/development/core/content-hub/-/issues/1 2023-08-31 Ratchanan Srirattanamet * detail/service: prevent app ID spoofing (f95be69) 2023-08-20 Milan Korecky * Translated using Weblate (Czech) (f5b3698) 2023-07-28 Milan Korecky * Translated using Weblate (Czech) (1c380af) 2023-06-30 Rudra Harsh V.Singh * Translated using Weblate (Sanskrit) (c1f3e5d) 2023-06-30 Weblate * Added translation using Weblate (Sanskrit) (b22161e) 2023-06-27 Rudra Harsh V.Singh * Translated using Weblate (English (Canada)) (1239b2c) * Translated using Weblate (Hindi) (5a12c33) 2023-06-02 Ratchanan Srirattanamet * Merge branch 'personal/gberh/doc-cleanup' into 'main' (2214fad) 2023-03-21 Guido Berhoerster * Check whether qdoc actually works (9821277) * Replace link to Launchpad with one to the project page (9af55fa) * Replace obsolete qdoc markup (a3e7281) 2023-04-16 Lu Xu * Translated using Weblate (Chinese (Simplified)) (484579f) 2023-04-11 Temuri Doghonadze * Translated using Weblate (Georgian) (9e48b0a) * Translated using Weblate (Georgian) (f0ebd5a) 2023-04-04 gallegonovato * Translated using Weblate (Spanish) (c1b271d) 2023-03-30 Sylke Vicious * Translated using Weblate (Italian) (608e0c6) 2023-03-30 Jozef Mlich * Translated using Weblate (Czech) (8e4ecbb) 2023-03-30 Sylke Vicious * Translated using Weblate (Italian) (38197a1) 2023-02-28 Luna Jernberg * Translated using Weblate (Swedish) (6fdcf79) 2023-02-26 Luna Jernberg * Translated using Weblate (Swedish) (d2f7720) 2023-02-20 Sergii Horichenko * Translated using Weblate (Ukrainian) (c6d06e3) 2023-02-21 Heimen Stoffels * Translated using Weblate (Dutch) (a22caa7) 2023-02-14 Mike Gabriel * Release 1.0.2 (529644e) (tag: 1.0.2) 2023-02-13 Adolfo Jayme Barrientos * Translated using Weblate (Spanish) (8a1b56e) 2023-02-13 Jami Kettunen * Merge branch 'personal/peat-psuwit/ubuntu-compat-symlink-method' into 'main' (a5b87e4) 2023-02-13 Ratchanan Srirattanamet * tests/qml-tests: adjust test to catch usage of var type in compat mode (27126ae) * import: switch compat layer to use symlink-to-main-plugin method (ef8c3f0) Fixes: https://gitlab.com/ubports/development/core/content-hub/-/issues/13 2023-02-13 Mike Gabriel * Merge branch 'personal/peat-psuwit/default-peer-gallery' into 'main' (bddf364) 2023-02-14 Ratchanan Srirattanamet * gschema: fix default peer (Gallery)'s app id (7459b23) 2023-02-11 Sergii Horichenko * Translated using Weblate (Ukrainian) (985e39e) 2023-02-05 Mike Gabriel * Release 1.0.1 (56e4d78) (tag: 1.0.1) * d/changelog: Mark as released, this was forgotten during previous release. (27a8093) 2023-02-03 Sergii Horichenko * Translated using Weblate (Ukrainian) (4d4ecc5) 2023-01-31 Mike Gabriel * Translated using Weblate (German) (6343f47) 2023-01-30 Ivo Xavier * Translated using Weblate (Portuguese) (f0bf0a1) 2023-01-29 gnu-ewm * Translated using Weblate (Polish) (1be90a2) 2023-01-30 Mike Gabriel * Merge branch 'personal/gberh/dh-12' into 'main' (c4d00c5) 2023-01-30 Guido Berhoerster * Update to dh version 12 (70040dc) 2023-01-17 Daniel Frost * Translated using Weblate (German) (29adf6e) 2023-01-14 Dan * Translated using Weblate (Ukrainian) (8bcb4d4) 2023-01-13 Sergii Horichenko * Translated using Weblate (Russian) (b79fb56) 2023-01-13 Ivo Xavier * Translated using Weblate (Portuguese) (6fc8420) 2023-01-13 Timothy G * Translated using Weblate (French) (fea442f) 2023-01-12 Ratchanan Srirattanamet * Merge branch 'main_-_addcopy' into 'main' (3563de0) 2022-12-21 Lionel Duboeuf * Expose copy() method, mark move() method deprecated (311e35d) * Bump std c++ version to 17. (d472f25) 2023-01-11 Dan * Translated using Weblate (Ukrainian) (037f747) 2023-01-09 Mike Gabriel * Merge branch 'deprecations' into 'main' (e9e1556) 2023-01-07 Luca Weiss * Replace deprecated QRegExp with QRegularExpression (54c2558) * Replace deprecated QStandardPaths::DataLocation (35cb908) 2023-01-06 Allan Nordhøy * Translated using Weblate (Norwegian Bokmål) (058c0a7) 2023-01-05 Hosted Weblate * Update translation files (1b9aec5) 2023-01-05 Allan Nordhøy * Translated using Weblate (Norwegian Bokmål) (86dcb1e) 2023-01-05 Guido Berhoerster * Merge branch 'personal/sunweaver/modernize-i18n' into 'main' (3119974) 2023-01-04 Mike Gabriel * po/: Modernize i18n. (f8c1edb) 2023-01-04 Anonymous * Translated using Weblate (Chinese (Min Nan)) (a9a40c8) * Translated using Weblate (Kurdish (Southern)) (1a9da3e) * Translated using Weblate (Kurdish (Northern)) (1279d17) * Translated using Weblate (Shan) (aff3358) * Translated using Weblate (Bemba) (73e3b4e) * Translated using Weblate (Dhivehi) (a06ab41) * Translated using Weblate (Nyanja) (065d86a) * Translated using Weblate (Macedonian) (e526aa2) * Translated using Weblate (Maori) (9d40635) * Translated using Weblate (Malayalam) (55a9d10) * Translated using Weblate (Friulian) (f525008) * Translated using Weblate (Pashto) (91f7ef0) * Translated using Weblate (Telugu) (f6f48ee) * Translated using Weblate (Turkmen) (5bbe273) * Translated using Weblate (Lao) (e2b1166) * Translated using Weblate (Tetum) (d1ec682) * Translated using Weblate (Ido) (6cb52b5) * Translated using Weblate (Scots) (0f3261f) * Translated using Weblate (Franco-Provençal) (a2594a4) * Translated using Weblate (Sindhi) (711c91e) * Translated using Weblate (Pampanga) (7ad2f84) * Translated using Weblate (Malagasy) (b7b86c8) * Translated using Weblate (Kabyle) (b7fde2c) * Translated using Weblate (Luxembourgish) (2d3e82d) * Translated using Weblate (Lojban) (62e3947) * Translated using Weblate (French (Switzerland)) (3f680b7) * Translated using Weblate (Tajik) (2dc4bb1) * Translated using Weblate (Oromo) (11e4523) * Translated using Weblate (Nepali) (b5a1492) * Translated using Weblate (Burmese) (7d5a98d) * Translated using Weblate (Lingala) (10723d6) * Translated using Weblate (Icelandic) (3a68f72) * Translated using Weblate (Estonian) (246ff8a) * Translated using Weblate (Bulgarian) (3b3b33b) 2023-01-04 Mike Gabriel * README.md: Add reference to hosted.weblate.org. (bdb3550) * README -> README.md (convert to markdown). (72f4930) * Revert "Deleted translation using Weblate (Chinese (Traditional, Hong Kong))" (98e79b0) * Revert "Added translation using Weblate (Chinese (Traditional, Hong Kong))" (2efea82) 2023-01-04 Weblate * Added translation using Weblate (Chinese (Traditional, Hong Kong)) (9ec8da1) 2023-01-04 Mike Gabriel * Deleted translation using Weblate (Chinese (Traditional, Hong Kong)) (f9a2cca) 2023-01-04 Weblate * Added translation using Weblate (Chinese (Min Nan)) (066ea45) * Added translation using Weblate (Kurdish (Southern)) (ce8d624) * Added translation using Weblate (Kurdish (Northern)) (d379d4f) * Added translation using Weblate (Shan) (dcaa6fd) * Added translation using Weblate (Bemba) (a73ff26) * Added translation using Weblate (Dhivehi) (4aa480e) * Added translation using Weblate (Bengali (Bangladesh)) (5f01158) * Added translation using Weblate (Nyanja) (e533a6c) * Added translation using Weblate (English (Canada)) (8d0a4e8) * Added translation using Weblate (Sardinian) (c435a9c) * Added translation using Weblate (English (United States)) (c9616e0) * Added translation using Weblate (Georgian) (ae3904b) * Added translation using Weblate (Macedonian) (9ce194e) * Added translation using Weblate (Maori) (014626c) * Added translation using Weblate (Malayalam) (6d8801f) * Added translation using Weblate (Friulian) (52311e3) * Added translation using Weblate (Hindi) (c4823aa) * Added translation using Weblate (Armenian) (5dfaf64) * Added translation using Weblate (Pashto) (d1eb47c) * Added translation using Weblate (Telugu) (9791c20) * Added translation using Weblate (Turkmen) (bb0dafa) * Added translation using Weblate (Lithuanian) (690fafc) * Added translation using Weblate (Lao) (244dc10) * Added translation using Weblate (Gujarati) (83716c3) 2023-01-03 Muhammad * Translated using Weblate (Urdu) (a75042d) 2023-01-03 Weblate * Added translation using Weblate (Urdu) (103a045) * Added translation using Weblate (Tetum) (e657d92) * Added translation using Weblate (Ido) (5fad621) * Added translation using Weblate (Scots) (6666cfb) * Added translation using Weblate (Franco-Provençal) (d924e98) * Added translation using Weblate (Sindhi) (4ebc382) * Added translation using Weblate (Pampanga) (1d17003) * Added translation using Weblate (Malagasy) (fcbd713) * Added translation using Weblate (Kabyle) (56cbcb7) * Added translation using Weblate (Luxembourgish) (1d6c5ac) * Added translation using Weblate (French (Switzerland)) (0ea82d3) * Added translation using Weblate (Lojban) (70d6b1f) * Added translation using Weblate (Tajik) (b68b46d) 2023-01-03 Hosted Weblate * Update translation files (232b24d) 2022-11-23 Ratchanan Srirattanamet * Merge branch 'click-support' into 'main' (cda9c65) 2022-11-22 Guido Berhoerster * Add back click hook (b0dba19) 2022-10-27 Mike Gabriel * Merge branch 'fix_build' into 'main' (0d90df2) 2022-09-25 Sergey Chupligin * Fixup build on Qt 5.15 (561ec6f) 2022-08-01 Ratchanan Srirattanamet * Merge branch 'fix-dbus-apparmor-check' into 'main' (a35cd75) 2022-08-01 Guido Berhoerster * Allow DBus activation by AppArmor-confined apps (4ed728c) 2022-07-19 Mike Gabriel * Merge branch 'personal/peat-psuwit/ubuntu-compat-import' into 'main' (667a2aa) 2022-06-03 Ratchanan Srirattanamet * import: add deprecation warning for Ubuntu.* (5f9b784) 2022-04-28 Ratchanan Srirattanamet * import/, tests/: add Ubuntu.Content compatibility layer (b0ea7af) Fixes: https://gitlab.com/ubports/core/content-hub/-/issues/6 2022-06-24 Mike Gabriel * Merge branch 'personal/peat-psuwit/relpath-in-API-docs' into 'main' (0dacf3d) 2022-05-03 Ratchanan Srirattanamet * Merge branch 'fix-url-dispatcher-path' into 'main' (3f6cfa4) 2022-05-03 Guido Berhoerster * Install URL schema file to lomiri-url-dispatcher path (12c1aca) 2022-02-21 Ratchanan Srirattanamet * Merge branch 'focusinfo-rename' into 'main' (ae86962) 2022-02-14 Guido Berhoerster * Add missing build dependency on graphviz (2c2b5ad) * Rename com.canonical.Unity.FocusInfo to com.lomiri.Shell.FocusInfo (823a326) 2022-02-02 Ratchanan Srirattanamet * doc/Doxyfile: make docs reproducible & nicer (89fee74) * Merge branch 'mr/add-dummy-keywords-key-to-desktop-files' into 'main' (df3b836) 2022-02-02 Mike Gabriel * Silence lintian, add dummy Keywords= key. (ceade0c) 2021-12-22 Dalton Durst * Merge branch 'personal/mariogrip/sync-quit' into 'main' (231c081) 2021-12-17 Marius Gripsgard * hub: Make service->quit() synchronous (e9006bc) 2021-12-02 Dalton Durst * Merge branch 'personal/peat-psuwit/gitignore-obj' into 'main' (bdc1da4) (tag: 1.0.0) * Merge branch 'personal/peat-psuwit/Wignored-qualifiers' into 'main' (6ee4e98) 2021-12-02 Ratchanan Srirattanamet * .gitignore: ignore obj-*/ (8b477c2) * Remove -Wignored-qualifiers exception after fixing lal (33d9297) 2021-11-24 Marius Gripsgard * Merge branch 'pr/x-canonical-to-x-ayatana' into 'main' (0c826e2) 2021-10-26 Robert Tari * Renaname x-canonical properties (90903ae) 2021-05-26 Rodney * Merge branch 'mr/clean-up-bzr-cruft' into 'main' (977b750) 2021-05-26 Mike Gabriel * .bzr-builddeb/default.conf: Drop Bazaar cruft, not required anymore. (15ed8ae) 2021-05-15 Rodney * Merge branch 'personal/peat-psuwit/fix-libcontent-hub0' into 'main' (0c1ba2d) 2021-05-15 Ratchanan Srirattanamet * d/control: fix libcontent-hub0 dependencies (26ee958) 2021-05-01 Marius Gripsgard * Merge branch 'personal/mariogrip/focal_-_lomiri-rename' into 'main' (b4fc11a) 2021-04-16 Marius Gripsgard * Release: v1.0.0 (5b55a89) 2021-05-01 Marius Gripsgard * tests: Change exit to _exit (b52212e) * docs: Add back copyright and add ubports copyright (0134d5f) 2021-04-16 Marius Gripsgard * Build without libertine for now (e85ff82) 2021-04-27 Ratchanan Srirattanamet * d/*: add a migration script for renamed gsettings (a2ea63a) * d/*: rename the qml-module package to be consistent with the guideline (498e8a4) 2021-04-17 Marius Gripsgard * apparmor: Return unconfined on error when trying to find appid using aa (4a71cc7) 2021-04-16 Marius Gripsgard * tests: Skip some tests that fails (18808c5) * tests: Fix incorrect expected states (b930c08) * test: Don't quit hub service before test is done (d9e7aeb) 2021-04-27 Ratchanan Srirattanamet * tests: signal readiness after the event loop has started (e0cab46) 2021-04-16 Marius Gripsgard * hub: Print a warning if we have dbus errors (7832e53) * tests: Make sure to report failure from child process (10a7103) * Debian: don't run tests in parallel, dbus-test-runner does not like it (ab8aa1d) * Debian: Add libgtest-dev as dep (91393a6) * Debian: Build in parallel (14ee9b2) * Debian: Add missing dep (libdbus-1-dev) (dfe4b00) * Debian: Use default test function provided by cmake (7a44b12) * git: Add gitignore (9d9dc83) * debian: Move jenkinsfile to debian folder (bbfd091) * qml: Don't crash if we dont have a valid transfer pointer (1dedd87) * build: Enable -Wall -Wextra -pedantic and fix issues it found (75c4ffd) * Replace nih-dbus with lomiri-api (f72ff5a) * cmake: Move enable_testing to root cmakefile (3e0c439) * po: Rename po files (4f8f9f4) * tests: X-Ubuntu-Touch has been renamed to X-Lomiri-Touch (7cca8bf) * examples: qml: UbuntuShape has been renamed to LomiriShape (8283c66) * debian: Cleanup control file and switch urls and maintainer to ubports (b456721) * debian: Switch to lomiri ui toolkit (cbca371) * debian: Switch to lomiri download manager (ebe7917) * debian: Switch to lomiri app launch (50fba1b) * src: Rename namespace and headers to lomiri (9c1a972) * gsetting: Rename gsettings (b30dd98) * dbus: Rename dbus interface to lomiri namespace (3468c6e) * qml: Inital rename to lomiri of qml part (0967efa) 2021-04-17 Marius Gripsgard * Merge remote-tracking branch 'old-origin' into HEAD (7083064) 2021-04-06 Marius Gripsgard * Merge branch 'lomiri-main' into 'main' (5b8cac5) 2021-04-05 Luca Weiss * Rename to Lomiri (4630d79) 2020-10-07 Marius Gripsgard * Add option to build without libertine (#14) (676639a) 2019-01-29 Luca Weiss * Migrate to cmake-extras (#9) (6616c1f) 2018-10-04 Luca Weiss * Move find Gtest/GMock into tests CMake file (#7) (73d9f6f) 2018-06-09 Ivan Semkin * Fix build with Qt 5.11_beta3 (dropping qt5_use_modules) (af2ce86) 2021-02-05 Kugi Eusebio * Fixed TypeError errors (#17) (a610450) 2021-01-07 Rodney * Fixes for Qt 5.12 (#16) (9a56dc8) 2020-10-07 Marius Gripsgard * Add option to build without libertine (#14) (7554e67) 2017-03-15 Ken VanDine * Install an empty dir for the snap interface hook to install peers. (1d54c20) * removed unused filed (0ad1572) * Added /var/cache/content-hub/peers/ to the list of directories watched for peers. The snap interface hook will install them there. (ad130b7) 2017-03-08 Ken VanDine * Rename the Hook class to RegistryUpdater (8cd915f) * Removed some debugging (f3e0803) * Removed click usage in the helper and dropped the depends (472a932) * Fixed packaging to deal with the removal of the click hook (188b640) * Added QFileWatcher to watch for peers to be installed/removed (8552df9) 2017-03-07 Ken VanDine * Don't quit after refreshing registry (d62e95a) * Removed the click hook and check for registered peers on service startup (5e021b6) 2019-12-16 Alberto Mardegan * Build: allow building with crossbuilder (642f453) 2019-01-11 Joan CiberSheep * App Grid Centered (#12) (f0d91e8) 2018-11-18 Joan CiberSheep * Bumped import versions (#8) (7482bb8) 2018-06-16 Marius Gripsgard * Merge pull request #6 from ubports/xenial_-_test6 (2eb1e90) 2017-03-09 William Hua * Prevent crash when creating a paste with a bogus app id (LP: #1655105) (aedd975) 2017-12-28 Marius Gripsgard * Update Jenkinsfile (19614fc) 2017-10-13 Marius Gripsgard * Imported to UBports (114abe8) 2016-12-01 Bileto Bot * Releasing 0.2+17.04.20161201.1-0ubuntu1 (dd19978) 2016-12-01 William Hua * Add GLib bindings (LP: #1624437) (LP: #1624437) (18004f3) * Group the commands better (7ae24f0) * Fix build failure on zesty due to googletest 1.8. Also refactored tests/acceptance-tests/CMakeLists.txt to make adding tests less cumbersome. (LP: #1644062) (f37ae14) 2016-12-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (555dc45) 2016-11-28 Bileto Bot * Releasing 0.2+17.04.20161128-0ubuntu1 (def66c2) 2016-11-28 Ken VanDine * Fix build failure on zesty due to googletest 1.8. Also refactored tests/acceptance-tests/CMakeLists.txt to make adding tests less cumbersome. (LP: #1644062) (ced71ee) * Fix build failure on zesty due to googletest 1.8. Also refactored tests/acceptance-tests/CMakeLists.txt to make adding tests less cumbersome. (f709b82) 2016-11-23 William Hua * Merge lp:content-hub (09614f0) 2016-11-23 Ken VanDine * Use dbus-test-runner for tests by default (d6a1a30) 2016-11-21 William Hua * Merge lp:~attente/content-hub/content-hub-glib (cf1cb03) * Merge lp:~ken-vandine/content-hub/dbus_test_runner (82ba1a8) 2016-11-15 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (7722b88) 2016-11-10 William Hua * Use test harness (abd7132) 2016-11-09 William Hua * Remove g_assert_cmpmem (6a83339) * glib_test.c -> glib_test.cpp (eda67e8) * Define g_assert_cmpmem () if it doesn't exist (GLib < 2.46) (8184c53) * Include gio/gio.h in test (c3e2c8d) 2016-11-07 Bileto Bot * Releasing 0.2+17.04.20161107-0ubuntu1 (cccf53f) 2016-11-07 Ken VanDine * Skip the UAL lookup when run under autopkgtests to prevent an abort from UAL (06a32d0) * Catch the exception through creating the ual::Application (2aa67a2) 2016-11-04 Ken VanDine * Skip the UAL lookup when run under autopkgtests to prevent an abort from UAL (3faf9cf) 2016-11-03 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (bf74a37) 2016-11-02 William Hua * Remove autocleanup generation (doesn't exist on Xenial) (dfe4c4e) * Add GLib and GIO include directories (33a97a4) * Merge trunk (cfa2742) 2016-10-31 William Hua * Add tests for GLib bindings (64ab9ce) 2016-10-30 William Hua * Add GLib bindings (LP: #1624437) (8b66a05) 2016-10-26 Bileto Bot * Releasing 0.2+17.04.20161026-0ubuntu1 (0e00a31) 2016-10-26 Ken VanDine * Use UAL to get iconPath instead of parsing the desktop file ourselves (d1983cd) * Use aboutToQuit to handle taking down the interface (ce2bea8) * fixed bad merge (ab2e6d6) 2016-10-25 Ken VanDine * Merged trunk (c460978) 2016-10-04 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (98a4004) 2016-09-23 Ken VanDine * Fixed logging (49e385a) * Use UAL to set the peer name property (83bdd81) * Don't attempt to build the iconPath when run with CONTENT_HUB_TESTING set (1275381) 2016-09-22 Ken VanDine * dropped legacy property (1777c06) * Use UAL to get iconPath instead of parsing the desktop file ourselves (d836397) 2016-09-22 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (d0a6c00) 2016-09-14 Bileto Bot * Releasing 0.2+16.10.20160914-0ubuntu1 (75316f6) 2016-09-14 Ken VanDine * Build with hardening=+all (LP: #1597453) (b4c1106) * Build with hardening=+all (e0bd50f) 2016-09-03 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (3467545) 2016-09-02 Bileto Bot * Resync trunk. (d1750d2) 2016-09-02 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (408dcde) 2016-08-30 Bileto Bot * Releasing 0.2+16.10.20160830-0ubuntu1 (de8b40f) 2016-08-30 Florian Boucault * Fixes for crossbuilding. (69bdc59) 2016-08-30 Bileto Bot * Pasteboard implementation (548de1c) 2016-08-25 Ken VanDine * Daniel d'Andrada 2016-08-24 Improve PasteFormatsChanged (e2d5f8b) 2016-08-25 Bileto Bot * Releasing 0.1+16.10.20160825-0ubuntu1 (aa31278) 2016-08-25 Ken VanDine * Added isolation-machine to test restrictions as these tests need a working upstart user session. (c7275f8) * Disable the autopkgtests until we figure out how to run an upstart user session (4bfa0c2) 2016-08-25 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (91bdbc8) 2016-08-24 Daniel d'Andrada * Improve PasteFormatsChanged (db6fd1b) 2016-08-24 Bileto Bot * Resync trunk. (28a3491) 2016-08-24 Ken VanDine * Added isolation-machine to test restrictions as these tests need a working upstart user session. (57c59f0) * Daniel d'Andrada 2016-08-23 Authenticate using surface ids instead of process ids (419f11c) * merged trunk (33b4332) 2016-08-23 Daniel d'Andrada * Authenticate using surface ids instead of process ids (d6301f3) 2016-08-23 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (2ab78a9) 2016-08-22 Bileto Bot * Releasing 0.1+16.10.20160822-0ubuntu1 (8db4a48) 2016-08-22 Ted Gould * No change rebuild for UAL ABI change (fef830e) 2016-08-19 Florian Boucault * Merged from trunk (dbfea58) * Better conditional plugins.qmltypes (c91160e) 2016-08-09 Bileto Bot * Releasing 0.1+16.10.20160809-0ubuntu1 (9d8118f) 2016-08-09 Ken VanDine * build dep on qttools5-dev-tools for qdoc (20b033c) 2016-08-08 Ted Gould * No change rebuild (e91b727) 2016-08-03 Ken VanDine * Make app_id matches non-fatal for CreatePaste (dfa6fda) * Ported MimeDataSerialization from qtmir (d373bb5) 2016-08-02 Ken VanDine * Updated version (f41ff6b) 2016-08-01 Daniel d'Andrada * Some changes and clean up around the requestors' app_id (961d915) * merge lp:~ken-vandine/content-hub/pasteboard (20968ad) 2016-08-01 Ken VanDine * removed unneeded handle_pastes (d5854c0) * Return a bool from CreatePaste and don't register object path during CreatePaste (8429290) * Don't register Paste object path when requesting a paste, we control access to that via isPidFocus from Unity8 (85b0eeb) * Don't check isPidFocused from Unity8 while under testing (f824aad) * Remove public API state from Paste (4fda3fe) 2016-07-29 Ken VanDine * Limit stack size to 5 (a43e90c) 2016-07-29 Daniel d'Andrada * Keep only the most recent pastes (674691a) 2016-07-29 Ken VanDine * Only send paste to an app that is currently focused, thanks to Daniel d'Andrada (685f2bd) * spelling (8b81606) 2016-07-29 Daniel d'Andrada * Only send paste to an app that is currently focused (337d684) * merge lp:~ken-vandine/content-hub/pasteboard (500478e) 2016-07-29 Ken VanDine * Only check if the appId matches for creating pastes (1c5773c) 2016-07-28 Ken VanDine * Fix app_id_matches() (92b6276) 2016-07-28 Daniel d'Andrada * Fix app_id_matches() (79dfbea) 2016-07-28 Ken VanDine * build dep on qttools5-dev-tools for qdoc (95e95ed) 2016-07-28 Daniel d'Andrada * merge lp:~ken-vandine/content-hub/pasteboard (7b1f855) 2016-07-27 Ken VanDine * explicitly build dep on qtbase5-dev-tools for qdoc (f42a00a) * Version bump to reflect Pasteboard implemention (9b00e66) * Merged fixes from dandrader (ef84609) 2016-07-26 Daniel d'Andrada * Fix unnecessary round trip and memory leak when creating a paste (d3f2ee5) 2016-07-25 Daniel d'Andrada * merge lp:~ken-vandine/content-hub/pasteboard (d505d8e) 2016-07-25 Ken VanDine * Added pasteboardChanged signal emitted when the stack has changed (1fbc9fe) * merged trunk (4a89364) 2016-07-23 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (51fe763) 2016-07-21 Ken VanDine * Fix from Daniel d'Andrada for memory leak in cuc::Hub::createPaste (508059d) 2016-07-21 Daniel d'Andrada * Fix memory leak in cuc::Hub::createPaste (62bc6df) 2016-07-21 Ken VanDine * Merged API improvements from Daniel d'Andrada, including making createPaste async (120ed89) * merged trunk (e339b1f) 2016-07-21 Daniel d'Andrada * Document data format used in serialization (387836f) * Make cuc::Hub::createPaste async and rename methods to Qt coding style (camelCase) (ad7a188) * WIP (52df987) * merge lp:~ken-vandine/content-hub/pasteboard (8b5f417) 2016-07-21 Ken VanDine * Added Hub::pasteFormats property which contains a list of mimetypes available to paste from the pasteboard (9eb85bc) * Dropped the Q_INVOKABLE from the new function (c4413c5) * removed unused PasteAdded signal (e7ce03f) * Added Hub::pasteFormats property which contains a list of mimetypes available to paste from the pasteboard (5f503e9) * removed unused uuid (35ece9c) * Verify app_id_matches for CreatePaste as well (71be230) * refactored a bit to include the mimeData when calling CreatePaste, cuts down a dbus round trip (fb6dc01) 2016-07-18 Ken VanDine * removed commented out line (daa486b) * Use QMimeData for the Paste payload (be4b864) 2016-07-15 Bileto Bot * Releasing 0.1+16.10.20160715-0ubuntu1 (dc7e44b) 2016-07-15 Ken VanDine * Filter current app out of the peer model (LP: #1603508) (65f59f3) * Filter current app out of the peer model (066d492) 2016-07-08 Ken VanDine * Don't warn on empty pasteboard (7cc238a) * Don't block on returning paste if it doesn't exist (b379d0a) 2016-07-06 Florian Boucault * remove condition (8d8d35d) * do not remove condition (aab135f) 2016-07-05 Florian Boucault * Fixes for crossbuilding. (b11689a) 2016-07-05 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (73b26d6) 2016-06-18 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (1d57dcd) 2016-06-10 Bileto Bot * Releasing 0.1+16.10.20160610.2-0ubuntu1 (6846baa) 2016-06-10 Ken VanDine * Ensure all the properties are set when the url is set on a ContentItem (LP: #1571361) (e57283f) * Ensure all the properties are set when the url is set on a ContentItem (dc916b5) 2016-06-10 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (1c86a00) 2016-06-09 Ken VanDine * default to running the file copy test except during package build (76aebaa) * Work around issue of charging the transfer when run under sbuild (3988245) * build dep on xvfb for qmltests (c5fab2b) * Use xvfb-run to run qml-tests (fd51c15) 2016-06-07 Ken VanDine * UAL build fixes (25b5859) * Use UAL to ensure the app_id is correct (049b945) 2016-06-02 Ken VanDine * Don't run dbus-test-runner from the package build, the test target does that for us now. (11f4a19) * improved test to use dbus-test-runner via make test (4d6af44) 2016-06-02 Bileto Bot * Releasing 0.1+16.10.20160602-0ubuntu1 (9cf18a6) 2016-06-02 Ken VanDine * Call qmlplugindump with -noinstantiate (098a631) * Removed unused code (216d046) * fixed header (91c8ef1) * Added tests for pasteboard (1547748) * improved logging (b0ee075) * improved logging (b4d5124) 2016-06-01 Ken VanDine * Mangle paste object path based on destination app, this will let us restrict access based on apparmor profile. (8092342) 2016-05-31 Ken VanDine * Drop copy and paste handlers, we don't need them (8301748) 2016-05-26 Ken VanDine * improved pasteboard examples (2701345) * Added paste_buf_by_id (76aad25) * Added GetLatestPaste and GetPaste (29c2274) * Added copy and paste examples for the pasteboard (ae4ed80) * Fixes for the pasteboard API (fe60be5) 2016-05-25 Ken VanDine * Added Paste dbus backend to the hub client API (4814994) 2016-05-23 Ken VanDine * Added Paste class (f277da9) 2016-05-18 Ken VanDine * Call qmlplugindump with -noinstantiate (4d5ce81) * merged trunk (58b8075) * Added paste handler (9e7a812) * Call qmlplugindump with -noinstantiate (5ae5958) 2016-04-20 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (70a0041) 2016-03-27 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (d0df9ea) 2016-03-17 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (816bacc) 2016-03-09 CI Train Bot * Releasing 0.1+16.04.20160309-0ubuntu1 (0b36f8f) 2016-03-09 Michael Sheldon * Fix documentation for toDataURI method Fixes: #1555116 Approved by: Ken VanDine (1f68c50) * Fix documentation for toDataURI method (8197bd2) 2016-03-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (a77bc93) 2016-02-06 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (d16ab8b) 2016-01-29 CI Train Bot * Releasing 0.1+16.04.20160129.1-0ubuntu1 (ba4a955) 2016-01-29 Ken VanDine * Combine share and import peers Fixes: #1539674 Approved by: PS Jenkins bot (4fb33d5) * all isn't valid for shares (43e47e5) * define peers (6575bbc) * Revert consolidating share and export but add type "all" and legacy apps to share peers (2311527) * Tagged bug (9c1acfb) * Combine share and import peers (d46439c) 2016-01-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (437044c) 2015-12-24 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (9976767) 2015-12-16 CI Train Bot * Releasing 0.1+16.04.20151216.1-0ubuntu1 (d6aaa51) 2015-12-16 Michael Sheldon * Set destination app-id as download metadata Approved by: Ken VanDine, PS Jenkins bot (e22c990) 2015-12-08 Michael Sheldon * Add build dependency on qtdeclarative5-ubuntu-ui-toolkit-plugin (96938a9) 2015-12-02 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (60ef793) 2015-11-24 CI Train Bot * Releasing 0.1+16.04.20151124-0ubuntu1 (ad7345b) 2015-11-24 Ken VanDine * Added ogg file (the default Ubuntu ringtone) for testing music exports and support music exports in content-hub-test-exporter (cc8d54c) 2015-11-17 Ken VanDine * added music to registered types (fc28020) 2015-11-12 Ken VanDine * Added ogg file (the default Ubuntu ringtone) for testing music exports and support music exports in content-hub-test-exporter (45cde33) 2015-11-06 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (39c57c6) 2015-10-29 CI Train Bot * Releasing 0.1+16.04.20151029.1-0ubuntu1 (51e6d72) 2015-10-29 Ken VanDine * Use libertine to query for apps installed in containers Approved by: PS Jenkins bot (39a0ea8) * use ubuntu_app_launch_application_info to get the dir and filename for desktop files (59bb6b1) * Drop the ElideMiddle in the ContentPeerPicker and add WordWrap to match the grid in unity8 (296f5f1) * Cleaned up usage of appinfo (0b9dea2) * Fixed icon handling (ca1ec4d) 2015-10-28 Ken VanDine * improved icon handling (8e8406e) * handle using the dir for iconName (c087e4d) * Handle charging downloads when dismissed, just don't invoke the app. This is useful when handling legacy apps. (2a52db1) 2015-10-27 Ken VanDine * added debugging log for peer icons (747b466) 2015-10-23 Ken VanDine * fixed FTBFS (cdebd35) * Transfer content destined for legacy apps to ~/shared inside the container (ed18d6a) * Removed whitespace (5fd28bc) * removed debug output (16beee1) 2015-10-21 Ken VanDine * Don't include the legacy apps as sources (c8f49ad) * Avoid file name conflicts when copying data for transfer to legacy apps (8b4c801) 2015-10-20 Ken VanDine * added peer_is_legacy to mocks (c5ec594) * Added legacy peer handling, work in progress (d766d34) 2015-10-16 Ken VanDine * use a default xorg icon for legacy apps (1f6f111) * fallback iconName without leading dir (983c353) * set legacy peer when in a libertine container and use a generic icon for now (01162d2) * added legacy property to peer (9cdd8ed) 2015-10-15 Ken VanDine * added debug output for iconPaths (415888b) 2015-10-14 Ken VanDine * merged appinfo branch (3e119a2) * used defines for keys (de42dc9) * used defines for keys (b927a2b) * Added FIXME for nodisplay and shownin (21300c4) * use a g_key_file for looking up mimetype (fa21a2e) * added more debug output (334ae51) * set the themeSearchPath to include the libertine containers (9dfd4f5) 2015-09-30 Ken VanDine * Merged appinfo branch (9027bf3) 2015-09-29 Ken VanDine * Fallback to loading the desktop file as a g_key_file if we fail to get a valid GAppInfo.; Added dbus API for creating a peer to properly marshal metadata and icon (ddcbabd) 2015-09-25 Ken VanDine * added more logging to peer (9eb1ec6) 2015-09-24 Ken VanDine * Ensure we don't query for appinfo on the client side (42033c6) * merged picker_wordwrap (4ebe94f) * Increase the delegateHeight to allow for 2 lines of text (4b28be7) * merged appinfo_peers (c470493) * merged picker_wordwrap (2e37f72) * wrapMode: Text.Word and added maximumLineCount of 2 (6cb1298) * merged picker_wordwrap (7b6d49a) * Drop the ElideMiddle in the ContentPeerPicker and add WordWrap to match the grid in unity8 (d7d67a2) * merged trunk (7e46a92) * merged trunk (d18aa9c) * Removed debug output and special handling for the firefox icon (4dad1c7) 2015-09-24 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (91d6f9b) 2015-09-24 CI Train Bot * Resync trunk. (bc89b03) 2015-09-23 Ken VanDine * Set themeSearchPaths for QIcon (9f29bd5) 2015-09-23 Michael Sheldon * Merge from trunk (c65a7da) 2015-09-23 Ken VanDine * Use libertine to query for apps installed in containers. Also build with QT_NO_KEYWORDS, to fix build issues when including libertine.h (d266575) 2015-09-23 Michael Sheldon * Set correct key for DownloadManager metadata app id (f2baaae) 2015-09-22 Ken VanDine * use ubuntu_app_launch_application_info to get the dir and filename for desktop files (b83394b) 2015-09-22 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (5f4a134) 2015-09-22 CI Train Bot * Releasing 0.1+15.10.20150922-0ubuntu1 (b9306a9) 2015-09-22 Ken VanDine * Added ContentPeerPicker13.qml for 1.3 imports (8e3dd8a) 2015-09-21 Ken VanDine * removed hardcoded color (99b623c) * Major version bump (6d3c1b6) * merged trunk (fa31232) * Updated for UbuntuShape deprecations (1d30a1c) * dropped the title property added in the previous commit (c771af9) 2015-09-18 Michael Sheldon * Set destination app-id as download metadata (12d7c5c) 2015-09-17 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (26aeb7d) 2015-09-15 Ken VanDine * Added a read-only property to ContentPeerPicker to expose the title (441ef25) 2015-09-14 Ken VanDine * Added ContentPageHeader (copied from webbrowser-app) to provide our own header (a7dacbc) * merged trunk (8f97a70) 2015-09-09 CI Train Bot * Releasing 0.0+15.10.20150909-0ubuntu1 (06cf276) 2015-09-09 Robert Ancell * Drop unused include that makes build fail unless Qt5Gui pkg-config file is used. Approved by: PS Jenkins bot, Ken VanDine (f9ea498) 2015-09-09 Ken VanDine * Fixed crash when the service is passed an invalid type via dbus Fixes: #1472026 Approved by: PS Jenkins bot, Michael Sheldon (f99da83) 2015-09-09 Michael Sheldon * Add an "Undefined" content type to QML bindings so we can avoid making unnecessary peer look ups when the content type hasn't yet been set now that peers can register for Unknown. Approved by: PS Jenkins bot, Ken VanDine (ad3250c) 2015-09-07 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (db309f4) 2015-09-04 Ken VanDine * Added ContentPeerPicker13.qml for 1.3 imports (4e12465) 2015-09-02 Michael Sheldon * Don't perform a peer look up from QML if the content type hasn't been set yet (350810a) 2015-09-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (05ac974) 2015-08-28 Ken VanDine * Fixed crash when the service is passed an invalid type via dbus (9261656) 2015-08-28 Robert Ancell * Drop unused include that makes build fail unless Qt5Gui pkg-config file is used (a711992) 2015-08-21 CI Train Bot * Releasing 0.0+15.10.20150821.2-0ubuntu1 (fbeabf6) 2015-08-21 Ken VanDine * Don't swallow QEvent::ApplicationDeactivate Fixes: #1485222 Approved by: PS Jenkins bot, Sebastien Bacher, Michael Sheldon (2abf3f7) * generate plugins.qmltypes Fixes: #1483626 Approved by: PS Jenkins bot, Michael Sheldon (9c5bd7b) * added hasPending property on ContentHub Fixes: #1487073 Approved by: PS Jenkins bot, Renato Araujo Oliveira Filho (2245b8a) * warn when we don't call the handler (31bf9b7) * Don't swallow QEvent::ApplicationDeactivate (ffc3d77) * mark hasPending as internal (b31b9a6) * added docstring for hasPending (9df752a) 2015-08-20 Ken VanDine * Added test for has_pending (6969483) * added hasPending property on ContentHub (188a0d3) 2015-08-19 Ken VanDine * build depend on qtdeclarative5-dev-tools for qmlplugindump (456d4b1) * generate plugins.qmltypes (715d66c) 2015-08-16 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (553ece9) 2015-08-13 CI Train Bot * Releasing 0.0+15.10.20150813-0ubuntu1 (e1cda36) 2015-08-13 Ken VanDine * Fixed property errors in example code Fixes: #1484198 Approved by: Sebastien Bacher, PS Jenkins bot (4fbd2be) * create the local content-hub directory if needed when the hook is run Fixes: #1484184 Approved by: Didier Roche, Sebastien Bacher, PS Jenkins bot (75cb4c9) 2015-08-12 Ken VanDine * merged trunk (cd3cf39) * merged trunk (8a7b40f) * No-change test rebuild for g++5 ABI transition (6770746) * Fixed property errors in docs (950794b) * create the local content-hub directory if needed when the hook is run (95e9ad2) 2015-08-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (b31fed0) 2015-07-26 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (9a6b4c4) 2015-07-24 CI Train Bot * Releasing 0.0+15.10.20150724-0ubuntu1 (51d5fb8) 2015-07-24 Ken VanDine * No change rebuild for ubuntu-download-manager Approved by: PS Jenkins bot (4b14a43) 2015-07-23 Ken VanDine * No change rebuild for ubuntu-download-manager (60e950e) 2015-07-23 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (8884e49) 2015-07-09 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (8429b2a) 2015-07-03 CI Train Bot * Releasing 0.0+15.10.20150703-0ubuntu1 (eaeb49c) 2015-07-03 Ken VanDine * Added ContentType.Events; Added tests for the well known types Fixes: #1464244 Approved by: Michael Sheldon, PS Jenkins bot (4eec9f2) 2015-07-01 CI Train Bot * Releasing 0.0+15.10.20150701-0ubuntu1 (b8cdc0a) 2015-07-01 Renato Araujo Oliveira Filho * Fixed header divider color for ContentPeerPicker11. Fixes: #1470557 Approved by: PS Jenkins bot (f077200) * Fixed header divider color for ContentPeerPicker11. (ada4d2d) 2015-07-01 Ken VanDine * fixed copyright date in new file (931642b) 2015-07-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (04ed80c) 2015-06-29 Ken VanDine * merged trunk (10247d2) * added tests for well known types (e00c5e1) 2015-06-27 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (492aa27) 2015-06-24 Ken VanDine * Added ContentType.Events (9798659) 2015-06-20 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (4516eb3) 2015-06-19 CI Train Bot * Resync trunk. (88d0a59) 2015-06-16 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (e4d6bfc) 2015-06-15 CI Train Bot * Releasing 0.0+15.10.20150615.3-0ubuntu1 (a605503) 2015-06-15 Ken VanDine * Added support for registering a source or destination as handlers for Type::all (caaa0ad) * Don't look for default sources for unknown types (e1f1400) * Added != operator for cuc::Type and ensure we don't check gsettings for unknown (6e3d513) * Don't ignore unknown types for source and destinations (010d1e3) * Include ContentType::Unknown in the ContentPeerModel (7de578e) 2015-06-10 Ken VanDine * Moved Type::Known::all to Type::all, it's not a well known type (8d8a97b) * Fixed typo (fcce574) 2015-06-08 CI Train Bot * Releasing 0.0+15.10.20150608-0ubuntu1 (1f1b5b2) 2015-06-08 Ken VanDine * Make the import and share testability peers return 1 if the transfer is aborted. Added url-dispatcher autopkgtest. Approved by: PS Jenkins bot (881349d) * Added support for registering a source or destination as handlers for Type::all. (1883a5c) 2015-06-05 Ken VanDine * Added autopkgtest to verify that file uris are rejected from url-dispatcher (26f35c6) 2015-06-04 Ken VanDine * Make the import and share testability peers return 1 if the transfer is aborted. Added url-dispatcher autopkgtest. (1546ae5) 2015-06-04 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (7cb4f5a) 2015-06-03 CI Train Bot * Releasing 0.0+15.10.20150603-0ubuntu1 (29b2ab6) 2015-06-03 Ken VanDine * SECURITY UPDATE: file disclosure via unchecked AppArmor profile (LP: #1456628) - Don't allow exporting of files that aren't allowed by the source apparmor profile - CVE-2015-1327 Fixes: #1456628 Approved by: Michael Sheldon (f05533c) 2015-06-02 Ken VanDine * removed redundant check for unconfined (4cd1f87) 2015-06-01 Ken VanDine * dropped needs-recommends from the autopkgtest restrictions (4cd4854) * Fixes for the autopkgtests running under dbus (5ad0094) * Added autopkgtest for testing with the apparmor profile (ad4adea) * Added apparmor profile for testing (548613b) 2015-05-29 Ken VanDine * Make the testability exporter peer more useful by adding optional args for url and profile. If the profile is included, the peer will run under that apparmor profile. (50590aa) * Dropped the unit tests for check_profile_read, they aren't very useful and don't behave as expected in a chroot (d162820) 2015-05-28 Ken VanDine * build depend on libapparmor-dev (1584ecb) 2015-05-27 Ken VanDine * better name for bad profile (c5c64dc) * Added unit tests for check_profile_read (5e0ad6d) * Dropped helper for apparmor check, use the aa_query_label API (d11e618) * Dropped profile property from cucd::Transfer and make cucd::Transfer inherit from QDBusContext to get access to message() (bf9c190) 2015-05-26 Ken VanDine * Verify the source app has read access to local files being transferred (66fe722) 2015-05-26 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (6b44481) 2015-05-18 CI Train Bot * Releasing 0.0+15.10.20150518-0ubuntu1 (1b087db) 2015-05-18 Ken VanDine * Added url-dispatcher integration. This allows export and share requests to be initiated by opening a url. Approved by: PS Jenkins bot, Michael Sheldon (e3ea9b6) 2015-05-18 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (66417da) 2015-05-17 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (f47900b) 2015-05-15 Ken VanDine * Don't support file transfers via url-dispatcher (5d0170d) 2015-05-14 Ken VanDine * white space cleanup (0fa9982) * Cleaned up appId creation and all text to be set (976701d) 2015-05-13 Ken VanDine * merged trunk (be92519) * tidy up a bit (16ad2cf) * Cleaned up logging to use the same log helper as the service (6ef4828) 2015-05-12 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (8fa6175) 2015-05-07 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (f02fccb) 2015-05-04 Ken VanDine * merged latest trunk (486e9f5) 2015-04-30 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (41c6d79) 2015-04-22 CI Train Bot * Releasing 0.0+15.04.20150422-0ubuntu1 (025f1b0) 2015-04-22 Ken VanDine * Don't use a unicode apostrophe in the docs Approved by: Michael Sheldon, PS Jenkins bot (4c47a8c) * Fixed qdoc syntax error for the ContentPeerPicker::peerSelected and ContentPeerPicker::cancelPressed signals Approved by: Michael Sheldon, PS Jenkins bot (f42ad64) * Added ContentType.Text as a well known type Added ContentItem.text property for serialized content Fixes: #1430460 Approved by: Michael Sheldon, PS Jenkins bot (8483432) * merged trunk (1985830) * don't split url-dispatcher handling into a separate package (b5e47ec) 2015-04-21 Ken VanDine * merged trunk (dccb538) * Fixed qdoc syntax error for the ContentPeerPicker::peerSelected and ContentPeerPicker::cancelPressed signals (c9bc056) * Don't create a new Item to for the copied file, just change the url. (44e470c) * ensure the ContentItem.text property gets set when copying/linking files (a783745) * Don't force streamType to x-url when the url is set, this lets a link shared include text as well. (6069ee2) 2015-04-20 Ken VanDine * hide desktop file (eb4fa3b) * Experimental url-dispatcher integration (536466c) 2015-04-20 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (43635ee) 2015-04-19 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (6f43964) 2015-04-14 Ken VanDine * Added more debug output to the test peers (8c015b3) 2015-04-08 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (564b61a) 2015-04-03 Ken VanDine * Updated the importer and exporter examples to demonstrate serialized content in the transfer (4280fbc) * Don't try to copy files when they aren't needed (ad1c24f) * Changed the data property to stream of type QByteArray.; Added streamType property to identify the mime-type of the content stored in the stream property.; Added convienence getter/setter for text, which stores a string in stream and sets the streamType to "plain/text" (3806e25) 2015-04-02 Ken VanDine * merged text_data branch (e9f6028) 2015-03-31 CI Train Bot * Releasing 0.0+15.04.20150331-0ubuntu1 (cb8391b) 2015-03-31 Ken VanDine * When requesting an import from an unknown peer, abort the transfer. This is most likely to occur when requesting the default peer for a ContentType that has no default registered. Fixes: #1429695 Approved by: Michael Sheldon, PS Jenkins bot (ae176a0) 2015-03-30 Ken VanDine * merged trunk (c3a6870) 2015-03-27 Ken VanDine * Abort transfers requested for unknown peers. (6058192) 2015-03-27 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (e17d44a) 2015-03-19 CI Train Bot * Releasing 0.0+15.04.20150319-0ubuntu1 (2841844) 2015-03-19 Ken VanDine * Abort transfers when a file already exists matching the requested name and ContentStore. Fixes: #1429687 Approved by: Michael Sheldon, PS Jenkins bot (e1f30b7) 2015-03-18 Ken VanDine * use QTemporaryDir to create the store path (1e1f8c4) * if any items fail to copy because a file exists, abort (394c059) 2015-03-17 Ken VanDine * removed unused include (fcff4a7) * Added test for condition where a file already exists in the store, it should get aborted (b9b35cc) 2015-03-16 Ken VanDine * Abort transfers when a file already exists matching the requested name and ContentStore. (77be5da) 2015-03-11 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (3780eba) 2015-03-10 Ken VanDine * Added QmlTest for text data transfer (b6472e7) * Added ContentItem.data for text contents (d8902d1) * Fixed missing Text enum (412ca27) * Added ContentItem.Text as a well known type (55a7bb5) 2015-03-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (17e646c) 2015-02-24 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (2de4167) 2015-02-22 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (1056f67) 2015-02-21 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (92e8320) 2015-02-16 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (ce9c0f7) 2015-02-15 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (5403a8b) 2015-02-07 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (e110060) 2015-01-27 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (84e555f) 2015-01-26 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (0174ad4) 2015-01-23 CI Train Bot * Releasing 0.0+15.04.20150123-0ubuntu1 (42aabaf) 2015-01-23 Michael Sheldon * Use the theme background so that fonts are visible with dark apps Fixes: #1384490 Approved by: Ken VanDine, PS Jenkins bot (da42641) 2015-01-22 Michael Sheldon * Use the theme background so that fonts are visible with dark apps (8443d80) 2015-01-22 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (53b6686) 2014-12-17 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (a7431e6) 2014-12-08 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (2de82bd) 2014-12-04 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (c0204c7) 2014-12-02 CI bot * Releasing 0.0+15.04.20141202-0ubuntu1 (a0a15b0) 2014-12-02 Michael Sheldon * Handle content peer model loading asynchronously Fixes: #1390096 Approved by: Ken VanDine, PS Jenkins bot (7d9da4a) 2014-12-01 Michael Sheldon * Use asynchronous loaders instead of processing events when loading a content peer model (daf50b8) 2014-11-26 CI bot * Releasing 0.0+15.04.20141126-0ubuntu1 (b92b9ff) 2014-11-26 Ken VanDine * Added test peers for automated testing of export, import and shares. (6ba51bc) 2014-11-25 Ken VanDine * dropped X-Ubuntu-Application-ID from the test peer desktop files (10f7e13) * Added ebooks to test peers (82ce168) 2014-11-24 Ken VanDine * merged trunk (0e66498) 2014-11-21 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (caffd65) 2014-11-20 CI bot * Resync trunk (91dc018) 2014-11-20 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (b56b5f2) 2014-11-20 CI bot * Releasing 0.0+15.04.20141120-0ubuntu1 (902ffe9) 2014-11-20 Ken VanDine * Fixed conflict with nih-dbus and our own i18n wrapper Fixes: 1394211 Approved by: Michael Sheldon, PS Jenkins bot (b6c8ae9) 2014-11-19 Ken VanDine * Fixed conflict with nih-dbus and our own i18n wrapper (d030ab4) 2014-11-19 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (d1653f3) 2014-11-18 Ken VanDine * merged trunk (bc7dc3d) 2014-11-12 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (6e1c0ee) 2014-11-10 CI bot * Releasing 0.0+15.04.20141110-0ubuntu1 (d6b4b4f) 2014-11-10 Michael Sheldon * Update click hook wrapper to account for change in dbus-session file. Fixes: 1390095 Approved by: Ken VanDine, PS Jenkins bot, Oliver Grawert (a31d628) * Set the caller on the ContentTransferHint dialog to allow it to be destroyed safely when its parent is destroyed. Fixes: 1377334 Approved by: Ken VanDine, PS Jenkins bot (9d55e0d) 2014-11-10 Ken VanDine * Added EBooks to well known types Fixes: 1383732 Approved by: Michael Sheldon, PS Jenkins bot (2a70933) 2014-11-10 Michael Sheldon * Remove dbus-launch fallback (6d52975) 2014-11-07 Michael Sheldon * Use 'id -u' to find userid, as package kit removes UID environment variable (395805e) * Add dbus-x11 dependency (required for dbus-launch, used by click hook wrapper) (7807d7a) * Update location of dbus-session file (f0ef2f3) 2014-11-07 Ken VanDine * Don't use the unicode apostrophe in the docs (bef017f) 2014-11-03 Ken VanDine * Added EBooks to well known types (f4ea2dd) 2014-11-03 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (fed3326) 2014-11-02 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (74d16fc) 2014-10-23 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (aa19a02) 2014-10-22 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (cfde938) 2014-10-20 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (687cb27) 2014-10-18 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (877e6a5) 2014-10-17 Michael Sheldon * Merge from trunk (1708304) 2014-10-17 CI bot * Resync trunk (f196b01) 2014-10-17 Michael Sheldon * Set caller on ContentTransferHint's dialog so that it can be destroyed correctly alongside the parent (4494dbc) 2014-10-16 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (0734d36) 2014-10-15 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (94a7b32) 2014-10-14 CI bot * Releasing 0.0+14.10.20141014-0ubuntu1 (524faa0) 2014-10-14 Michael Sheldon * Add support for receiving directories of unzipped files from download manager. Fixes: 1365993 Approved by: Ken VanDine, PS Jenkins bot (02779bd) * Merge from trunk (61748ef) 2014-10-14 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (3fe5089) 2014-10-13 CI bot * Resync trunk (78fa1a3) 2014-10-13 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (ed8cc0d) 2014-10-12 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (4c20311) 2014-10-11 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (56efac9) 2014-10-10 CI bot * Releasing 0.0+14.10.20141010-0ubuntu1 (09ad2d7) 2014-10-10 Sebastien Bacher * Include missing sources in the translation template, use the custom rule to update it and load the translations from the correct domain Approved by: Ken VanDine (f3ec10c) * don't copy back the pot, it's not needed (0c1ca4f) * it's building out of srcdir (bef2837) * Load the translations from the content-hub domain (17274f6) * run custom template update command (e33ff17) * Update the list of files to translate (96c1cbd) 2014-10-10 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (1003b81) 2014-10-09 Michael Sheldon * Merge from trunk (8a535d7) 2014-10-09 CI bot * Releasing 0.0+14.10.20141009-0ubuntu1 (eaac150) 2014-10-09 Michael Sheldon * Fix packaging for translations. Approved by: Ken VanDine, PS Jenkins bot (c77d009) 2014-10-09 Ken VanDine * Fall back to a copy if move fails Fixes: 1373086 Approved by: Andrew Hayzen, PS Jenkins bot, Michael Sheldon (497b4db) 2014-10-09 Michael Sheldon * Include .mo files in packaging (69ddeae) * Include .mo files in packaging (16ca795) * Merge from trunk (37371a2) 2014-10-09 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (3c88506) 2014-10-08 Ken VanDine * merged trunk (4be3733) 2014-10-08 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (298ab68) 2014-10-07 Ken VanDine * Fall back to a copy if move fails (a2d4a66) 2014-10-07 CI bot * Releasing 0.0+14.10.20141007-0ubuntu1 (f040172) 2014-10-07 Sebastien Bacher * use X-Ubuntu-Use-Langpack so translations are imported Fixes: 1378324 Approved by: Ken VanDine, PS Jenkins bot (dbd24e6) 2014-09-29 Sebastien Bacher * use X-Ubuntu-Use-Langpack so translations are imported (f5400ed) 2014-09-26 Michael Sheldon * Allow download manager to send us the path to a directory containing unzipped files and add the contents to a content transfer (32ad097) 2014-09-19 CI bot * Releasing 0.0+14.10.20140919-0ubuntu1 (3b6e9aa) 2014-09-19 Ken VanDine * Fixed handling of translated strings from g_app_info_get_display_name (LP: #1368770) Fixes: 1368770 Approved by: Michael Sheldon, PS Jenkins bot (51e889d) 2014-09-18 Ken VanDine * Fixed handling of translated strings from g_app_info_get_display_name (LP: #1368770) (9a314e2) 2014-09-15 CI bot * Releasing 0.0+14.10.20140915-0ubuntu1 (f81159c) 2014-09-15 Ken VanDine * Improved uncreatable message for ContentTransfer (05b05c3) * Build with dh_translations (LP: #1359166) Fixes: 1359166 Approved by: Sebastien Bacher, PS Jenkins bot (377024b) 2014-09-14 Ken VanDine * Build with dh_translations (LP: #1359166) (fb26e95) 2014-09-03 Ken VanDine * Imported uncreatable message for ContentTransfer (b14702e) 2014-08-28 CI bot * Releasing 0.0+14.10.20140828-0ubuntu1 (fc21475) 2014-08-28 Michael Sheldon * Expose the source and destination app IDs on transfers. Approved by: Ken VanDine, PS Jenkins bot (5e9a8b2) 2014-08-27 Michael Sheldon * Expose source and destination properties for transfers (fe12d77) 2014-08-15 CI bot * Releasing 0.0+14.10.20140815-0ubuntu1 (d64b35d) 2014-08-15 Michael Sheldon * Add a cancel button to the ContentTransferHint. Approved by: PS Jenkins bot (32de709) 2014-08-14 Michael Sheldon * Fix translation infrastructure to extract strings from both QML and CPP code and update POT file (b189db5) 2014-08-13 Michael Sheldon * Add 'Transfer in progress' title to ContentTransferHint dialog (6b82c86) 2014-08-08 Ken VanDine * cleaned up changelog (2c68606) * merged trunk (5e7dea1) 2014-08-08 Michael Sheldon * Merge from trunk (5ecb226) 2014-08-07 Ken VanDine * register the sharer and importer for all types (c09d50a) * include the importer in the build (e00f3ee) * Added auto importer test peer (fbdd85f) * Added icons for the test peers (0620cf2) * [content-hub-test-exporter] * added export for contacts (b8c070c) * merged add_type_to_transfer branch (20c9cb7) * merged trunk (c18cfcd) 2014-08-07 Michael Sheldon * Add cancel button to ContentTransferHint (610d73b) * Merge from trunk (02b1e5f) 2014-08-06 CI bot * Releasing 0.0+14.10.20140806.2-0ubuntu1 (26c23c1) 2014-08-06 Ken VanDine * Add contentType property to Transfer Approved by: Michael Sheldon (609bb99) * Added test for transfer::contentType (100690a) 2014-08-05 Ken VanDine * Added Videos and Links to All; Check for duplicates when looking for All peers (a40f04f) * cleaned up white space and docstrings (54ca031) 2014-08-04 Ken VanDine * Added support for contentType property on ContentTransfer (443dc8d) * Allow optional setting of contentType on the transfer object (f2b0d86) * Added type property to the backend Transfer object, exposes the ContentType.Id (486b678) 2014-08-01 CI bot * Releasing 0.0+14.10.20140801.4-0ubuntu1 (5e7df69) 2014-08-01 Ken VanDine * Renamed the binary package for the qml module to qtdeclarative5-ubuntu-content1 to reflect support for API version 1.x instead of 0.1 Approved by: Sebastien Bacher, PS Jenkins bot (c4c5ddf) 2014-08-01 Michael Sheldon * Make the ContentPeerPicker's header text customisable and replace the bottom cancel button with new header style cancel. Approved by: Ken VanDine, PS Jenkins bot (1fadea8) * Ignore unused function warnings (new in g++ 4.9), as utils.cpp defines a number of static functions that may not be used everywhere. Approved by: Ken VanDine, PS Jenkins bot (b7f0c48) * Transfer entire content Item objects over dbus, instead of just their URL component. Adds name property to C++ backend and connects to existing QML property. Approved by: Ken VanDine, PS Jenkins bot (631b151) * Remove the Ubuntu shape from the save icon in the download snap decision. Fixes: 1350281 Approved by: Ken VanDine, PS Jenkins bot (15c9d41) 2014-08-01 Ken VanDine * Don't install plugin in a versioned dir, it provides 0.x and 1.x (7147476) 2014-08-01 Michael Sheldon * Ignore unused function warnings (new in g++ 4.9), as utils.cpp defines a number of static functions that may not be used everywhere (4c379bf) 2014-07-23 Ken VanDine * Added versions for breaks and replaces (eaa32fc) * Added Breaks too (4b9a001) 2014-07-23 Michael Sheldon * Use non-shaped icon for download snap decision (2298ca5) 2014-07-22 Ken VanDine * Renamed the binary package for the qml module to qtdeclarative5-ubuntu-content1 to reflect support for API version 1.x instead of 0.1 (39dbaab) 2014-07-22 Michael Sheldon * Fix documentation for separate versions of ContentPeerPicker (d2b3185) 2014-07-21 Michael Sheldon * Separate new ContentPeerPicker into new QML API version and duplicate existing 0.1 elements as 1.0 (ab72c7c) * Replace bottom cancel button with new header style cancel button (0618095) * Make peer picker's header text customisable (5829997) 2014-07-15 Michael Sheldon * Register Item with dbus in Service object constructor (fca9dd2) * Update tests to set names on items (377d881) * Include name in content item comparison (5bda377) 2014-07-14 Ken VanDine * include some test images to transfer in the autoexporter (1f1cfc7) 2014-07-14 Michael Sheldon * Merge from trunk (8e07df5) * Transfer content item objects via dbus instead of just their URLs and connect QML name property to backend (0ea02bc) 2014-07-10 CI bot * Releasing 0.0+14.10.20140710-0ubuntu1 (21341d5) 2014-07-10 Ken VanDine * Added ContentItem.move function to allow pure QML apps to relocate local files collected. Approved by: Andrew Hayzen, PS Jenkins bot (136c26c) * Added new binary content-hub-testability which provides files and utilities for automated testing of content-hub (3a2ded0) * merged trunk (84e839c) * Added optional arg to ContentItem.move to allow renaming the file as well as moving it. (90e36fb) 2014-07-09 CI bot * Releasing 0.0+14.10.20140709-0ubuntu1 (89e08e4) 2014-07-09 Michael Sheldon * Don't make the peer picker explicitly invisible, provide a background for the peer picker and anchor the bottom of the app view appropriately rather than calculating height. Approved by: PS Jenkins bot, Ken VanDine (3e27929) * Don't close/switch applications after an export has been finalized. Approved by: PS Jenkins bot, Ken VanDine (08787b7) 2014-07-09 Ken VanDine * Added ContentItem.move function to allow pure QML apps to relocate local files collected. (a16d27b) 2014-07-09 Michael Sheldon * Anchor apps view to appropriate components (7aa8e03) * Don't make peer picker explicitly invisible (454dee4) * Add background to peer picker (ea6d5d8) 2014-07-07 Michael Sheldon * Merge from trunk (566f086) * Don't close/switch applications after an export has been finalized (61fd3ca) 2014-07-04 CI bot * Releasing 0.0+14.10.20140704-0ubuntu1 (0f58c45) 2014-07-04 Michael Sheldon * Update theme used for resolving system icons (e.g. as used by Debian packages) to use "suru" theme. (d8f361f) * Update theme used for resolving system icons (e.g. those used by debian packages) (adab5b8) 2014-07-03 CI bot * Releasing 0.0+14.10.20140703-0ubuntu1 (cd3a7a5) 2014-07-03 Michael Sheldon * Add Debian friendly locations to content-hub-peer-hooks search locations (ee73dca) 2014-06-25 Michael Sheldon * Search /usr/share/content-hub/peers/ and /usr/share/local/content-hub/peers/ for potential peer description files in addition to the ~/.local/share/content-hub/ to allow debian packages to install their files (6c559a0) 2014-06-18 CI bot * Releasing 0.0+14.10.20140618-0ubuntu1 (35a65cd) 2014-06-18 Ken VanDine * Added toDataURI to ContentItem (bae5a5f) * Don't abort downloads that haven't been charged yet when a new transfer is created. This will leave multiple transfers from downloads which haven't been charged remain in active_transfers until they have been charged. (LP: #1326535) (1245076) * Added objectName to the cancel button in the ContentPeerPicker, it'll be useful for autopilot tests. (1f41ae8) * added docstring for toDataURI (0c6a47e) 2014-06-17 Ken VanDine * fixed isEmpty check in ContentItem.toDataURI (9cbfc49) 2014-06-10 Ken VanDine * Added some error handling to ContentItem.toDataUri (57767bb) * merged latest trunk (9576ff9) 2014-06-09 Ken VanDine * Don't abort downloads that haven't been charged yet when a new transfer is created. This will leave multuple transfers from downloads which haven't been charged remain in active_transfers until they have been charged. (LP: #1326535) (e7ed231) 2014-06-05 Ken VanDine * Make cancel button text translatable (35039d3) * Added objectName to the cancel button in the ContentPeerPicker, it'll be useful in autopilot tests. (02a19ff) 2014-06-04 CI bot * Releasing 0.0+14.10.20140604-0ubuntu1 (e59ae64) 2014-06-04 Michael Sheldon * Show a message in the peer picker when no apps are available for the specified content type. (da76834) 2014-06-04 Ken VanDine * Added new well known types for videos and links. Set gallery as default for videos. (24e143a) * Use an EventFilter to get ApplicationActivate events, to notify the service when a handler gains focus. This is useful to charge completed downloads that have been dismissed in the snap decision. (1208922) * Add a wrapper for the click hook to ensure the dbus session is properly exported (LP: #1324969) Fixes: 1324969 (d94f444) * Check for completed downloads when an import handler is registered, charge if necessary. This will trigger an import for completed downloads that might have been dismissed in the notification. (0eeda8c) 2014-06-04 Michael Sheldon * Display errors reported by download manager as notifications (904e784) 2014-06-03 Ken VanDine * ensure we delete the Hook and Registry to make sure the QGSettings destructor gets called. (ae3b9dc) 2014-06-02 Ken VanDine * fixed install target for hook wrapper (75aefbc) * Add a wrapper for the click hook to ensure the dbus session is properly exported (LP: #1324969) (4498ce8) 2014-06-01 CI bot * Releasing 0.0+14.10.20140601-0ubuntu1 (0402c81) 2014-06-01 Ted Gould * Name change for UAL (627683d) 2014-05-30 Ken VanDine * removed unneeded include for QGuiApplication (6c1c55c) * the eventFilter will work as long as qApp exists, so we don't need to check for QApplication (613d4ba) * Use and eventFilter instead of listening for applicationStatusChanged, the status never gets set to hidden or suspended on the device. (ea7fc6d) * charge downloaded transfers when app becomes active (0d52581) * merged the charge-downloaded branch (17e37e9) * If qApp is a QApplication, connect to applicateStateChanged signal in the hub instance to tell the service when the application becomes active. (b38f291) 2014-05-28 Michael Sheldon * Remove unused header include (d4beed6) * Remove unnecessary entry in POTFILES.in (1556075) 2014-05-27 Michael Sheldon * Update translatable strings (9b1350c) * Show message when no apps are available that handle the requested content type (17e57d1) 2014-05-26 Ted Gould * Name change for UAL (7deafea) 2014-05-23 Ken VanDine * Remove qDebug (b59d7b8) * added toDataURI to ContentItem (e37f011) 2014-05-22 Ken VanDine * merged trunk (3117112) 2014-05-22 Michael Sheldon * Display errors from download manager via a notification (748a6d4) 2014-05-22 Ken VanDine * Added gsettings schema for new types and set gallery as default destination for videos (268d44c) * Check for completed downloads when an import handler is registered, charge if necessary. This will trigger an import for completed downloads that might have been dismissed in the notification. (3f650ae) 2014-05-21 Ken VanDine * Added videos and links well known types (6cfa26a) 2014-05-21 CI bot * Releasing 0.0+14.10.20140521.1-0ubuntu1 (402a200) 2014-05-21 Michael Sheldon * Remove aliases for GridView properties that no longer exist. (8a12860) 2014-05-21 Ken VanDine * reorder virtual functions added with download support, to fix abi compatibility. Fixes: 1321304 (363143a) 2014-05-21 Michael Sheldon * Remove aliases for removed gridview properties (b8693b0) 2014-05-21 Ken VanDine * reorder virtual functions added with download support, to fix abi compatibility. (38e3631) 2014-05-15 CI bot * Releasing 0.0+14.10.20140515.1-0ubuntu1 (3ec3769) 2014-05-15 Ken VanDine * Use libnotify to send a snap decision with an Open action for downloads. Added translation support, needed for the strings in the notification. (3304ced) 2014-05-05 Ken VanDine * Updated pot file to drop "Save" from the translated string. (96bb321) * Fixed creation of the snap decision, needs to specify the "save" icon. (f7e0569) 2014-05-01 Ken VanDine * Make strings used in the snap decision translatable (3050890) 2014-04-30 Ken VanDine * Merged latest changes (f84792c) * Merged latest trunk (69f7079) 2014-04-30 Michael Sheldon * Merge from trunk (47fc1cb) 2014-04-15 CI bot * Releasing 0.0+14.04.20140415-0ubuntu1 (8835b62) 2014-04-15 Michael Sheldon * Excludes ResponsiveGridView from documentation creation and provides additional summaries for QML components. (0406f17) * Fixes the clipping setting on the ResponsiveGridView when being used with dynamically loaded ContentPeerModels. (01eedf4) 2014-04-14 Ricardo Salveti de Araujo * releasing package content-hub version 0.0+14.04.20140402-0ubuntu2 (cc3650e) 2014-04-10 Michael Sheldon * Add summaries to all qml components (4a3aec4) * Exclude ResponsiveGridView.qml from qdoc generation (dff416c) 2014-04-08 Michael Sheldon * Modify ResponsiveGridView to handle dynamically loaded models (86becc7) 2014-04-08 Ken VanDine * merged snap decision fixes from Michael Sheldon (d915575) 2014-04-07 Michael Sheldon * Add save icon to snap decision (79aafc7) * Apply styling to snap decision button (36ce9da) * Make snap decision notification compatible with unity8 (887f2a6) 2014-04-03 Ken VanDine * Use libnotify to send a snap decision with an Open action for downloads. (e4b9e94) 2014-04-03 Michael Sheldon * Update to match new download-manager API (0f97eca) * Merge from trunk (dd403f5) * Add 'Downloading' and 'Downloaded' states and use these when performing download operations instead of 'Charged' (1c9e112) 2014-04-02 CI bot * Releasing 0.0+14.04.20140402-0ubuntu1 (68a50f3) 2014-04-02 Michael Sheldon * Fixes version number of import statements in QML documentation. (4881dcb) 2014-04-02 Ken VanDine * ContentPeerPicker: Make headers translatable and use a ResponsiveGridView for the devices grid to match the apps grid. (094facb) * Ensure m_defaultSources is a StringList before attempting to use it as a list (9c27ea1) * Don't unref the g_icon, the value belongs to app (389cb78) 2014-04-02 Michael Sheldon * Make qdoc based documentation compatible with the Qt 5.2 version of qdoc. (78e52b1) 2014-04-02 Ken VanDine * Replace a couple missed qDebug lines for logging (4895b17) 2014-04-02 Michael Sheldon * Fixes updating of the ContentPeerModel when using Loader and changing ContentType or ContentHandler dynamically and ensures that ContentPeerModel Loader doesn't begin loading the model until the peer picker becomes visible (avoiding delaying app start-up time). (e2fa1c7) 2014-04-02 Ken VanDine * protect against queries for Type::unknown Fixes: 1293463 (4867ee3) 2014-04-02 Dimitri John Ledkov * Exit quicker, if there is nothing to do. (LP: #1287674) Fixes: 1287674 (70f80db) 2014-04-02 Loïc Minier * Downgrade content-hub Recommends to a Suggests as we don't want content-hub pulled via ubuntu-sdk on developer desktops. (40274d6) 2014-04-02 Javier Collado * Added README file Fixes: 1274899 (dd7dcf1) 2014-04-02 Michael Sheldon * Fix import statements in documentation (qdoc now ignores any version specified with \inqmlmodule in favour of the version given by \qmlmodule) (5d2624c) * Fix typo in documentation example (621969f) 2014-04-01 Michael Sheldon * Integrate with download manager (2e8e9fd) 2014-03-31 Dimitri John Ledkov * Fix FTBFS (6a92ce9) 2014-03-31 Ken VanDine * ContentPeerPicker: hide the devices section until we have a way to populate it (a16780d) * ContentPeerPicker: Make headers translatable and use a ResponsiveGridView for the devices grid to match the apps grid. (a0abf3f) 2014-03-31 Dimitri John Ledkov * Merge trunk (9d42bc5) 2014-03-31 Ken VanDine * merged speed-up-no-op branch from xnox (830ad00) 2014-03-28 Michael Sheldon * Merge from loader_fixes (3d495ee) 2014-03-27 Ken VanDine * Ensure m_defaultSources is a StringList before attempting to use it as a list (b285f83) * Don't list defaults on startup (0a9075f) * Don't unref the g_icon, the value belongs to app (37c621e) 2014-03-27 Michael Sheldon * Merge from trunk (301ce66) * Use relative paths for qdoc generation (qdoc in Qt 5.2 currently fails with absolute paths) (b68283a) 2014-03-26 Michael Sheldon * Make it possible to set a download id from download manager on a ContentTransfer (37c285b) * Change 'Export to' header to 'Open with' (ae00f48) * Process findPeers immediately upon component completion, rather than adding it to the end of the event queue (5b8ffa8) 2014-03-24 Ken VanDine * Fixed a qDebug statement that was missed in the criss-cross merges (881ac9c) 2014-03-24 Michael Sheldon * Merge from trunk (27f13ca) * Don't query for unknown type when fetching all content types (d11e86f) 2014-03-23 Michael Sheldon * Don't reload peer list if handler and contentType haven't changed (4e65dae) * Clear grid view when changing properties (e2bba6e) 2014-03-22 Michael Sheldon * Update properties on peer model loader and ensure loading doesn't start until the page becomes visible (854b552) 2014-03-21 Ken VanDine * protect against queries for Type::unknown (09883aa) 2014-03-21 CI bot * Releasing 0.0+14.04.20140321-0ubuntu1 (765bc55) 2014-03-21 Ken VanDine * If the default source is set to anything other than a click appId triplet, fallback to the legacy APP_ID. (8df8d75) * If the transfer isn't persistent, attempt to hardlink instead of copying. If the link fails, fallback to a copy. (f6056ef) * Make debugging output optional based on CONTENT_HUB_LOGGING_LEVEL env variable. (93dd9e7) * Adds support for multiple handler types: source, destination and share. (860731f) 2014-03-20 Ken VanDine * merged fix_pending_check (ae838de) * merged (26a7c48) * merged (e4e617d) * merged peer_picker_ui (cf38e99) * merged peer_details branch (fcabbf3) * merged more_handlers branch (3dc6462) 2014-03-20 Michael Sheldon * Update documentation (c435fad) * Add documentation to ContentTransferHint and ContentPeerPicker elements (bf59784) 2014-03-19 Ken VanDine * merged trunk (53a6b6d) * merged trunk (c5414e1) * merged trunk (f5f740d) * merged trunk (63166fc) * merged trunk (a2cd328) 2014-03-19 Michael Sheldon * Merge changes from trunk (b6251e5) 2014-03-18 Ken VanDine * merged fix_pending_check branch (e545904) * merged latest hardlink_and_fallback_to_copy branch (8d72b8e) * merged from peer_picker_ui_quiet_logging (05c878d) * merged from latest peer_picker_ui_quiet_logging branch (3583cad) * merged from latest peer_picker_ui branch (82e4a0c) * Fixed checking for pending transfers during abort (7b65e62) 2014-03-18 Michael Sheldon * Make it possible to use an external ContentPeerModel in the ContentPeerPicker via a Loader (8cc13d6) 2014-03-17 Michael Sheldon * Use ResponsiveGridView to better mimic icon display from the launcher (f07a789) * Rename defaultPeer to isDefaultPeer (c0e92cb) * Remove unnecessary timers (93417e4) * Make ContentPeer's setContentType method behave in a more expected way when not being used declaratively (55c9f4e) 2014-03-16 Michael Sheldon * Make peer picker icons match launcher icons more closely (5d443cd) * Make picker example more complete (eeb8877) 2014-03-15 Michael Sheldon * Remove default peer testing statement (be6c02e) * Merge changes from signal-find-peer-completion (fd6c7da) 2014-03-15 Alexandre Abreu * remove additional sethandler (305f14b) 2014-03-14 Alexandre Abreu * add fixes (96d36c5) * add small check (242d7ce) * add signal when the peer search has been completed in the peermodel (8f69f79) 2014-03-14 Michael Sheldon * Fix overwritten export example (410e8f7) 2014-03-14 Ken VanDine * changed default source for contacts to the legacy APP_ID for address-book-app (b980832) * If the default source is set to anything other than a click appId triplet, fallback to the legacy APP_ID. (b1cea8e) 2014-03-14 Michael Sheldon * Add defaultPeer property to show if a peer is the default for the requested type (2d4e1fe) * Remove icon property from peer (replaced with iconData property) (9f8166d) 2014-03-13 Michael Sheldon * Merge from peer_details (5b5623a) * Merge changes from more_handlers (61a140c) * Send unprocessed icon file contents over dbus to avoid conversions for non-png icons (f8c6c8c) 2014-03-13 Ken VanDine * Cherry picked from Michael Sheldon's peer_picker_ui branch, set the address-book-app as the default source for contacts. (cce41b6) * merged latest more_handlers branch (61f4577) * cherry picked fix for pkg-config file from Michael Sheldon's peer_picker_ui branch (d944266) * ensure we only return peers from the default settings if it isn't empty (9cde15f) * uncomment out connection for onExportRequested in the app-exporter example (e0313f8) 2014-03-12 Michael Sheldon * Set address book as default source for contacts (d9f3a07) 2014-03-11 Michael Sheldon * Don't repeat default peers (72edcdc) * Merge from peer_picker_ui_updated (4b6d40e) 2014-03-10 Ken VanDine * If the transfer isn't persistent, attempt to hardlink instead of copying. If the link fails, fallback to a copy. This is still a work in progress, and shouldn't be used without updating the apparmor policy for content_exchange to deny write access to HubIncoming. Something like this: (1852736) 2014-03-07 Ken VanDine * Merge qml-test fixes (839f557) * Merged (3861226) * test fixes to match qml API changes (a66423d) * merged from peer_details branch (d13bdb3) * removed commented out code (630875d) * merged from more_handlers branch (b5dc15e) * Clean up (0dbf738) * Removed the untrusted helper, it isn't used (3e63636) 2014-03-07 Michael Sheldon * Don't perform unnecessary peer look ups whilst still populating ContentPeerModel's properties (252c16a) * Only show valid peers (c4dc4db) * Merge from peer_details (e8241ae) 2014-03-07 Ken VanDine * merged latest trunk (f9d4583) * merged trunk (04ee34c) 2014-03-07 Michael Sheldon * Load peers after UI is visible and process UI events whilst loading (a04c61f) 2014-03-07 Dimitri John Ledkov * Merge trunk (408c96a) * invert comparison (7d03c8e) 2014-03-07 Michael Sheldon * Fix pkg-config data (7fee4c3) 2014-03-07 CI bot * Releasing 0.0+14.04.20140307-0ubuntu1 (e23242c) * No change rebuild against Qt 5.2.1. (4493d37) 2014-03-06 Ken VanDine * Fixes for the merged changes to defaults (f82e89a) * Added Type::Known::contacts. Note: there is no associated default store for contacts under any scope. Data for contacts doesn't persist.; Changed defaults to a triplet used to build the appid. Bumped build depends for libupstart-app-launch2-dev needed for converting the triplet to an appid. (0d0bf32) 2014-03-06 CI bot * Releasing 0.0+14.04.20140306-0ubuntu1 (aa902a0) 2014-03-06 Ken VanDine * Changed defaults to a triplet used to build the appid. Bumped build depends for libupstart-app-launch2-dev needed for converting the triplet to an appid. (b8f545d) * merged peer_picker_ui branch (c87e1b7) 2014-03-06 Michael Sheldon * Show default peers first in ContentPeerModel (43fc2c3) 2014-03-05 Ken VanDine * added missing include (6b31911) * Added logging setup to the hook too (d593357) * releasing ppa version (765c61c) 2014-03-05 Michael Sheldon * Add haptic feedback when selecting a peer (1195b8e) * Add cancel button to ContentPeerPicker (3ace1dc) 2014-03-04 Ken VanDine * Clean up critical output (99f0ba7) * Borrow some logging logic from signon-ui, quiets down all the debug output. You can get more debug output by setting CONTENT_HUB_LOGGING_LEVEL=2 (577d782) * Support for more handler types, including sharing; Marshal peer details like name and icon from the service, so confined apps can show them.; Improved QML bindings; New ContentPeerPicker QML component (77f9754) * merged peer_details branch (ccd379b) * merged more_handlers branch (6908786) * Don't return peers with type unknown (2d8b04c) * Ensure default sources are also registered as available sources (0eab3bb) * added a convience function to list known types (4199397) 2014-03-04 Dimitri John Ledkov * Exit quicker, if there is nothing to do. (LP: #1287674) (9c2b30c) 2014-03-04 Michael Sheldon * Fix overflow from flickable when displaying a large number of peers, tweak spacing (e365571) * Convert ContentPeerPicker to being a StyleItem for more flexible embedding and make the title optional (16e4f81) 2014-02-28 Michael Sheldon * Merge from Ken's peer_picker_ui branch (cbd46a8) * Bring peer picker UI closer to design appearance (fc9b3e4) 2014-02-27 Ken VanDine * ContentPeer.request should get the ContentTransfer from ContentHub, to ensure the ContentHub instance is keeping track of active transfers, needed to match the transfer to the registered ImportExportHandler. (f71aaf3) * Theme lookups fail in confined apps without setting the themeName and themeSearchPath, set those when the plugin loads. (d58f145) * merged latest peer_details branch (c356df4) * load the themed icon from iconName if icon is NULL (316173d) * Added iconName to Peer to handle themed icons, the qml bindings will load the icon from the iconName if icon is NULL. (81e3c1a) * rename params to be clearer (aacefc8) 2014-02-27 Michael Sheldon * Merge from new_qml_api branch (adfcfe2) * Give ContentPeerModel the ability to display peers for all ContentTypes (39c72a8) * Merge from new_qml_api (d0b3d7a) * Change the usage of ContentStore to allow it to be set when creating a request instead of as a property of a peer (75db657) 2014-02-26 Michael Sheldon * Improve grid spacing in ContentPeerPicker (655c910) * Add ContentPeerPicker to qmldir definitions (fd09dab) * Add image provider to display peer icons in QML (5445aaa) 2014-02-25 Ken VanDine * expose icons for share and destinations (7651d2e) 2014-02-25 Michael Sheldon * Merge peer_details branch (cbe2cdb) 2014-02-25 Ken VanDine * Added icon property to Peer and provide it from the hub to allow access from confined apps (8e66879) 2014-02-25 Michael Sheldon * Merge recent changes from new_qml_api (7264aae) * Add rough implementation of ContentPeerPicker UI component (1537914) * Remove old API functions (d494aac) * Update button labels in documentation to reflect what they really do (e445b3b) * Update ContentHub documentation to give new API example (4432900) * Add ContentPeer, ContentPeerModel and ContentStore as top level documentation items (7827abf) * Stop buttons in example overlapping (81ca14c) * Make documentation indents more consistent (00f1350) * Only set a valid store on transfer objects (c25343d) 2014-02-24 Michael Sheldon * Make use of store property when its set, and ensure it gets updated to reflect changes in scope/content type (8a387fa) * Use enums more consistently in QML bindings (868aa06) * Make it possible to set the selection type declaratively on a ContentPeer (5262915) * Update picture import example in documentation to new QML API (7a129f0) * Fix indentation in app-exporter example (0f03e27) * Don't override the peer if an appId has been set explicitly (3a957d6) * Create correct transfer type based on handler property (f75d6f6) * Set transfer state in app-exporter example (83adc5e) 2014-02-21 Ken VanDine * Marshal the Peer over DBus (6fbc07d) * Register cuc::Peer so it can be used over DBus (ed1d8a8) 2014-02-21 Loïc Minier * Downgrade content-hub Recommends to a Suggests as we don't want content-hub pulled via ubuntu-sdk on developer desktops. (b9e7f1e) 2014-02-21 Michael Sheldon * Update app-exporter example to handle minor changes in new QML API (388b54c) * Remove extra } in export example (0a92968) * Update import example to include minor changes in new API (941d312) * Merge new QML examples from qml_api_ideas (6c369b8) * Add scope property to ContentStore (3d10c37) * Remove duplicate semi-colon (2822379) * Add store property to ContentPeer (7cbe0a8) * Add ContentScope enum (f45c018) * Reset to default peer when content type is changed (f5f9763) * Add ability to request a transfer directly from ContentPeer (7bf84c4) * Add contentType property to ContentPeer (f70f127) * Rename ContentPeerModel's type property to contentType (380ab5e) 2014-02-20 Ken VanDine * fixed up the enumeration of peers to handle more types (51a01fb) 2014-02-20 Michael Sheldon * Merge from more_handlers branch (91532e7) 2014-02-20 Ken VanDine * added install_destination_for_type and install_share_for_type (40a1f94) * Added gsettings schema for tracking destination and share peers (cb9d3af) * Simplified the source installation (ab5aba3) * Make the Hook class a friend so the click hook can better handle install for types (939f197) * renamed tests to match the s/peers/sources/ rename (b7126ea) * Rename all functions referring to sources as peers. This is necessary to handle other peer types, such as destination and share. (046c4f5) * Fixed logic in determining if there are transfers waiting when the handler registers. (ac81a57) 2014-02-20 Michael Sheldon * Add handler property to ContentPeer (1e4d5ff) * Add ContentHandler enums to QML API (65d2bf2) * Add ContentPeerModel (18e3b39) * Merge from more_hanlders (69ed07b) * Add ContentPeerModel to QML API (91b739b) * Enable declarative creation of ContentStore (2948681) * Rename ContentImportHint to ContentTransferHint (27c5a2e) 2014-02-19 Ken VanDine * Fix up share flow in the qml bindings (2b896c0) * shares need start too (497cfaf) * refactored a bit to reduce duplicated code (a55cdcd) * Added Direction property to the transfer object and use it for determining which handlers to call (5786366) * WIP export and share (3851607) 2014-02-14 Ken VanDine * added a FIXME for differentiating between an import or share on handler registration (83aad8a) * WIP implementation of the QML bindings for export and share (c5f5d6f) * hook up more of the plumbing for export and share (8ae5ef4) 2014-02-13 Ken VanDine * added share creation and hooked up the transfers (82a9a4e) * added support fore creating an export (1a2ab75) * Removed unused InstanceId tracking and UriHandler (6c4f112) * Added tests to verify there is only a single transfer active at a time for any peer. If a second transfer is requested from a peer with an active transfer, the previous transfer is aborted. (38df1ef) 2014-02-12 Ken VanDine * added examples based on a potential future QML API (f523ccf) * added examples based on a potential future QML API (bb02bac) 2014-02-12 Javier Collado * Added suggestions from Ken (7c62870) 2014-02-10 Ken VanDine * dropped the UriHandler and ensure transfers are unique to the handler in the service (056baab) 2014-02-06 Ken VanDine * cancel existing transfers when a new one is created (b732066) 2014-02-05 Ken VanDine * Added UCUriHandler to get signals for app opening (1380375) 2014-02-04 Ken VanDine * Added WasSourceStartedByContentHub back (a20138d) * pass path with ual (1bee23d) 2014-02-03 Ken VanDine * don't use the untrusted helper yet (0e98cbc) 2014-01-31 Javier Collado * Fixed typo (85fa38f) * Added README file (6ff94e7) 2014-01-29 Ken VanDine * fix the path to the helper (3bc9d14) * Added includes for upstart-app-launch (ff57c31) * Changed defaults to a triplet used to build the appid. Bumped build depends for libupstart-app-launch2-dev to >= 0.3+14.04.20140129 needed for converting the triplet to an appid. (ab6098a) 2014-01-28 Ken VanDine * switch back to dest when ready (15d14a1) * keep using the appid for destination (55e4a11) * Support multiple instances of handlers (bb163a9) 2013-12-12 Ken VanDine * Added Type::Known::contacts. Note: there is no associated default store for contacts under any scope. Data for contacts doesn't persist. (1571cff) 2013-12-10 Ken VanDine * Added Type::Known::contacts. Note: there is no associated default store for contacts under any scope. Data for contacts doesn't persist. (b90dbdf) 2013-12-09 Automatic PS uploader * Releasing 0.0+14.04.20131209.1-0ubuntu1 (revision 69 from lp:content-hub). (d46e8bb) * Releasing 0.0+14.04.20131209.1-0ubuntu1, based on r69 (a76baa5) 2013-12-09 Ted Gould * Upgrading to libupstart-app-launch v2. (b3c4d78) 2013-12-06 Ted Gould * Adding the upstart include directory (a71858e) * Change to remove the versioned directory (aef6edc) * Upgrading to libupstart-app-launch v2 (87114c7) 2013-11-18 Ken VanDine * allow ContentPeer to be creatable in QML, this makes it more obvious how to deal with the list returned by knownSourcesForType. (8455032) 2013-11-15 Ken VanDine * Documentation cleanup, fixes button alignment and uses MainView in the QML code example. (642e57e) 2013-11-15 Alexandre Abreu * fix small documentation nit (21229e9) 2013-11-15 Ken VanDine * Documentation cleanup, fixes button alignment and uses MainView in the QML code example. (8d74d71) 2013-11-12 Alexandre Abreu * fix small documentation nit (5b307fd) * fix small documentation nit (55c2e1f) 2013-11-08 Ken VanDine * added an example to the docs for ContentHub.knownSourcesForType (74ee58c) * allow ContentPeer to be creatable in QML, this makes it more obvious how to deal with the list returned by knownSourcesForType. (342ba4c) 2013-11-07 Ken VanDine * Filled in the missing docstrings for the QML bindings . (ea1e93f) * Filled in the missing docstrings for the QML bindings (5b00025) 2013-10-25 Automatic PS uploader * Releasing 0.0+14.04.20131025-0ubuntu1 (revision 63 from lp:content-hub). (ce67984) * Releasing 0.0+14.04.20131025-0ubuntu1, based on r63 (ff656e6) 2013-10-23 Ken VanDine * Added qdoc docs for QML bindings. (1f2f178) * return a QVariantList from knownSourcesForType so the QML bindings can expose a list of peers, fixes (LP: #1236932). Fixes: https://bugs.launchpad.net/bugs/1236932. (dd01baf) * Fixed annotations for overloaded importContent method (27605a4) * merged id rename (3dd16ac) * revert changelog entry (cf20398) * Renamed id to appId to avoid colliding with QML's id property (163cf05) 2013-10-22 Ken VanDine * Merged QML bindings fixes (63dbf02) * Updated doc strings (95df6c8) * marked finishedImports and restoreImports as \internal to exclude from qdoc. (9f1ba32) * Added introduction, architecture overview, examples and definitions to the QML docs (c399512) * removed the "type" property from ContentPeer, it isn't used and com::ubuntu::content::Peer doesn't provide a type either. (905df1d) * emit idChanged on setPeer (e6f70d9) * removed FIXME (1f00cfd) * cleanup example (d816bbd) * Updated import example to include peer list (0a62476) * return a QVariantList from knownSourcesForType so the QML bindings can expose a list of peers, fixes (LP: #1236932) (502cefa) * Added id() and return name for name() instead of id (5071887) 2013-10-21 Ken VanDine * syntax fix for mainpage (06112b0) * added toplevel doc (100a745) * fixed build (d8a3715) * Tweaks for qdoc docs (c0d983e) * Added qdoc docs for QML bindings (89f344e) 2013-10-11 Automatic PS uploader * Releasing 0.0+13.10.20131011-0ubuntu1 (revision 60 from lp:content-hub). (aa66e51) * Releasing 0.0+13.10.20131011-0ubuntu1, based on r60 (36a4dc7) 2013-10-10 Guenter Schwann * Quit the source app on charged/abort when it was started by the content hub. (69750c6) * Quit the source app on charged/abort when it was started by the content hub (81d0684) 2013-10-09 Ken VanDine * Added a click hook, which iterates installed known peers, removing them when they are no longer installed and adding peers when needed. (848de2b) * invoke the destination when the transfer is charged . (18b5734) * Make libcontent-hub0 recommend content-hub . (d319d8b) * Make libcontent-hub0 recommend content-hub (2f85139) * invoke the destination when the transfer is charged (bf40917) 2013-10-08 Guenter Schwann * New component for the importer to indicate an ongoing transfer. (7a7d209) 2013-10-07 Automatic PS uploader * Releasing 0.0+13.10.20131007-0ubuntu1 (revision 54 from lp:content-hub). (0eaded8) * Releasing 0.0+13.10.20131007-0ubuntu1, based on r54 (a7e66cc) 2013-10-04 Ken VanDine * Don't invoke the source application until the destination has called start(). This will prevent source app from getting raised before the destination app expects it, preventing an unexpected interuption in the work flow. (a7c069b) 2013-10-01 Guenter Schwann * Merged trunk (5c74eb3) 2013-10-01 Ken VanDine * Don't invoke the source application until the destination has called start(). This will prevent source app from getting raised before the destination app expects it, preventing an unexpected interuption in the work flow. (90a4a68) * added Breaks for gallery-app <= 0.0.67+13.10.20130924.1-0ubuntu1 . (ee59dac) 2013-10-01 Automatic PS uploader * Releasing 0.0+13.10.20131001-0ubuntu1 (revision 51 from lp:content-hub). (e7c31b8) * Releasing 0.0+13.10.20131001-0ubuntu1, based on r51 (35af122) * Releasing 0.0+13.10.20130930-0ubuntu1 (revision 49 from lp:content-hub). (d9ecd48) 2013-10-01 Ken VanDine * Added basic pkgconfig file . (d638333) 2013-09-30 Ken VanDine * added Breaks for gallery-app <= 0.0.67+13.10.20130924.1-0ubuntu1 (7f58167) * Added basic pkgconfig file (f2340fe) 2013-09-30 Automatic PS uploader * Releasing 0.0+13.10.20130930-0ubuntu1, based on r49 (a1f26a0) 2013-09-30 Ken VanDine * Pulled back in all the changes that were reverted in rev 47. Bug (LP: #1231368) seemed to be caused by gallery-app needing a rebuild against this version of content-hub. (794b1ac) * Pulled back in all the changes that were reverted in rev 47. (6b15259) 2013-09-27 Guenter Schwann * Ne component for the importer to indicate an ongoing transfer (d8a8d4a) 2013-09-27 Automatic PS uploader * Releasing 0.0+13.10.20130927-0ubuntu1 (revision 47 from lp:content-hub). (6232dbe) * Releasing 0.0+13.10.20130927-0ubuntu1, based on r47 (255a56b) 2013-09-26 Robert Bruce Park * Revert previous revert because it didn't solve the regression. (3ddf076) 2013-09-26 Sebastien Bacher * Revert previous upload since it's buggy (lp: #1231368) (756fe09) 2013-09-25 Automatic PS uploader * Releasing 0.0+13.10.20130925-0ubuntu1 (revision 45 from lp:content-hub). (8b9ae7d) * Releasing 0.0+13.10.20130925-0ubuntu1, based on r45 (f58c688) 2013-09-24 Ken VanDine * Mock PeerRegistry instead of Registry, fixes test_hook when the gsettings schema isn't installed. (7bd6236) * Added a name property to Peer using GAppInfo to get a friendly name. (c8f745d) * Added a comment with example JSON (f703df8) * rename function in the hook (17b660c) * Removed unused function (288e0ae) * Added tests for the click hook (556a50b) * fixed typo in Type enum. (2fabc49) * merged trunk (cf3830b) * unref for GDesktopAppInfo (b039d8c) * merged trunk (2e0c107) * Added GIO (23c2659) * Adds a store property to the Transfer, which defaults to an cuc::Scope::app scope and appended with "HubIncoming/${id}". The hub will copy the files to that store when the transfer gets charged and set the proper paths based on the Store::url when setting Transfer::items. (9177f70) * use GAppInfo to get the display name for a peer (b746bc5) 2013-09-23 Ken VanDine * added --with click (f046cf5) * fixed pattern (c9e9e9a) * hook: ensure we return 0 (827ebcf) * removed some noise, no need to call updateStore and updateSelectionType after they are set, the signal will do that. (7f53d09) 2013-09-20 Ken VanDine * Install the click hook (12e0a3f) * click hook, iterate installed known hooks and remove them when they are no longer installed (c139cc1) * Added enumerate_known_peers and remove_peer functions (1b7f28f) * Added tests for utils (b6f7b47) * merged trunk (10da7cc) * Added commented out example of setting a persistent store on the transfer (0dfc742) * Check to see if the Store should be persistent, and only purge if it isn't (e1ac6ec) 2013-09-20 Automatic PS uploader * Releasing 0.0+13.10.20130920-0ubuntu1 (revision 41 from lp:content-hub). (70173b2) * Releasing 0.0+13.10.20130920-0ubuntu1, based on r41 (f3ee313) 2013-09-19 Ken VanDine * expose the ContentStore to QML (78e9711) * fixed typo in Type enum (9683488) * updated example to use finalize and use a MainView (b808f59) * Updated qml bindings for the new finalized state in Transfer (5aae196) * Added a new transfer state, finalized. When the destination is done with the transfer, it should call finalize() on the transfer to cleanup the cached files. (37fd36a) 2013-09-18 Ken VanDine * removed extra whitespace (094e310) * merged trunk (289ac49) * create test files at build time to use in the transfer test (1116f59) * Updated transfer test to ensure items get properly set including including the incoming store when charged. (3494944) * Use QGSettings for persistent peer registration and set defaults. Also adds a helper install peers, which will be used as a click hook, but doesn't get installed yet. (4ca5714) * Ensure the destructor gets called for each transfer when the server exits (84bdbd6) * added function to purge contents of the incoming store, which is called fromt he cuc::Transfer destructor. (c46d421) * Added a test for install_peer_for_type (ee34e95) * use QScopedPointer for the gsettings member variables (05bab40) * column align arguments (10119d7) * merged trunk (a70ffd2) 2013-09-17 Ken VanDine * Updated handler names and paths to use nih_dbus_path to sanitize the names. nih_dbus_path is designed to really just return a dbus path, however this is the same function apparmor uses to mangle app_id names for policy, so it should ensure we can match consistently. This is needed for confined apps. (a4c1799) * merge trunk (6bab9ca) * use the Transfer::id to make a unique incoming store for the transfer (095c85d) * expose cuc::Transfer::id, it's useful for creating the incoming Store (07810db) * use QStandardPaths::CacheLocation (60ec611) * return as a QUrl::toLocalFile (6785bb6) * explicitly build dep on libglib2.0-dev . (a8a656a) 2013-09-17 Automatic PS uploader * Releasing 0.0+13.10.20130917-0ubuntu1 (revision 36 from lp:content-hub). (d5433c8) 2013-09-17 Ken VanDine * explicitly build dep on libglib2.0-dev (aaa2862) * fix for the MockHandler so it doesn't trigger dbus activation . (b98c32c) 2013-09-17 Automatic PS uploader * Releasing 0.0+13.10.20130917-0ubuntu1, based on r36 (3069d21) 2013-09-16 Ken VanDine * implementation with a Store. Adds a store property to the Transfer, which defaults to an cuc::Scope::app scope and appended with "Incoming". The hub will copy the files to that store when the transfer gets charged and set the proper paths based on the Store::url when setting Transfer::items. (98ddf23) 2013-09-13 Ken VanDine * Updated handler names and paths to use nih_dbus_path to sanitize the names. nih_dbus_path is designed to really just return a dbus path, however this is the same function apparmor uses to mangle app_id names for policy, so it should ensure we can match consistently. This is needed for confined apps. (827a4fb) * set the APP_ID for the QML tests (821b2b6) * fix for the MockHandler so it doesn't trigger dbus activation (f8205b8) 2013-09-12 Ken VanDine * removed unused directory (e8908e2) * removed hard coded peer population (3b0454c) 2013-09-11 Ken VanDine * Don't install the click hook or helper yet. (17da992) * renamed hook (2f66a57) * merged trunk (574bf8c) * added Hook class for the helper (42eebcc) 2013-09-10 Ken VanDine * parse json data for installing peers from click hooks (aff8526) * Added Transfer::SelectionType enum, used to allow the export handler to limit selection to a single item or allow multiple items. . (88112c8) * cleaned up diff (17c7721) * cleaned up last reminents of including selection_type in the constructor and as args. (a3ac87d) 2013-09-09 Ken VanDine * Merged trunk (ecd7e55) * Added click hook, still needs to be tweaked to get type as well as id (5bfd593) * Added tests for transfer selectionType property (ca9098f) * don't allow changing selectionType unless the state is cuc::Transfer::created (6a08a57) * Make selectionType a property that can be set outside of this constructor. This adds an additional state for "created" which is the state set when the Transfer is created. When the state is "created", the selectionType can be set, however it defaults to single. This allows the source to set the selectionType after creating the transfer as a property. Once all properties are set, this moves the responsibility of calling start() on the transfer back to the source. Start should get called after all desired properties are set on the transfer. (7f2a6fe) 2013-09-06 Ken VanDine * Added a helper for install peers, will be used as a click hook (cc99274) * use QGSettings for persistent peer registration (3cd734c) * Added Transfer::SelectionType enum, used to allow the export handler to limit selection to a single item or allow multiple items. (3634f4e) 2013-09-06 Guenter Schwann * Add an app manager to start the exporter automaticly. (5f77dc1) 2013-09-06 Ken VanDine * merged content-start-exporter branch (6ae5774) * merged (c1ea8dc) * merged (53b7c5c) 2013-09-06 Guenter Schwann * Branch merged (7415269) 2013-09-06 Ken VanDine * cleaned up whitespace (9521f58) * Make handler registration more dynamic by using a QDBusServiceWatcher to to wait for a handler to register. (56d3b61) * merged cleanup from the handler_reg_wip branch (8abf342) * merged changes from content-start-export branch (da7c2b0) * cleanup (bda289d) 2013-09-06 Guenter Schwann * Add functions to stop an application, and check if an application is running already (b940730) * Use QSharedPointer for the ApplicationManager in the service (4baea0b) 2013-09-05 Ken VanDine * Merged Transfer::SelectionType branch (71f22bf) * Merged selectionType branch (cd5d9c1) * Added Transfer::SelectionType enum, used to allow the export handler to limit selection to a single item or allow multiple items. (b21ab34) 2013-09-05 Guenter Schwann * Merge handler branch (f86e5c3) * Remove unused stuff (bf4bcc6) 2013-09-05 Ken VanDine * removed includes that aren't used (c45f3d6) 2013-09-05 Automatic PS uploader * Releasing 0.0+13.10.20130905-0ubuntu1 (revision 32 from lp:content-hub). (8619778) * Releasing 0.0+13.10.20130905-0ubuntu1, based on r32 (fc652f6) 2013-09-04 Guenter Schwann * Disable the start() function from QML and remove it from documenattion and example (65cfa7a) * Fix tests (3617a73) * Branch merged (4011aef) * Start source from correct spot (5155fe3) 2013-09-04 Ken VanDine * don't clean up the aborted and collected transfers (479c386) 2013-09-04 Guenter Schwann * branch merged (c36fef9) * Don't start transfer if not in initialized state (9bd71cc) 2013-09-04 Ken VanDine * Have the handler interface call start before calling handle_export, this prevents the need for the implementation of handle_export from needing to. (3bdec3c) * Extended com::ubuntu::content::detail::Transfer to include properties for id, source, and destination. Also added export_path and import_path convenience functions which returns the object paths. (ced7478) 2013-09-04 Guenter Schwann * Fix compile of the tests (7fc3233) 2013-09-04 Ken VanDine * merged fixes from the transfer_props branch (9fd87b3) * keep source and destination as references in the constructor (273c109) 2013-09-04 Guenter Schwann * Make use of the interface (661ec9b) 2013-09-04 Ken VanDine * source and destination strings should be references (78a12bf) 2013-09-04 Guenter Schwann * Start the importer/exporter on transfer state changes (a43857b) * Merge handler_reg_wip branch (eb91b37) 2013-09-03 Ken VanDine * Make handler registration more dynamic by using a QDBusServiceWatcher to to wait for a handler to register. (4a907cc) * merged transfer_props branch (6d34f5d) * Extended com::ubuntu::content::detail::Transfer to include properties for id, source, and destination. Also added export_path and import_path convenience functions which returns the object paths. (6c876c0) 2013-09-03 Guenter Schwann * More cleanups (457c456) * More cleanups (21da0d1) * Cleanups (29fe508) 2013-09-02 Guenter Schwann * Add link flags for upstart-app-launch (1493207) * Start for an app manager (42a5827) 2013-08-31 Automatic PS uploader * Releasing 0.0+13.10.20130831-0ubuntu1 (revision 30 from lp:content-hub). (ecbc952) * Releasing 0.0+13.10.20130831-0ubuntu1, based on r30 (be026f0) 2013-08-30 Ken VanDine * improved handling of handler registration, WIP (a1efaf9) * Don't start a new instance of the service if it fails to register on the bus . (2ba3279) * Don't start a new instance of the service if it fails to register on the bus (d007727) 2013-08-30 Automatic PS uploader * Releasing 0.0+13.10.20130830-0ubuntu1 (revision 28 from lp:content-hub). (c2f2824) * Releasing 0.0+13.10.20130830-0ubuntu1, based on r28 (5e1d402) 2013-08-30 Ken VanDine * Moved some common service names and paths to common.h instead of setting them in multiple places. . (96b41ba) 2013-08-29 Automatic PS uploader * Releasing 0.0+13.10.20130829.1-0ubuntu1 (revision 26 from lp:content-hub). (3b9c6eb) * Releasing 0.0+13.10.20130829.1-0ubuntu1, based on r26 (579e793) 2013-08-29 Ken VanDine * Use const QLatin1String instead of defines (2703317) * white space cleanup (6047a1b) * Adds a Handler interface and adapter which provides get registered on the bus from the Hub client. The service side will look for registered handlers when a new transfer is created. The service then connects to transfer and calls HandleExport on the handler when the transfer state changes to in_progress. There is still no hooks in the service to call HandleImport for registered import handlers, but clients can connect to stateChanged and fire their own import when the state changes to charged. (1fb6e54) * Merged (902f339) * Moved some common service names and paths to common.h instead of setting them in multiple places. (5e765b0) * Fixes based on review from tvoss (f9bf23e) 2013-08-29 Automatic PS uploader * Releasing 0.0+13.10.20130829-0ubuntu1 (revision 24 from lp:content-hub). (936ed82) * Releasing 0.0+13.10.20130829-0ubuntu1, based on r24 (5cd8413) 2013-08-28 Ken VanDine * merged trunk (0d2c93f) 2013-08-28 Guenter Schwann * More robust handling of charge and collect of the transfer in QML. (c94dbc6) * Add missing header change (a2baf91) * Fix typos (26a7a0d) 2013-08-28 Ken VanDine * Don't change the value of items if the state is already charged (27f7ab7) * slightly improved error handling and cleaned and cleaned up a little debug output (bab72e2) * cleaned up more includes (33afeb6) * cleaned up includes and headers (f225e0a) * revert stateChanged change in the qml bindings (d83dcd7) * Added Handler tests (04583d9) * removed unused includes (0ade9e1) 2013-08-28 Guenter Schwann * use null instead of undefined in QML (4d86129) 2013-08-28 Ken VanDine * cleaned up an unneeded handler instance (9d606ed) 2013-08-28 Guenter Schwann * Compile fix (1e93c8a) * udpate example and documentation; remove code duplication from importContent() (6a8953c) * The direction property is constant (c250897) * Add direction property to ContentTransfer to make sure ony the exporter can charge, and the importer collect (b9a1a64) * Add missing header change (95fa0da) * Cache transfer state (d871779) * reuse the ContentTransfer object during import; ensure the items property is filled if needed (3063c3f) 2013-08-27 Ken VanDine * use a listview to show the images (9d7e286) * Listen for stateChanged and call handle_import when the transfer is charged (d4b5d0c) * Make sure we get a valid iterator when looking for a handler (5173e17) * merged trunk (60bfdb2) * change default peer for pictures to gallery-app (97a8103) * Hook up the exporter to the stateChanged signal to initiate an export (93dd629) 2013-08-27 Automatic PS uploader * Releasing 0.0+13.10.20130827.3-0ubuntu1 (revision 22 from lp:content-hub). (23efb10) * Releasing 0.0+13.10.20130827.3-0ubuntu1, based on r22 (a7bd39e) 2013-08-27 Guenter Schwann * Add QML examples for import and export. (4ab313a) * Use qmlRegisterSingletonType to register the ContentHub. (ffa4754) 2013-08-27 Automatic PS uploader * Releasing 0.0+13.10.20130827.2-0ubuntu1 (revision 19 from lp:content-hub). (abae405) * Releasing 0.0+13.10.20130827.2-0ubuntu1, based on r19 (6571980) * Releasing 0.0+13.10.20130827.1-0ubuntu1 (revision 18 from lp:content-hub). (85e9fef) 2013-08-27 Guenter Schwann * Add to start the transfer (4286474) * Use qmlRegisterSingletonType to register the ContentHub (47826be) 2013-08-27 Automatic PS uploader * Releasing 0.0+13.10.20130827.1-0ubuntu1, based on r18 (5ea52b9) * Releasing 0.0+13.10.20130827-0ubuntu1 (revision 17 from lp:content-hub). (067cb77) * Releasing 0.0+13.10.20130827-0ubuntu1, based on r17 (8604ca7) 2013-08-26 Michael Terry * Some minor packaging cleanup. (4c76bd6) * Let source format 1.0 be implicit (04817b5) * Some packaging cleanup (e520745) 2013-08-26 Ken VanDine * cleaned up examples (19a404b) * fixed changing state to charged (cb8be16) * Handle emitting stateChanged (c117e28) 2013-08-26 Guenter Schwann * Pick mode is off by default in export example (63f09b2) * Add examples for import and export (42a90c1) 2013-08-26 Ken VanDine * crude attempt to get access to Transfer (8b75587) 2013-08-25 Ken VanDine * Added Handler interface on dbus. register_import_export_handler now creates the HandlerAdapter in the hub client and registers it on the bus under com.ubuntu.content.handler. and adds the peer_id and object path to a map of registered handlers. (bcdf671) * use functions in utils.cpp (abadb50) * Added utils.cpp for a few functions we need to run in the service that aren't class specific and shouldn't get exposed in the API (af34d33) 2013-08-23 Ken VanDine * cleanup (0811973) * wip (ae70f21) 2013-08-23 Guenter Schwann * Handle import and export requests from hub for QML. (78fc632) * Typo fix and compile fix (7c573e4) * Trunk merged (1658005) * ContentItem and ContentPeer use their service counterpart as member. (f3de36c) * Get the actual items from HUB to pass them to QML (1360bd0) * Actually return the selected items to the hub (9adba5d) 2013-08-23 Łukasz 'sil2100' Zemczak * Packaging review. (5e8ce56) 2013-08-23 Ken VanDine * wip (b6f1685) 2013-08-23 Guenter Schwann * Handle import and export requests from hub (34789ab) 2013-08-23 Łukasz 'sil2100' Zemczak * .install file too... (2a2fc0a) * Rename the plugin again (3657374) * Changed the plugin name (a484dce) * Update descriptions (8aef9fe) 2013-08-23 Guenter Schwann * Merge trunk (3452b83) * Add function to convert from Content::Type to Type directly (1c994f4) * More QML tests, work on QML documentation. (cb8bbaf) * ContentItem and ContentPeer use their service counterpart as member (f588ab5) 2013-08-22 Ken VanDine * wip (439d04d) * wip (e0671cf) 2013-08-22 Łukasz 'sil2100' Zemczak * Basic packaging review (2554a26) 2013-08-22 Ken VanDine * replace "." with "_" in the peer_id to create valid object paths . (705046a) 2013-08-22 Guenter Schwann * More QML tests, work on QML documentation (2a8c467) 2013-08-22 Ken VanDine * Moved the dbus object path sanitizing out to a separate function and replace all invalid characters (9bd83cc) 2013-08-22 Guenter Schwann * Add and register an import export handler. (8f2b6e4) 2013-08-22 Ken VanDine * merged object path fix (86b1d5e) * merged trunk (20d7848) * replace "." with "_" in the peer_id to create valid object paths (80d8bdc) 2013-08-22 Guenter Schwann * The import/export forward the transfer objects (776053f) 2013-08-22 Ken VanDine * Added dbus service. This includes a PeerRegistry that currently get hard coded with peers on startup, in the future this registry will be replaced with something more persistent. (fd1ff6a) 2013-08-22 Guenter Schwann * Put the QML bindings into their own package. (832fd6b) 2013-08-22 Ken VanDine * put list and populate in an anonymous namespace (a94fc66) * improved iterating the map of peers (25c63bc) 2013-08-22 Guenter Schwann * Fix header guard (5358920) * Add and register an import export handler (69cba1b) 2013-08-22 Ken VanDine * WIP handler dbus interface (fb749cb) 2013-08-22 Guenter Schwann * Put the QML bindings into their own package (c82ea90) * Start for QML bindings. (98b8008) * Fix QML test on CI (ddcdac4) * Add more Qt dependencies (a112d16) * Use C++ style cast instead of C style cast (467a6d7) * use hub query for peers; wire up to hub to import content (b5a89ac) 2013-08-21 Ken VanDine * cleanup importer example (38fab09) * removed unused files (a2df338) * merged dbus service cleanup (a30fe18) * Cleanup (58093f8) 2013-08-21 Guenter Schwann * Add qt5declarative dependency (580e0cc) * Add first test for QML (f1d3f0f) * Move plugin to Ubuntu/Content sub directory (for future testing) (08b0127) * Add QML binding (interface only for now) (6ed963c) 2013-08-20 Ken VanDine * cleanup importer example (fa50ede) 2013-08-19 Ken VanDine * Added examples (ee7c7ad) * add dummy peers (b197d08) * Added PeerRegistry subclass (85289c8) 2013-08-16 Ken VanDine * Packaging cleanup (ec0c48e) * Added content-hub package (d0b0166) * Added dbus service file (7488afa) * Added basic dbus server for content-hub-service (17cecc1) 2013-08-15 Guenter Schwann * Add constructor implementation for ImportExportHandler. (b6530f0) * Add google-mock dependecy for the tests (a09a960) * Adding doxygen and lcov as dependency (5cf0583) * Add Qt dependency (9e5d6d5) * Add constructor implementation for ImportExportHandler (b109fd3) 2013-08-14 Thomas Voß * Merge packaging. (ed3a6af) * Merge trunk. (33e63c4) 2013-08-13 Ken VanDine * initial packaging (6d89593) * Install the headers (5443801) 2013-07-16 Thomas Voß * Added an example snippet for importing pictures. (5f73ca0) * Add a Mainpage for the doxygen documentation. (767cda8) * Wired up transfer test case. (830cde6) 2013-07-15 Thomas Voß * Add state query method to dbus interface. (d0f7c80) * Add transfer implementation service side. (34090ec) * Clean up src directory and move dbus to detail. (fa69a13) * Initial checkin. (e819494) content-hub-1.1.1/README.md000066400000000000000000000026201456121157600152270ustar00rootroot00000000000000# Content Hub ## What is content-hub? content-hub is a mediation service to let applications share content between them even if they are not running at the same time. For a more detailed description, please have a look at: doc/Mainpage.md ## How do I get all building dependencies? Build dependencies are already listed in the debian/control file. To get them use the following command: sudo apt-get build-dep content-hub ## How do I compile the code? To compile the code run the following command from the branch directory: ``` mkdir build cd build cmake .. make ``` ## How do I run the test cases? To run the test cases use the following command: ``` cd build/tests dbus-test-runner -t make -p test ``` ## How do I build the packages? To build the pacakges run the following command: ``` debuild -uc -us ``` ## How do I install the code? One way to do it one the code is compiled is: ``` make install ``` However, the recommended way to do it is by installing the packages built manually. ## i18n: Translating Content Hub into your Language You can easily contribute to the localization of this project (i.e. the translation into your language) by visiting (and signing up with) the Hosted Weblate service: https://hosted.weblate.org/projects/lomiri/content-hub The localization platform of this project is sponsored by Hosted Weblate via their free hosting plan for Libre and Open Source Projects. content-hub-1.1.1/contenthub.qmlproject000066400000000000000000000005251456121157600202250ustar00rootroot00000000000000/* File generated by Qt Creator, version 2.5.2 */ import QmlProject 1.1 Project { mainFile: "examples/export-qml/export.qml" /* Include .qml, .js, and image files from current directory and subdirectories */ QmlFiles { directory: ["examples/export-qml", "examples/import-qml", "import/Lomiri/Content"] } } content-hub-1.1.1/debian/000077500000000000000000000000001456121157600151725ustar00rootroot00000000000000content-hub-1.1.1/debian/Jenkinsfile000066400000000000000000000001011456121157600173460ustar00rootroot00000000000000@Library('ubports-build-tools') _ buildAndProvideDebianPackage() content-hub-1.1.1/debian/apparmor/000077500000000000000000000000001456121157600170135ustar00rootroot00000000000000content-hub-1.1.1/debian/apparmor/content-hub-testability000066400000000000000000000005561456121157600235250ustar00rootroot00000000000000# vim:syntax=apparmor # Author: Ken VanDine # #include profile "content-hub-test-ok" { #include #include /etc/issue r, } profile "content-hub-test-bad" { #include #include audit deny /etc/issue r, } content-hub-1.1.1/debian/changelog000066400000000000000000001015551456121157600170530ustar00rootroot00000000000000content-hub (1.1.1) unstable; urgency=medium * Upstream-provided Debian package for content-hub. See upstream ChangeLog for recent changes. -- UBports developers Thu, 08 Feb 2024 18:46:38 +0100 content-hub (1.1.0) unstable; urgency=medium * Upstream-provided Debian package for content-hub. See upstream ChangeLog for recent changes. -- UBports developers Sun, 15 Oct 2023 08:34:48 +0200 content-hub (1.0.2) unstable; urgency=medium * Upstream-provided Debian package for content-hub. See upstream ChangeLog for recent changes. -- UBports developers Tue, 14 Feb 2023 11:30:33 +0100 content-hub (1.0.1) unstable; urgency=medium * Upstream-provided Debian package for content-hub. See upstream ChangeLog for recent changes. -- UBports developers Sun, 05 Feb 2023 00:39:04 +0100 content-hub (1.0.0) focal; urgency=medium [ Marius Gripsgard ] * Imported to UBports * Rename to lomiri * Switch to lomiri-api * Fix qml issue * Enable tests [ Guido Berhoerster ] * Rename com.canonical.Unity.FocusInfo to com.lomiri.Shell.FocusInfo * Add missing build dependency on graphviz * Switch from url-dispatcher to lomiri-url-dispatcher -- Marius Gripsgard Fri, 16 Apr 2021 03:42:05 +0200 content-hub (0.2+17.04.20161201.1-0ubuntu1) zesty; urgency=medium [ William Hua ] * Add GLib bindings (LP: #1624437) (LP: #1624437) -- Ken VanDine Thu, 01 Dec 2016 18:22:34 +0000 content-hub (0.2+17.04.20161128-0ubuntu1) zesty; urgency=medium * Fix build failure on zesty due to googletest 1.8. Also refactored tests/acceptance-tests/CMakeLists.txt to make adding tests less cumbersome. (LP: #1644062) -- Ken VanDine Mon, 28 Nov 2016 17:39:58 +0000 content-hub (0.2+17.04.20161107-0ubuntu1) zesty; urgency=medium * Skip the UAL lookup when run under autopkgtests to prevent an abort from UAL -- Ken VanDine Mon, 07 Nov 2016 15:02:18 +0000 content-hub (0.2+17.04.20161026-0ubuntu1) zesty; urgency=medium * Use UAL to get iconPath instead of parsing the desktop file ourselves -- Ken VanDine Wed, 26 Oct 2016 16:56:45 +0000 content-hub (0.2+16.10.20160914-0ubuntu1) yakkety; urgency=medium * Build with hardening=+all (LP: #1597453) -- Ken VanDine Wed, 14 Sep 2016 14:30:52 +0000 content-hub (0.2+16.10.20160830-0ubuntu1) yakkety; urgency=medium [ Ken VanDine ] * Pasteboard implementation [ Florian Boucault ] * Fixes for crossbuilding. -- Ken VanDine Tue, 30 Aug 2016 13:41:21 +0000 content-hub (0.1+16.10.20160825-0ubuntu1) yakkety; urgency=medium * Added isolation-machine to test restrictions as these tests need a working upstart user session. -- Ken VanDine Thu, 25 Aug 2016 10:12:31 +0000 content-hub (0.1+16.10.20160822-0ubuntu1) yakkety; urgency=medium * No change rebuild for UAL ABI change -- Ted Gould Mon, 22 Aug 2016 17:01:38 +0000 content-hub (0.1+16.10.20160809-0ubuntu1) yakkety; urgency=medium * build dep on qttools5-dev-tools for qdoc -- Ken VanDine Tue, 09 Aug 2016 14:15:14 +0000 content-hub (0.1+16.10.20160715-0ubuntu1) yakkety; urgency=medium * Filter current app out of the peer model (LP: #1603508) -- Ken VanDine Fri, 15 Jul 2016 19:12:46 +0000 content-hub (0.1+16.10.20160610.2-0ubuntu1) yakkety; urgency=medium * Ensure all the properties are set when the url is set on a ContentItem (LP: #1571361) -- Ken VanDine Fri, 10 Jun 2016 14:02:46 +0000 content-hub (0.1+16.10.20160602-0ubuntu1) yakkety; urgency=medium * Call qmlplugindump with -noinstantiate -- Ken VanDine Thu, 02 Jun 2016 18:36:44 +0000 content-hub (0.1+16.04.20160309-0ubuntu1) xenial; urgency=medium * Fix documentation for toDataURI method (LP: #1555116) -- Michael Sheldon Wed, 09 Mar 2016 14:03:08 +0000 content-hub (0.1+16.04.20160129.1-0ubuntu1) xenial; urgency=medium * Combine share and import peers (LP: #1539674) -- Ken VanDine Fri, 29 Jan 2016 17:31:56 +0000 content-hub (0.1+16.04.20151216.1-0ubuntu1) xenial; urgency=medium [ Michael Sheldon ] * Set destination app-id as download metadata -- CI Train Bot Wed, 16 Dec 2015 16:17:10 +0000 content-hub (0.1+16.04.20151124-0ubuntu1) xenial; urgency=medium [ CI Train Bot ] * New rebuild forced. [ Ken VanDine ] * Added ogg file (the default Ubuntu ringtone) for testing music exports and support music exports in content-hub-test-exporter -- Ken VanDine Tue, 24 Nov 2015 11:09:05 +0000 content-hub (0.1+16.04.20151029.1-0ubuntu1) xenial; urgency=medium [ CI Train Bot ] * Resync trunk. added: po/et.po [ Ken VanDine ] * Drop the ElideMiddle in the ContentPeerPicker and add WordWrap to match the grid in unity8 * Use libertine to query for apps installed in containers * use ubuntu_app_launch_application_info to get the dir and filename for desktop files -- Ken VanDine Thu, 29 Oct 2015 13:59:36 +0000 content-hub (0.1+15.10.20150922-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Major version bump [ CI Train Bot ] * No-change rebuild. -- Ken VanDine Tue, 22 Sep 2015 01:19:46 +0000 content-hub (0.0+15.10.20150909-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Fixed crash when the service is passed an invalid type via dbus (LP: #1472026) [ Michael Sheldon ] * Add an "Undefined" content type to QML bindings so we can avoid making unnecessary peer look ups when the content type hasn't yet been set now that peers can register for Unknown. [ Robert Ancell ] * Drop unused include that makes build fail unless Qt5Gui pkg-config file is used. -- Ken VanDine Wed, 09 Sep 2015 16:58:39 +0000 content-hub (0.0+15.10.20150821.2-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Don't swallow QEvent::ApplicationDeactivate (LP: #1485222) * added hasPending property on ContentHub (LP: #1487073) * generate plugins.qmltypes (LP: #1483626) -- CI Train Bot Fri, 21 Aug 2015 16:36:06 +0000 content-hub (0.0+15.10.20150813-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Fixed property errors in example code (LP: #1484198) * create the local content-hub directory if needed when the hook is run (LP: #1484184) -- CI Train Bot Thu, 13 Aug 2015 13:31:51 +0000 content-hub (0.0+15.10.20150724-0ubuntu2~gcc5.1) wily; urgency=medium * No-change test rebuild for g++5 ABI transition -- Steve Langasek Mon, 27 Jul 2015 19:14:27 +0000 content-hub (0.0+15.10.20150724-0ubuntu1) wily; urgency=medium [ CI Train Bot ] * New rebuild forced. [ Ken VanDine ] * No change rebuild for ubuntu-download-manager -- CI Train Bot Fri, 24 Jul 2015 17:16:55 +0000 content-hub (0.0+15.10.20150703-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Added ContentType.Events Added tests for the well known types (LP: #1464244) -- CI Train Bot Fri, 03 Jul 2015 13:22:31 +0000 content-hub (0.0+15.10.20150701-0ubuntu1) wily; urgency=medium [ CI Train Bot ] * Resync trunk. [ Renato Araujo Oliveira Filho ] * Fixed header divider color for ContentPeerPicker11. (LP: #1470557) -- CI Train Bot Wed, 01 Jul 2015 21:53:29 +0000 content-hub (0.0+15.10.20150615.3-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Added support for registering a source or destination as handlers for Type::all -- CI Train Bot Mon, 15 Jun 2015 18:21:22 +0000 content-hub (0.0+15.10.20150608-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Make the import and share testability peers return 1 if the transfer is aborted. Added url-dispatcher autopkgtest. -- CI Train Bot Mon, 08 Jun 2015 16:48:39 +0000 content-hub (0.0+15.10.20150603-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * SECURITY UPDATE: file disclosure via unchecked AppArmor profile (LP: #1456628) Don't allow exporting of files that aren't allowed by the source apparmor profile CVE-2015-1327 (LP: #1456628) -- CI Train Bot Wed, 03 Jun 2015 17:45:36 +0000 content-hub (0.0+15.10.20150518-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Added url-dispatcher integration. This allows export and share requests to be initiated by opening a url. -- CI Train Bot Mon, 18 May 2015 13:16:45 +0000 content-hub (0.0+15.04.20150422-0ubuntu1) vivid; urgency=medium [ Ken VanDine ] * Added ContentType.Text as a well known type Added ContentItem.text property for serialized content (LP: #1430460) * Don't use a unicode apostrophe in the docs * Fixed qdoc syntax error for the ContentPeerPicker::peerSelected and ContentPeerPicker::cancelPressed signals -- CI Train Bot Wed, 22 Apr 2015 16:45:39 +0000 content-hub (0.0+15.04.20150331-0ubuntu1) vivid; urgency=medium [ Ken VanDine ] * When requesting an import from an unknown peer, abort the transfer. This is most likely to occur when requesting the default peer for a ContentType that has no default registered. (LP: #1429695) -- CI Train Bot Tue, 31 Mar 2015 14:10:11 +0000 content-hub (0.0+15.04.20150319-0ubuntu1) vivid; urgency=medium [ Ken VanDine ] * Abort transfers when a file already exists matching the requested name and ContentStore. (LP: #1429687) -- CI Train Bot Thu, 19 Mar 2015 15:27:11 +0000 content-hub (0.0+15.04.20150123-0ubuntu1) vivid; urgency=low [ Michael Sheldon ] * Use the theme background so that fonts are visible with dark apps (LP: #1384490) -- Ubuntu daily release Fri, 23 Jan 2015 16:56:52 +0000 content-hub (0.0+15.04.20141202-0ubuntu1) vivid; urgency=low [ Michael Sheldon ] * Handle content peer model loading asynchronously (LP: #1390096) -- Ubuntu daily release Tue, 02 Dec 2014 14:17:57 +0000 content-hub (0.0+15.04.20141126-0ubuntu1) vivid; urgency=low [ Ken VanDine ] * Added test peers for automated testing of export, import and shares. [ CI bot ] * Resync trunk -- Ubuntu daily release Wed, 26 Nov 2014 15:26:15 +0000 content-hub (0.0+15.04.20141120-0ubuntu1) vivid; urgency=low [ Ken VanDine ] * Fixed conflict with nih-dbus and our own i18n wrapper (LP: #1394211) -- Ubuntu daily release Thu, 20 Nov 2014 04:22:47 +0000 content-hub (0.0+15.04.20141110-0ubuntu1) vivid; urgency=low [ Ken VanDine ] * Added EBooks to well known types (LP: #1383732) [ CI bot ] * Resync trunk [ Ubuntu daily release ] * New rebuild forced [ Michael Sheldon ] * Set the caller on the ContentTransferHint dialog to allow it to be destroyed safely when its parent is destroyed. (LP: #1377334) * Update click hook wrapper to account for change in dbus-session file. (LP: #1390095) -- Ubuntu daily release Mon, 10 Nov 2014 16:31:46 +0000 content-hub (0.0+14.10.20141014-0ubuntu1) 14.09; urgency=low [ CI bot ] * Resync trunk [ Ubuntu daily release ] * New rebuild forced [ Michael Sheldon ] * Add support for receiving directories of unzipped files from download manager. (LP: #1365993) -- Ubuntu daily release Tue, 14 Oct 2014 16:11:13 +0000 content-hub (0.0+14.10.20141010-0ubuntu1) utopic; urgency=low [ Sebastien Bacher ] * Include missing sources in the translation template, use the custom rule to update it and load the translations from the correct domain -- Ubuntu daily release Fri, 10 Oct 2014 16:16:32 +0000 content-hub (0.0+14.10.20141009-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Fall back to a copy if move fails (LP: #1373086) [ Michael Sheldon ] * Fix packaging for translations. -- Ubuntu daily release Thu, 09 Oct 2014 14:44:05 +0000 content-hub (0.0+14.10.20141007-0ubuntu1) utopic; urgency=low [ Sebastien Bacher ] * use X-Ubuntu-Use-Langpack so translations are imported (LP: #1378324) -- Ubuntu daily release Tue, 07 Oct 2014 14:44:14 +0000 content-hub (0.0+14.10.20140919-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Fixed handling of translated strings from g_app_info_get_display_name (LP: #1368770) (LP: #1368770) -- Ubuntu daily release Fri, 19 Sep 2014 14:40:29 +0000 content-hub (0.0+14.10.20140915-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Build with dh_translations (LP: #1359166) (LP: #1359166) * Improved uncreatable message for ContentTransfer -- Ubuntu daily release Mon, 15 Sep 2014 20:50:10 +0000 content-hub (0.0+14.10.20140828-0ubuntu1) utopic; urgency=low [ Michael Sheldon ] * Expose the source and destination app IDs on transfers. -- Ubuntu daily release Thu, 28 Aug 2014 03:09:56 +0000 content-hub (0.0+14.10.20140815-0ubuntu1) utopic; urgency=low [ Michael Sheldon ] * Add a cancel button to the ContentTransferHint. -- Ubuntu daily release Fri, 15 Aug 2014 17:49:09 +0000 content-hub (0.0+14.10.20140806.2-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Add contentType property to Transfer -- Ubuntu daily release Wed, 06 Aug 2014 20:09:47 +0000 content-hub (0.0+14.10.20140801.4-0ubuntu1) utopic; urgency=medium [ Ken VanDine ] * debian/control - Renamed the binary for the qml module to qtdeclarative5-ubuntu-content1 to reflect support for API version 1.x instead of 0.1 [ Michael Sheldon ] * Remove the Ubuntu shape from the save icon in the download snap decision. (LP: #1350281) * Transfer entire content Item objects over dbus, instead of just their URL component. Adds name property to C++ backend and connects to existing QML property. * Ignore unused function warnings (new in g++ 4.9), as utils.cpp defines a number of static functions that may not be used everywhere. * Make the ContentPeerPicker's header text customisable and replace the bottom cancel button with new header style cancel. [ Ubuntu daily release ] * New rebuild forced -- Ubuntu daily release Fri, 01 Aug 2014 20:07:29 +0000 content-hub (0.0+14.10.20140710-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Added ContentItem.move function to allow pure QML apps to relocate local files collected. -- Ubuntu daily release Thu, 10 Jul 2014 20:10:35 +0000 content-hub (0.0+14.10.20140709-0ubuntu1) utopic; urgency=low [ Michael Sheldon ] * Don't close/switch applications after an export has been finalized. * Don't make the peer picker explicitly invisible, provide a background for the peer picker and anchor the bottom of the app view appropriately rather than calculating height. -- Ubuntu daily release Wed, 09 Jul 2014 17:38:25 +0000 content-hub (0.0+14.10.20140704-0ubuntu1) utopic; urgency=low [ Michael Sheldon ] * Update theme used for resolving system icons (e.g. as used by Debian packages) to use "suru" theme. -- Ubuntu daily release Fri, 04 Jul 2014 14:20:38 +0000 content-hub (0.0+14.10.20140703-0ubuntu1) utopic; urgency=low [ Michael Sheldon ] * Add Debian friendly locations to content-hub-peer-hooks search locations [ Ubuntu daily release ] * New rebuild forced -- Ubuntu daily release Thu, 03 Jul 2014 16:29:32 +0000 content-hub (0.0+14.10.20140618-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Added objectName to the cancel button in the ContentPeerPicker, it'll be useful for autopilot tests. * Don't abort downloads that haven't been charged yet when a new transfer is created. This will leave multiple transfers from downloads which haven't been charged remain in active_transfers until they have been charged. (LP: #1326535) Having multiple downloaded transfers in active_transfers means when the destination starts or resumes, then all the completed downloads will get charged which will send multiple signals to the destination. (LP: #1326535) * Added toDataURI to ContentItem -- Ubuntu daily release Wed, 18 Jun 2014 15:58:44 +0000 content-hub (0.0+14.10.20140604-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Check for completed downloads when an import handler is registered, charge if necessary. This will trigger an import for completed downloads that might have been dismissed in the notification. * Add a wrapper for the click hook to ensure the dbus session is properly exported (LP: #1324969) (LP: #1324969) * Use an EventFilter to get ApplicationActivate events, to notify the service when a handler gains focus. This is useful to charge completed downloads that have been dismissed in the snap decision. * Added new well known types for videos and links. Set gallery as default for videos. [ Michael Sheldon ] * Display errors reported by download manager as notifications * Show a message in the peer picker when no apps are available for the specified content type. -- Ubuntu daily release Wed, 04 Jun 2014 16:50:50 +0000 content-hub (0.0+14.10.20140601-0ubuntu1) utopic; urgency=low [ Ted Gould ] * Name change for UAL -- Ubuntu daily release Sun, 01 Jun 2014 20:58:54 +0000 content-hub (0.0+14.10.20140521.1-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * reorder virtual functions added with download support, to fix abi compatibility. (LP: #1321304) [ Michael Sheldon ] * Remove aliases for GridView properties that no longer exist. -- Ubuntu daily release Wed, 21 May 2014 15:01:45 +0000 content-hub (0.0+14.10.20140515.1-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Use libnotify to send a snap decision with an Open action for downloads. Added translation support, needed for the strings in the notification. [ Michael Sheldon ] * Use libnotify to send a snap decision with an Open action for downloads. Added translation support, needed for the strings in the notification. -- Ubuntu daily release Thu, 15 May 2014 21:02:30 +0000 content-hub (0.0+14.04.20140415-0ubuntu1) trusty; urgency=low [ Michael Sheldon ] * Fixes the clipping setting on the ResponsiveGridView when being used with dynamically loaded ContentPeerModels. * Excludes ResponsiveGridView from documentation creation and provides additional summaries for QML components. -- Ubuntu daily release Tue, 15 Apr 2014 22:01:11 +0000 content-hub (0.0+14.04.20140402-0ubuntu2) trusty; urgency=medium * No-change rebuild for shlib changes in qtbase and qtdeclarative. -- Ricardo Salveti de Araujo Mon, 14 Apr 2014 11:46:04 -0300 content-hub (0.0+14.04.20140402-0ubuntu1) trusty; urgency=low [ Loïc Minier ] * Downgrade content-hub Recommends to a Suggests as we don't want content-hub pulled via ubuntu-sdk on developer desktops. [ Ken VanDine ] * protect against queries for Type::unknown (LP: #1293463) * Replace a couple missed qDebug lines for logging * Don't unref the g_icon, the value belongs to app * Ensure m_defaultSources is a StringList before attempting to use it as a list * ContentPeerPicker: Make headers translatable and use a ResponsiveGridView for the devices grid to match the apps grid. ContentPeerPicker: hide the devices section until we have a way to populate it [ Javier Collado ] * Added README file (LP: #1274899) [ Dimitri John Ledkov ] * Exit quicker, if there is nothing to do. (LP: #1287674) (LP: #1287674) [ Michael Sheldon ] * Fixes updating of the ContentPeerModel when using Loader and changing ContentType or ContentHandler dynamically and ensures that ContentPeerModel Loader doesn't begin loading the model until the peer picker becomes visible (avoiding delaying app start-up time). * Make qdoc based documentation compatible with the Qt 5.2 version of qdoc. * Fixes version number of import statements in QML documentation. -- Ubuntu daily release Wed, 02 Apr 2014 14:46:54 +0000 content-hub (0.0+14.04.20140321-0ubuntu1) trusty; urgency=low [ Ken VanDine ] * Adds support for multiple handler types: source, destination and share. Enforce single transfer per peer, if a second transfer request is made from a peer that already has an unfinished transfer, cancel the previous one. This is needed as long as apps are required to be single instance. * If the transfer isn't persistent, attempt to hardlink instead of copying. If the link fails, fallback to a copy. * If the default source is set to anything other than a click appId triplet, fallback to the legacy APP_ID. Changed default source for contacts to the legacy APP_ID for address-book-app [ Ubuntu daily release ] * New rebuild forced -- Ubuntu daily release Fri, 21 Mar 2014 00:46:57 +0000 content-hub (0.0+14.04.20140307-0ubuntu1) trusty; urgency=low * New rebuild forced -- Ubuntu daily release Fri, 07 Mar 2014 06:59:44 +0000 content-hub (0.0+14.04.20140306-0ubuntu1) trusty; urgency=low [ Ken VanDine ] * Added Type::Known::contacts. Note: there is no associated default store for contacts under any scope. Data for contacts doesn't persist. * Changed defaults to a triplet used to build the appid. Bumped build depends for libupstart-app-launch2-dev needed for converting the triplet to an appid. -- Ubuntu daily release Thu, 06 Mar 2014 16:50:24 +0000 content-hub (0.0+14.04.20140304-0preview1) trusty; urgency=medium * Support for more handler types, including sharing * Marshal peer details like name and icon from the service, so confined apps can show them. * Improved QML bindings * New ContentPeerPicker QML component -- Ken VanDine Mon, 27 Jan 2014 14:09:38 -0500 content-hub (0.0+14.04.20131209.1-0ubuntu1) trusty; urgency=low [ Ken VanDine ] * Filled in the missing docstrings for the QML bindings . * Documentation cleanup, fixes button alignment and uses MainView in the QML code example. * allow ContentPeer to be creatable in QML, this makes it more obvious how to deal with the list returned by knownSourcesForType. [ Ted Gould ] * Upgrading to libupstart-app-launch v2. [ Alexandre Abreu ] * fix small documentation nit [ Ubuntu daily release ] * Automatic snapshot from revision 69 -- Ubuntu daily release Mon, 09 Dec 2013 09:59:43 +0000 content-hub (0.0+14.04.20131025-0ubuntu1) trusty; urgency=low [ Ken VanDine ] * return a QVariantList from knownSourcesForType so the QML bindings can expose a list of peers, fixes (LP: #1236932). (LP: #1236932) * Added qdoc docs for QML bindings. [ Ubuntu daily release ] * Automatic snapshot from revision 63 -- Ubuntu daily release Fri, 25 Oct 2013 11:04:43 +0000 content-hub (0.0+13.10.20131011-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Make libcontent-hub0 recommend content-hub . * invoke the destination when the transfer is charged . * Added a click hook, which iterates installed known peers, removing them when they are no longer installed and adding peers when needed. [ Robert Bruce Park ] * New component for the importer to indicate an ongoing transfer. [ Guenter Schwann ] * New component for the importer to indicate an ongoing transfer. * Quit the source app on charged/abort when it was started by the content hub. [ Ubuntu daily release ] * Automatic snapshot from revision 60 -- Ubuntu daily release Fri, 11 Oct 2013 05:41:10 +0000 content-hub (0.0+13.10.20131007-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * added Breaks for gallery-app <= 0.0.67+13.10.20130924.1-0ubuntu1 . * Don't invoke the source application until the destination has called start(). This will prevent source app from getting raised before the destination app expects it, preventing an unexpected interuption in the work flow. [ Ubuntu daily release ] * Automatic snapshot from revision 54 -- Ubuntu daily release Mon, 07 Oct 2013 10:51:34 +0000 content-hub (0.0+13.10.20131001-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Added basic pkgconfig file . [ Ubuntu daily release ] * Automatic snapshot from revision 51 -- Ubuntu daily release Tue, 01 Oct 2013 00:20:01 +0000 content-hub (0.0+13.10.20130930-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Pulled back in all the changes that were reverted in rev 47. Bug (LP: #1231368) seemed to be caused by gallery-app needing a rebuild against this version of content-hub. (LP: #1231368) [ Ubuntu daily release ] * Automatic snapshot from revision 49 -- Ubuntu daily release Mon, 30 Sep 2013 20:00:26 +0000 content-hub (0.0+13.10.20130927-0ubuntu1) saucy; urgency=low [ Sebastien Bacher ] * Revert previous upload since it's buggy (lp: #1231368) [ Ubuntu daily release ] * Automatic snapshot from revision 47 -- Ubuntu daily release Fri, 27 Sep 2013 10:32:55 +0000 content-hub (0.0+13.10.20130925-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Adds a store property to the Transfer, which defaults to an cuc::Scope::app scope and appended with "HubIncoming/${id}". The hub will copy the files to that store when the transfer gets charged and set the proper paths based on the Store::url when setting Transfer::items. To handle cleaning up temporary copies of files, this adds an additional state to the tranfer "finalized" and a finalize function to the API. When the importer calls finalize, the hub will purge the copied files, but only if the destination didn't specify their own persistent content store. On purge, we only remove the files if the store is set to the default used by the hub. If the destination set a different store, we leave the files there. This is an important implementation detail, without setting a persistent store, a QML app wouldn't have a way to copy the files out of the incoming directory into their own persistent location. Allowing the destination app to setStore, gives it a way to keep the files in it's own store for future access. If the destination doesn't set the store, we assume the destination app is done with the content before calling finalize. * fixed typo in Type enum. * Added a name property to Peer using GAppInfo to get a friendly name. [ Ubuntu daily release ] * Automatic snapshot from revision 45 -- Ubuntu daily release Wed, 25 Sep 2013 11:05:41 +0000 content-hub (0.0+13.10.20130920-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * fix for the MockHandler so it doesn't trigger dbus activation . * explicitly build dep on libglib2.0-dev . * Updated handler names and paths to use nih_dbus_path to sanitize the names. nih_dbus_path is designed to really just return a dbus path, however this is the same function apparmor uses to mangle app_id names for policy, so it should ensure we can match consistently. This is needed for confined apps. * Use QGSettings for persistent peer registration and set defaults. Also adds a helper install peers, which will be used as a click hook, but doesn't get installed yet. [ Ubuntu daily release ] * Automatic snapshot from revision 41 -- Ubuntu daily release Fri, 20 Sep 2013 10:54:49 +0000 content-hub (0.0+13.10.20130917-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Make handler registration more dynamic by using a QDBusServiceWatcher to to wait for a handler to register. * Added Transfer::SelectionType enum, used to allow the export handler to limit selection to a single item or allow multiple items. . [ Guenter Schwann ] * Add an app manager to start the exporter automaticly. [ Ubuntu daily release ] * Automatic snapshot from revision 36 -- Ubuntu daily release Tue, 17 Sep 2013 12:08:04 +0000 content-hub (0.0+13.10.20130905-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Extended com::ubuntu::content::detail::Transfer to include properties for id, source, and destination. Also added export_path and import_path convenience functions which returns the object paths. [ Ubuntu daily release ] * Automatic snapshot from revision 32 -- Ubuntu daily release Thu, 05 Sep 2013 04:54:11 +0000 content-hub (0.0+13.10.20130831-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Don't start a new instance of the service if it fails to register on the bus . [ Ubuntu daily release ] * Automatic snapshot from revision 30 -- Ubuntu daily release Sat, 31 Aug 2013 06:39:18 +0000 content-hub (0.0+13.10.20130830-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Moved some common service names and paths to common.h instead of setting them in multiple places. . [ Ubuntu daily release ] * Automatic snapshot from revision 28 -- Ubuntu daily release Fri, 30 Aug 2013 12:44:22 +0000 content-hub (0.0+13.10.20130829.1-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Adds a Handler interface and adapter which provides get registered on the bus from the Hub client. The service side will look for registered handlers when a new transfer is created. The service then connects to transfer and calls HandleExport on the handler when the transfer state changes to in_progress. There is still no hooks in the service to call HandleImport for registered import handlers, but clients can connect to stateChanged and fire their own import when the state changes to charged. Handler registration requires APP_ID be set in the client's env, which we can drop when we get app manager integration. It also requires the export handler to be registered before the client creates the transfer. [ Ubuntu daily release ] * Automatic snapshot from revision 26 -- Ubuntu daily release Thu, 29 Aug 2013 19:09:23 +0000 content-hub (0.0+13.10.20130829-0ubuntu1) saucy; urgency=low [ Guenter Schwann ] * More robust handling of charge and collect of the transfer in QML. [ Ubuntu daily release ] * Automatic snapshot from revision 24 -- Ubuntu daily release Thu, 29 Aug 2013 02:10:14 +0000 content-hub (0.0+13.10.20130827.3-0ubuntu1) saucy; urgency=low [ Guenter Schwann ] * Use qmlRegisterSingletonType to register the ContentHub. * Add QML examples for import and export. [ Ubuntu daily release ] * Automatic snapshot from revision 22 -- Ubuntu daily release Tue, 27 Aug 2013 19:11:23 +0000 content-hub (0.0+13.10.20130827.2-0ubuntu1) saucy; urgency=low * Automatic snapshot from revision 19 -- Ubuntu daily release Tue, 27 Aug 2013 10:49:08 +0000 content-hub (0.0+13.10.20130827.1-0ubuntu1) saucy; urgency=low * Automatic snapshot from revision 18 -- Ubuntu daily release Tue, 27 Aug 2013 07:14:13 +0000 content-hub (0.0+13.10.20130827-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Initial package [ Łukasz 'sil2100' Zemczak ] * Automatic snapshot from revision 10 (bootstrap) [ Ken VanDine ] * replace "." with "_" in the peer_id to create valid object paths . [ Michael Terry ] * Some minor packaging cleanup. [ Guenter Schwann ] * Add and register an import export handler. * More QML tests, work on QML documentation. * ContentItem and ContentPeer use their service counterpart as member. * Handle import and export requests from hub for QML. [ Ubuntu daily release ] * Automatic snapshot from revision 17 -- Ubuntu daily release Tue, 27 Aug 2013 02:10:21 +0000 content-hub-1.1.1/debian/content-hub-gsettings-schema-name-change.sh000066400000000000000000000026531456121157600253660ustar00rootroot00000000000000#!/bin/bash -euf # Copyright (C) 2021 UBports Foundation. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . # # Authored by: Ratchanan Srirattanamet set -o pipefail DCONF_SOURCE_DIR="/com/ubuntu/content/hub/" DCONF_TARGET_DIR="/com/lomiri/content/hub/" # session-migration says we should be idempotent. We simply check if the target # is not empty as to not overwrite things that is set manually. target_content=$(dconf dump $DCONF_TARGET_DIR) if [ -n "$target_content" ]; then echo "${DCONF_TARGET_DIR} is not empty. Perhaps the migration has already" \ "happened, and/or the user has set additional settings." exit 0 fi # Now, simply pipe the output of "dconf dump" to "dconf load". Won't wipe the # old data, in case the migration goes wrong. dconf dump $DCONF_SOURCE_DIR | dconf load $DCONF_TARGET_DIR echo "Setting for Content Hub migrated successfully." content-hub-1.1.1/debian/content-hub-testability.install000066400000000000000000000004061456121157600233430ustar00rootroot00000000000000usr/bin/content-hub-test* usr/share/content-hub/peers/content-hub-test* usr/share/applications/content-hub-test* usr/share/content-hub/testability/data usr/share/icons/hicolor/512x512/apps/content-hub-test* debian/apparmor/content-hub-testability etc/apparmor.d content-hub-1.1.1/debian/content-hub.hook000066400000000000000000000001271456121157600203020ustar00rootroot00000000000000Pattern: ${home}/.local/share/content-hub/${id} User-Level: yes Hook-Name: content-hub content-hub-1.1.1/debian/content-hub.install000066400000000000000000000005521456121157600210120ustar00rootroot00000000000000usr/bin/content-hub-send usr/bin/content-hub-service debian/content-hub.hook usr/share/click/hooks usr/share/dbus-1 usr/share/glib-2.0/schemas usr/share/locale/*/LC_MESSAGES/content-hub.mo usr/share/applications/content-hub-send.desktop usr/share/lomiri-url-dispatcher/urls/content-hub-send.url-dispatcher usr/share/content-hub/icons var/cache/content-hub/peers content-hub-1.1.1/debian/content-hub.migrations000066400000000000000000000000631456121157600215150ustar00rootroot00000000000000debian/content-hub-gsettings-schema-name-change.sh content-hub-1.1.1/debian/control000066400000000000000000000107401456121157600165770ustar00rootroot00000000000000Source: content-hub Priority: optional Maintainer: UBports Developers Build-Depends: click-dev, cmake, cmake-extras, dbus-test-runner , debhelper-compat (= 12), dh-apparmor, dh-migrations, dh-translations , doxygen , google-mock , graphviz , libgtest-dev, lcov , libapparmor-dev, libdbus-1-dev, libglib2.0-dev, libgsettings-qt-dev, # liblibertine-dev, liblomiri-api-dev, libnotify-dev, liblomiri-download-manager-client-dev, liblomiri-app-launch-dev, qml-module-lomiri-components, qml-module-qtquick2, qml-module-qttest , qt5-default, qtbase5-dev, qtdeclarative5-dev, qtdeclarative5-dev-tools, qttools5-dev-tools, xvfb , Standards-Version: 3.9.4 Section: libs Homepage: https://gitlab.com/ubports/core/content-hub Vcs-Git: https://gitlab.com/ubports/core/content-hub Vcs-Browser: https://gitlab.com/ubports/core/content-hub X-Ubuntu-Use-Langpack: yes Package: content-hub Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, Description: content sharing/picking service Content sharing/picking infrastructure and service, designed to allow apps to securely and efficiently exchange content. This package includes the content sharing service. Package: libcontent-hub1 Section: libs Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends}, Depends: ${misc:Depends}, ${shlibs:Depends}, Suggests: content-hub Description: content sharing/picking library Content sharing/picking infrastructure and service, designed to allow apps to securely and efficiently exchange content. This package includes the content sharing libraries. Package: libcontent-hub-glib1 Section: libs Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends}, Depends: ${misc:Depends}, ${shlibs:Depends}, Suggests: content-hub Description: content sharing/picking library - GLib bindings Content sharing/picking infrastructure and service, designed to allow apps to securely and efficiently exchange content. . This package includes GLib bindings of the content sharing libraries. Package: libcontent-hub-dev Section: libdevel Architecture: any Multi-Arch: same Depends: libcontent-hub1 (= ${binary:Version}), ${misc:Depends}, Description: content sharing development files All the development headers and libraries for the content hub Package: libcontent-hub-glib-dev Section: libdevel Architecture: any Multi-Arch: same Depends: libcontent-hub-glib1 (= ${binary:Version}), ${misc:Depends}, Description: content sharing development files - GLib bindings GLib bindings of the development headers and libraries for the content hub Package: qml-module-lomiri-content Section: libs Architecture: any Pre-Depends: ${misc:Pre-Depends}, Depends: qml-module-qtquick2, ${misc:Depends}, ${shlibs:Depends}, Description: QML binding for libcontent-hub QML bindings for libcontent-hub Package: qml-module-ubuntu-content Section: libs Architecture: any Pre-Depends: ${misc:Pre-Depends}, Depends: qml-module-lomiri-content, qml-module-qtquick2, ${misc:Depends}, ${shlibs:Depends}, Provides: qtdeclarative5-ubuntu-content0.1, qtdeclarative5-ubuntu-content1, Breaks: qtdeclarative5-ubuntu-content1, Replaces: qtdeclarative5-ubuntu-content1, Description: QML binding for libcontent-hub - Ubuntu.Content compatibility layer This package contains the wrapper around Lomiri.Content QML type to provide Ubuntu.Content QML type, for compatibility with older applications. Package: libcontent-hub-doc Section: doc Architecture: all Build-Profiles: Depends: libcontent-hub-dev (>= ${source:Version}), ${misc:Depends}, Description: Documentation files for libcontent-hub-dev Documentation files for the libcontent-hub development Package: content-hub-testability Section: libdevel Architecture: any Build-Profiles: Depends: ${misc:Depends}, ${shlibs:Depends}, content-hub, Description: content sharing testability Files and utilities needed for automated testing of content-hub content-hub-1.1.1/debian/copyright000066400000000000000000000033431456121157600171300ustar00rootroot00000000000000Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: content-hub Source: https://launchpad.net/content-hub Files: * Copyright: 2013 Canonical Ltd. License: LGPL-3.0 This package is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, version 3 of the License. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the complete text of the GNU Lesser General Public License can be found in /usr/share/common-licenses/LGPL-3. Files: src/com/lomiri/content/service/* tests/acceptance-tests/* Copyright: 2013 Canonical Ltd. License: GPL-3.0 This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the full text of the GNU General Public License version 3 can be found in the file /usr/share/common-licenses/GPL-3. content-hub-1.1.1/debian/libcontent-hub-dev.install000066400000000000000000000001451456121157600222530ustar00rootroot00000000000000usr/include/com/lomiri/content/*.h usr/lib/*/libcontent-hub.so usr/lib/*/pkgconfig/libcontent-hub.pc content-hub-1.1.1/debian/libcontent-hub-doc.install000066400000000000000000000000321456121157600222350ustar00rootroot00000000000000usr/share/doc/content-hub content-hub-1.1.1/debian/libcontent-hub-glib-dev.install000066400000000000000000000001621456121157600231650ustar00rootroot00000000000000usr/include/com/lomiri/content/glib/* usr/lib/*/libcontent-hub-glib.so usr/lib/*/pkgconfig/libcontent-hub-glib.pc content-hub-1.1.1/debian/libcontent-hub-glib1.install000066400000000000000000000000431456121157600224700ustar00rootroot00000000000000usr/lib/*/libcontent-hub-glib.so.* content-hub-1.1.1/debian/libcontent-hub1.install000066400000000000000000000000361456121157600215570ustar00rootroot00000000000000usr/lib/*/libcontent-hub.so.* content-hub-1.1.1/debian/qml-module-lomiri-content.install000066400000000000000000000000421456121157600235730ustar00rootroot00000000000000usr/lib/*/qt5/qml/Lomiri/Content* content-hub-1.1.1/debian/qml-module-lomiri-content.lintian-overrides000066400000000000000000000001301456121157600255610ustar00rootroot00000000000000qml-module-lomiri-content binary: pkg-has-shlibs-control-file-but-no-actual-shared-libs content-hub-1.1.1/debian/qml-module-ubuntu-content.install000066400000000000000000000000421456121157600236220ustar00rootroot00000000000000usr/lib/*/qt5/qml/Ubuntu/Content/ content-hub-1.1.1/debian/rules000077500000000000000000000026031456121157600162530ustar00rootroot00000000000000#!/usr/bin/make -f # -*- makefile -*- export DPKG_GENSYMBOLS_CHECK_LEVEL=4 export CONTENT_HUB_TESTING=1 export DEB_BUILD_MAINT_OPTIONS=hardening=+all CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS) CFLAGS:=$(shell dpkg-buildflags --get CFLAGS) $(CPPFLAGS) CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS) $(CPPFLAGS) LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS) ifneq (,$(findstring cross,$(DEB_BUILD_PROFILES))) PROJECT_DH_OPTIONS = --with click else PROJECT_DH_OPTIONS = --with click,translations endif # Enable Ubuntu.Content compatibility layer in UBports build. CONFIGURE_OPTS := -DENABLE_UBUNTU_COMPAT=ON ifneq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) CONFIGURE_OPTS += -DENABLE_TESTS=OFF DEB_BUILD_PROFILES += noinsttest endif ifneq (,$(findstring nodoc,$(DEB_BUILD_OPTIONS))) CONFIGURE_OPTS += -DENABLE_DOC=OFF endif %: dh $@ $(PROJECT_DH_OPTIONS) --with migrations -- -B build override_dh_missing: dh_missing --fail-missing override_dh_auto_test: dh_auto_test --no-parallel override_dh_auto_configure: dh_auto_configure -- $(CONFIGURE_OPTS) override_dh_auto_install: ifneq (,$(findstring nocheck,$(DEB_BUILD_PROFILES))) mkdir -p debian/content-hub-testability endif dh_auto_install dh_apparmor -pcontent-hub-testability --profile-name=content-hub-testability mkdir -p debian/tmp/var/cache/content-hub/peers override_dh_translations: make -C po content-hub.pot content-hub-1.1.1/debian/tests/000077500000000000000000000000001456121157600163345ustar00rootroot00000000000000content-hub-1.1.1/debian/tests/aa-check000077500000000000000000000016521456121157600177220ustar00rootroot00000000000000#!/bin/sh # start X (Xvfb :5 >/dev/null 2>&1 &) XVFB_PID=$! export DISPLAY=:5 # start local session D-BUS eval `dbus-launch` trap "kill $DBUS_SESSION_BUS_PID $XVFB_PID" 0 TERM QUIT INT export DBUS_SESSION_BUS_ADDRESS export XAUTHORITY=/dev/null export CONTENT_HUB_TESTING=1 content-hub-service &2>/dev/null oktests="content-hub-test-ok" badtests="content-hub-test-bad" FAILED="" for a in $oktests; do content-hub-test-importer &2>/dev/null content-hub-test-exporter content-hub-test-importer file:///etc/issue $a 2>/dev/null if [ $? -ne 0 ]; then FAILED="$FAILED $a" fi done for b in $badtests; do content-hub-test-importer &2>/dev/null content-hub-test-exporter content-hub-test-importer file:///etc/issue $b 2>/dev/null if [ $? -eq 0 ]; then FAILED="$FAILED $b" fi done if [ -z "$FAILED" ]; then echo "All tests passed" exit 0 else echo "$FAILED failed" exit 1 fi content-hub-1.1.1/debian/tests/control000066400000000000000000000001761456121157600177430ustar00rootroot00000000000000Tests: aa-check url-dispatcher Depends: content-hub-testability, dbus-x11, xvfb, lomiri-app-launch Restrictions: allow-stderr content-hub-1.1.1/debian/tests/url-dispatcher000077500000000000000000000017121456121157600212110ustar00rootroot00000000000000#!/bin/sh # start X (Xvfb :5 >/dev/null 2>&1 &) XVFB_PID=$! export DISPLAY=:5 # start local session D-BUS eval `dbus-launch` trap "kill $DBUS_SESSION_BUS_PID $XVFB_PID" 0 TERM QUIT INT export DBUS_SESSION_BUS_ADDRESS export XAUTHORITY=/dev/null export CONTENT_HUB_TESTING=1 FAILED="" content-hub-service &2>/dev/null content-hub-test-sharer &2>/dev/null content-hub-send "content:?pkg=content-hub-test-sharer&handler=share&text=text" 2>/dev/null if [ $? -ne 0 ]; then FAILED="$FAILED share" fi content-hub-test-importer &2>/dev/null content-hub-send "content:?pkg=content-hub-test-importer&handler=export&text=text" 2>/dev/null if [ $? -ne 0 ]; then FAILED="$FAILED import" fi content-hub-send "content:?pkg=content-hub-test-importer&handler=export&url=file:///etc/issue" 2>/dev/null if [ $? -eq 0 ]; then FAILED="$FAILED reject-files" fi if [ -z "$FAILED" ]; then echo "All tests passed" exit 0 else echo "$FAILED failed" exit 1 fi content-hub-1.1.1/doc/000077500000000000000000000000001456121157600145155ustar00rootroot00000000000000content-hub-1.1.1/doc/CMakeLists.txt000066400000000000000000000023221456121157600172540ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss add_custom_target(doc ALL) find_package(Doxygen) if(DOXYGEN_FOUND) configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY) add_custom_target(cppdoc ALL ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Generating API documentation with Doxygen" VERBATIM) install( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html DESTINATION ${CMAKE_INSTALL_DOCDIR}/cpp) add_dependencies(doc cppdoc) endif(DOXYGEN_FOUND) add_subdirectory(qml) content-hub-1.1.1/doc/Doxyfile.in000066400000000000000000002346201456121157600166370ustar00rootroot00000000000000# Doxyfile 1.8.3.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a hash (#) is considered a comment and will be ignored. # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" "). #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or sequence of words) that should # identify the project. Note that if you do not use Doxywizard you need # to put quotes around the project name if it contains spaces. PROJECT_NAME = "Content Hub" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = @CONTENT_HUB_VERSION_MAJOR@.@CONTENT_HUB_VERSION_MINOR@.@CONTENT_HUB_VERSION_PATCH@ # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer # a quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = "A session-wide content-exchange service" # With the PROJECT_LOGO tag one can specify an logo or icon that is # included in the documentation. The maximum height of the logo should not # exceed 55 pixels and the maximum width should not exceed 200 pixels. # Doxygen will copy the logo to the output directory. PROJECT_LOGO = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. Note that you specify absolute paths here, but also # relative paths, which will be relative from the directory where doxygen is # started. STRIP_FROM_PATH = @CMAKE_SOURCE_DIR@ # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = @CMAKE_SOURCE_DIR@/include/ # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful if your file system # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding # "class=itcl::class" will allow you to use the command class in the # itcl::class meaning. TCL_SUBST = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, # and language is one of the parsers supported by doxygen: IDL, Java, # Javascript, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, # C++. For instance to make doxygen treat .inc files as Fortran files (default # is PHP), and .f files as C (default is Fortran), use: inc=Fortran f=C. Note # that for custom extensions you also need to set FILE_PATTERNS otherwise the # files are not read by doxygen. EXTENSION_MAPPING = # If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all # comments according to the Markdown format, which allows for more readable # documentation. See http://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you # can mix doxygen, HTML, and XML commands with Markdown formatting. # Disable only in case of backward compatibilities issues. MARKDOWN_SUPPORT = YES # When enabled doxygen tries to link words that correspond to documented classes, # or namespaces to their corresponding documentation. Such a link can be # prevented in individual cases by by putting a % sign in front of the word or # globally by setting AUTOLINK_SUPPORT to NO. AUTOLINK_SUPPORT = YES # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also makes the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = YES # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES (the # default) will make doxygen replace the get and set methods by a property in # the documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and # unions are shown inside the group in which they are included (e.g. using # @ingroup) instead of on a separate page (for HTML and Man pages) or # section (for LaTeX and RTF). INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and # unions with only public data fields will be shown inline in the documentation # of the scope in which they are defined (i.e. file, namespace, or group # documentation), provided this scope is documented. If set to NO (the default), # structs, classes, and unions are shown on a separate page (for HTML and Man # pages) or section (for LaTeX and RTF). INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penalty. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will roughly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols. SYMBOL_CACHE_SIZE = 0 # Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be # set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given # their name and scope. Since this can be an expensive process and often the # same symbol appear multiple times in the code, doxygen keeps a cache of # pre-resolved symbols. If the cache is too small doxygen will become slower. # If the cache is too large, memory is wasted. The cache size is given by this # formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols. LOOKUP_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal # scope will be included in the documentation. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespaces are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen # will list include files with double quotes in the documentation # rather than with sharp brackets. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen # will sort the (brief and detailed) documentation of class members so that # constructors and destructors are listed first. If set to NO (the default) # the constructors will appear in the respective orders defined by # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to # do proper type resolution of all parameters of a function it will reject a # match between the prototype and the implementation of a member function even # if there is only one candidate or it is obvious which candidate to choose # by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen # will still accept a match between prototype and implementation in such cases. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if section-label ... \endif # and \cond section-label ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or macro consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and macros in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. # This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. # You can optionally specify a file name after the option, if omitted # DoxygenLayout.xml will be used as the name of the layout file. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files # containing the references data. This must be a list of .bib files. The # .bib extension is automatically appended if omitted. Using this command # requires the bibtex tool to be installed. See also # http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style # of the bibliography can be controlled using LATEX_BIB_STYLE. To use this # feature you need bibtex and perl available in the search path. Do not use # file names with spaces, bibtex cannot handle them. CITE_BIB_FILES = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # The WARN_NO_PARAMDOC option can be enabled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = @CMAKE_CURRENT_SOURCE_DIR@ @CMAKE_CURRENT_SOURCE_DIR@/../include # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py # *.f90 *.f *.for *.vhd *.vhdl FILE_PATTERNS = # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = @CMAKE_CURRENT_SOURCE_DIR@/qml/ # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = @CMAKE_CURRENT_SOURCE_DIR@/../tests # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = YES # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. # If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. # Doxygen will compare the file name with each pattern and apply the # filter if there is a match. # The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty or if # non of the patterns match the file name, INPUT_FILTER is applied. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) # and it is also possible to disable source filtering for a specific pattern # using *.ext= (so without naming a filter). This option only has effect when # FILTER_SOURCE_FILES is enabled. FILTER_SOURCE_PATTERNS = # If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page (index.html). # This can be useful if you have a project on for instance GitHub and want reuse # the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = @CMAKE_CURRENT_SOURCE_DIR@/Mainpage.md #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C, C++ and Fortran comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. # Otherwise they will link to the documentation. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. Note that when using a custom header you are responsible # for the proper inclusion of any scripts and style sheets that doxygen # needs, which is dependent on the configuration options used. # It is advised to generate a default header using "doxygen -w html # header.html footer.html stylesheet.css YourConfigFile" and then modify # that header. Note that the header is subject to change so you typically # have to redo this when upgrading to a newer version of doxygen or when # changing the value of configuration settings such as GENERATE_TREEVIEW! HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If left blank doxygen will # generate a default style sheet. Note that it is recommended to use # HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this # tag will in the future become obsolete. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional # user-defined cascading style sheet that is included after the standard # style sheets created by doxygen. Using this option one can overrule # certain style aspects. This is preferred over using HTML_STYLESHEET # since it does not replace the standard style sheet and is therefor more # robust against future updates. Doxygen will copy the style sheet file to # the output directory. HTML_EXTRA_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/extra.css # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that # the files will be copied as-is; there are no commands or markers available. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the style sheet and background images # according to this color. Hue is specified as an angle on a colorwheel, # see http://en.wikipedia.org/wiki/Hue for more information. # For instance the value 0 represents red, 60 is yellow, 120 is green, # 180 is cyan, 240 is blue, 300 purple, and 360 is red again. # The allowed range is 0 to 359. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of # the colors in the HTML output. For a value of 0 the output will use # grayscales only. A value of 255 will produce the most vivid colors. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to # the luminance component of the colors in the HTML output. Values below # 100 gradually make the output lighter, whereas values above 100 make # the output darker. The value divided by 100 is the actual gamma applied, # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, # and 100 does not change the gamma. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting # this to NO can help when comparing the output of multiple runs. HTML_TIMESTAMP = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. HTML_DYNAMIC_SECTIONS = YES # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of # entries shown in the various tree structured indices initially; the user # can expand and collapse entries dynamically later on. Doxygen will expand # the tree to such a level that at most the specified number of entries are # visible (unless a fully collapsed tree already exceeds this amount). # So setting the number of entries 1 will produce a full collapsed tree by # default. 0 is a special value representing an infinite number of entries # and will result in a full expanded tree by default. HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely # identify the documentation publisher. This should be a reverse domain-name # style string, e.g. com.mycompany.MyDocSet.documentation. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated # that can be used as input for Qt's qhelpgenerator to generate a # Qt Compressed Help (.qch) of the generated HTML documentation. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can # be used to specify the file name of the resulting .qch file. # The path specified is relative to the HTML output folder. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to # add. For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see # # Qt Help Project / Custom Filters. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's # filter section matches. # # Qt Help Project / Filter Attributes. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can # be used to specify the location of Qt's qhelpgenerator. # If non-empty doxygen will try to run qhelpgenerator on the generated # .qhp file. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files # will be generated, which together with the HTML files, form an Eclipse help # plugin. To install this plugin and make it available under the help contents # menu in Eclipse, the contents of the directory containing the HTML and XML # files needs to be copied into the plugins directory of eclipse. The name of # the directory within the plugins directory should be the same as # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before # the help appears. GENERATE_ECLIPSEHELP = NO # A unique identifier for the eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have # this name. ECLIPSE_DOC_ID = org.doxygen.Project # The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) # at top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. Since the tabs have the same information as the # navigation tree you can set this option to NO if you already set # GENERATE_TREEVIEW to YES. DISABLE_INDEX = YES # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to YES, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). # Windows users are probably better off using the HTML help feature. # Since the tree basically has the same information as the tab index you # could consider to set DISABLE_INDEX to NO when enabling this option. GENERATE_TREEVIEW = YES # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values # (range [0,1..20]) that doxygen will group on one line in the generated HTML # documentation. Note that a value of 0 will completely suppress the enum # values from appearing in the overview section. ENUM_VALUES_PER_LINE = 1 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open # links to external symbols imported via tag files in a separate window. EXT_LINKS_IN_WINDOW = NO # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are # not supported properly for IE 6.0, but are supported on all modern browsers. # Note that when changing this option you need to delete any form_*.png files # in the HTML output before the changes have effect. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax # (see http://www.mathjax.org) which uses client side Javascript for the # rendering instead of using prerendered bitmaps. Use this if you do not # have LaTeX installed or if you want to formulas look prettier in the HTML # output. When enabled you may also need to install MathJax separately and # configure the path to it using the MATHJAX_RELPATH option. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and # SVG. The default value is HTML-CSS, which is slower, but has the best # compatibility. MATHJAX_FORMAT = HTML-CSS # When MathJax is enabled you need to specify the location relative to the # HTML output directory using the MATHJAX_RELPATH option. The destination # directory should contain the MathJax.js script. For instance, if the mathjax # directory is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to # the MathJax Content Delivery Network so you can quickly see the result without # installing MathJax. # However, it is strongly recommended to install a local # copy of MathJax from http://www.mathjax.org before deployment. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension # names that should be enabled during MathJax rendering. MATHJAX_EXTENSIONS = # When the SEARCHENGINE tag is enabled doxygen will generate a search box # for the HTML output. The underlying search engine uses javascript # and DHTML and should work on any modern browser. Note that when using # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets # (GENERATE_DOCSET) there is already a search function so this one should # typically be disabled. For large projects the javascript based search engine # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. SEARCHENGINE = YES # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a web server instead of a web client using Javascript. # There are two flavours of web server based search depending on the # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for # searching and an index file used by the script. When EXTERNAL_SEARCH is # enabled the indexing and searching needs to be provided by external tools. # See the manual for details. SERVER_BASED_SEARCH = NO # When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP # script for searching. Instead the search results are written to an XML file # which needs to be processed by an external indexer. Doxygen will invoke an # external search engine pointed to by the SEARCHENGINE_URL option to obtain # the search results. Doxygen ships with an example indexer (doxyindexer) and # search engine (doxysearch.cgi) which are based on the open source search engine # library Xapian. See the manual for configuration details. EXTERNAL_SEARCH = NO # The SEARCHENGINE_URL should point to a search engine hosted by a web server # which will returned the search results when EXTERNAL_SEARCH is enabled. # Doxygen ships with an example search engine (doxysearch) which is based on # the open source search engine library Xapian. See the manual for configuration # details. SEARCHENGINE_URL = # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed # search data is written to a file for indexing by an external tool. With the # SEARCHDATA_FILE tag the name of this file can be specified. SEARCHDATA_FILE = searchdata.xml # When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple # projects and redirect the results back to the right project. EXTERNAL_SEARCH_ID = # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen # projects other than the one defined by this configuration file, but that are # all added to the same external search index. Each project needs to have a # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id # of to a relative location where the documentation can be found. # The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ... EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. # Note that when enabling USE_PDFLATEX this option is only used for # generating bitmaps for formulas in the HTML output, but not in the # Makefile that is written to the output directory. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for # the generated latex document. The footer should contain everything after # the last chapter. If it is left blank doxygen will generate a # standard footer. Notice: only use this tag if you know what you are doing! LATEX_FOOTER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO # If LATEX_SOURCE_CODE is set to YES then doxygen will include # source code with syntax highlighting in the LaTeX output. # Note that which sources are shown also depends on other settings # such as SOURCE_BROWSER. LATEX_SOURCE_CODE = NO # The LATEX_BIB_STYLE tag can be used to specify the style to use for the # bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See # http://en.wikipedia.org/wiki/BibTeX for more info. LATEX_BIB_STYLE = plain #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load style sheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = YES # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. # This is useful # if you want to understand what is going on. # On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # pointed to by INCLUDE_PATH will be searched when a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition that # overrules the definition found in the source code. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all references to function-like macros # that are alone on a line, have an all uppercase name, and do not end with a # semicolon, because these will confuse the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. For each # tag file the location of the external documentation should be added. The # format of a tag file without this location is as follows: # # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths # or URLs. Note that each tag file must have a unique name (where the name does # NOT include the path). If a tag file is not located in the directory in which # doxygen is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option also works with HAVE_DOT disabled, but it is recommended to # install and use dot, since it yields more powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = NO # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = YES # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is # allowed to run in parallel. When set to 0 (the default) doxygen will # base this on the number of processors available in the system. You can set it # explicitly to a value larger than 0 to get control over the balance # between CPU load and processing speed. DOT_NUM_THREADS = 0 # By default doxygen will use the Helvetica font for all dot files that # doxygen generates. When you want a differently looking font you can specify # the font name using DOT_FONTNAME. You need to make sure dot is able to find # the font, which can be done by putting it in a standard location or by setting # the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the # directory containing the font. DOT_FONTNAME = Helvetica # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the Helvetica font. # If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to # set the path where dot can find it. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = YES # If the UML_LOOK tag is enabled, the fields and methods are shown inside # the class node. If there are many fields or methods and many nodes the # graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS # threshold limits the number of items for each type to make the size more # managable. Set this to 0 for no limit. Note that the threshold may be # exceeded by 50% before the limit is enforced. UML_LIMIT_NUM_FIELDS = 10 # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = YES # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will generate a graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are svg, png, jpg, or gif. # If left blank png will be used. If you choose svg you need to set # HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible in IE 9+ (other browsers do not have this requirement). DOT_IMAGE_FORMAT = png # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to # enable generation of interactive SVG images that allow zooming and panning. # Note that this requires a modern browser other than Internet Explorer. # Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you # need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible. Older versions of IE do not have SVG support. INTERACTIVE_SVG = YES # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MSCFILE_DIRS tag can be used to specify one or more directories that # contain msc files that are included in the documentation (see the # \mscfile command). MSCFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = YES # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = YES # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES content-hub-1.1.1/doc/Mainpage.md000066400000000000000000000057521456121157600165710ustar00rootroot00000000000000Content Management & Exchange {#mainpage} ============================= Unity and the overall Lomiri experience put heavy emphasis on the notion of content, with Unity's dash offering streamlined access to arbitrary content, both local to the device or online. More to this, Unity's dash is the primary way of surfacing content on mobile form factors without the need to access individual applications and their respective content silos. The content-hub deals with application-specific content management and implements an architecture that allows an app to define its own content silo, exchange content with other applications/the system, and a way to provide the user with content picking functionality. To ease conversations, we start over with a set of definitions: - Content item: A content item is an entity that consists of meta-data and data. E.g., an image is a content item, where the actual pixels are the data, and information like size, image format, bit depth, location etc. is considered meta data. \sa com::lomiri::content::Item. - Content types: A set of well-known content types. E.g., images or music files. \sa com::lomiri::content::Type. - Content set: A set of unique content items. Can be considered a content item itself, e.g., in the case of playlists. - Content owner: The unique owner of a content item. A content item has to be owned by exactly one app. \sa com::lomiri::content::Peer - Content store: A container (think of it as a top-level folder in the filesystem) that contains content items of a certain type. Different stores exist for different scopes, where scope refers to either system-wide, user-wide or app-specific storage locations. \sa com::lomiri::content::Store, com::lomiri::content::Scope - Content transfer: Transferring content item/s to and from a source or destination. A transfer is uniquely defined by: * The content source * The content destination * The transfer direction, either import or export * The set of items that should be exchanged \sa com::lomiri::content::Transfer, com::lomiri::content::Hub::create_import_for_type_from_peer - Content picking: Operation that allows a user to select content for subsequent import from a content source (e.g., an application). The content source is responsible for providing a UI to the user. Architectural Overview ---------------------- The architecture enforces complete application isolation, both in terms of content separation, sandboxing/confinement and in terms of the application lifecycle. As we cannot assume that two apps that want to exchange content are running at the same time, a system-level component needs to mediate and control the content exchange operation, making sure that neither app instance assumes the existence of the other one. We refer to this component as the content hub. \sa com::lomiri::content::Hub Example usage - Importing Pictures ---------------------------------- \snippet acceptance-tests/app_hub_communication_transfer.cpp Importing pictures content-hub-1.1.1/doc/extra.css000066400000000000000000000012711456121157600163530ustar00rootroot00000000000000body, table, div, p, dl { font: 400 14px/19px Ubuntu,Arial,sans-serif; } #projectname { font: 300% Ubuntu,Arial,sans-serif; margin: 0px; padding: 2px 0px; } #projectbrief { font: 120% Ubuntu,Arial,sans-serif; margin: 0px; padding: 0px; } #projectnumber { font: 50% Ubuntu,Arial,sans-serif; margin: 0px; padding: 0px; } div.toc li { background: url("bdwn.png") no-repeat scroll 0 5px transparent; font: 10px/1.2 Ubuntu,Arial,sans-serif; margin-top: 5px; padding-left: 10px; padding-top: 2px; } div.toc h3 { font: bold 12px/1.2 Ubuntu,Arial,FreeSans,sans-serif; color: #E24106; border-bottom: 0 none; margin: 0; } content-hub-1.1.1/doc/qml/000077500000000000000000000000001456121157600153065ustar00rootroot00000000000000content-hub-1.1.1/doc/qml/CMakeLists.txt000066400000000000000000000025271456121157600200540ustar00rootroot00000000000000# add a target to generate API documentation with qdoc SET(QDOC_WORKS FALSE) SET(ENV{QT_SELECT} qt5) FIND_PROGRAM(QDOC_EXECUTABLE qdoc) if(QDOC_EXECUTABLE) EXECUTE_PROCESS(COMMAND ${QDOC_EXECUTABLE} --version OUTPUT_VARIABLE QDOC_OUTPUT ERROR_QUIET) string(REGEX REPLACE "qdoc ([0-9]+(\\.[0-9]+)+).*" "\\1" QDOC_VERSION ${QDOC_OUTPUT}) if(QDOC_VERSION MATCHES "^5\\.") set(QDOC_WORKS TRUE) endif() endif(QDOC_EXECUTABLE) if(QDOC_WORKS) message(STATUS "Check for working qdoc: ${QDOC_EXECUTABLE} (version: \"${QDOC_VERSION}\") -- works") elseif(QDOC_EXECUTABLE) message(FATAL_ERROR "Check for working qdoc: ${QDOC_EXECUTABLE} -- does not work") else() message(FATAL_ERROR "Check for working qdoc: not found") endif(QDOC_WORKS) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/lomiri-content-hub.qdocconf.in ${CMAKE_CURRENT_BINARY_DIR}/lomiri-content-hub.qdocconf @ONLY) add_custom_target(qmldoc ${QDOC_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/lomiri-content-hub.qdocconf WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Generating QML API documentation with qdoc" VERBATIM ) # copy stylesheet files into build directory for shadow builds file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/css" DESTINATION ${CMAKE_CURRENT_BINARY_DIR} ) install( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/ DESTINATION ${CMAKE_INSTALL_DOCDIR}/qml/html ) add_dependencies(doc qmldoc) content-hub-1.1.1/doc/qml/css/000077500000000000000000000000001456121157600160765ustar00rootroot00000000000000content-hub-1.1.1/doc/qml/css/base.css000066400000000000000000000270671456121157600175360ustar00rootroot00000000000000/** * Lomiri Developer base stylesheet * * A base stylesheet containing site-wide styles * * @project Lomiri Developer * @version 1.0 * @author Canonical Web Team: Steve Edwards * @copyright 2011 Canonical Ltd. */ /** * @section Global */ body { font-family: 'Ubuntu', 'Ubuntu Beta', UbuntuBeta, Ubuntu, 'Bitstream Vera Sans', 'DejaVu Sans', Tahoma, sans-serif; font-size: 13px; line-height: 1.4; color: #333; } a { color: #dd4814; text-decoration: none; outline: 0; } p, dl { margin-bottom: 10px; } strong { font-weight: bold; } em { font-style: italic; } code{ padding: 10px; font-family: 'Ubuntu Mono', 'Consolas', 'Monaco', 'DejaVu Sans Mono', Courier, monospace; background-color: #fdf6f2; display: block; margin-bottom: 10px; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } h1 { font-size: 36px; line-height: 1.1; margin-bottom: 20px; } article h1, h2 { font-size: 24px; line-height: 1.2; margin-bottom: 14px; } h3 { font-size: 16px; line-height: 1.3; margin-bottom: 8px; } h4 { font-weight: bold; } time { color:#999; } /** * @section Structure */ .header-login, .header-navigation div, .header-content div { margin: 0 auto; width: 940px; } .header-content h1{ background-color:#ffffff; display:inline-block; } .header-content h2{ background-color:#ffffff; display:table; } .header-login ul { margin: 4px 0; float: right; } .header-login li { margin-right: 10px; float: left; } .header-login a { color: #333; } .header-navigation { border-top: 2px solid #dd4814; border-bottom: 2px solid #dd4814; background-color: #fff; height: 54px; clear: right; overflow: hidden; } .header-navigation nav ul { border-right: 1px solid #dd4814; float: right; } .header-navigation nav li { border-left: 1px solid #dd4814; float: left; height: 54px; } .header-navigation nav a { padding: 18px 14px 0; font-size: 14px; display: block; height: 36px; } .header-navigation nav a:hover { background-color: #fcece7; } .header-navigation nav .current_page_item a, .header-navigation nav .current_page_parent a, .header-navigation nav .current_page_ancestor a { background-color: #dd4814; color: #fff; } .header-navigation input { margin: 12px 10px 0 10px; padding: 5px; border-top: 1px solid #a1a1a1; border-right: 1px solid #e0e0e0; border-bottom: 1px solid #fff; border-left: 1px solid #e0e0e0; width: 90px; font-style: italic; color: #ccc; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -moz-box-shadow: inset 0 1px 1px #e0e0e0; -webkit-box-shadow: inset 0 1px 1px #e0e0e0; box-shadow: inset 0 1px 1px #e0e0e0; } .header-navigation h2 { margin: 18px 0 0 6px; text-transform: lowercase; font-size: 22px; color: #dd4814; float: left; } .header-navigation .logo-ubuntu { margin-top: 12px; float: left; } .header-content .header-navigation-secondary { margin-bottom: 40px; padding: 0; position: relative; z-index: 2; } .header-navigation-secondary div { padding: 0; border: 2px solid #dd4814; -moz-border-radius: 0px 0px 4px 4px; -webkit-border-radius: 0px 0px 4px 4px; border-radius: 0px 0px 4px 4px; background: #fff; border-top: 0px; width: 936px; } .header-navigation-secondary nav li { float: left; } .header-navigation-secondary nav li a { color: #333; display: block; height: 25px; padding: 8px 8px 0; } .header-navigation-secondary nav li:hover, .header-navigation-secondary nav .current_page_item a { background: url("../img/sec-nav-hover.gif"); } .header-content { padding-bottom: 30px; border-bottom: 1px solid #e0e0e0; -moz-box-shadow: 0 1px 3px #e0e0e0; -webkit-box-shadow: 0 1px 3px #e0e0e0; box-shadow: 0 1px 3px #e0e0e0; margin-bottom: 3px; position: relative; overflow: hidden; } footer { padding: 10px 10px 40px 10px; position: relative; -moz-border-radius: 0 0 4px 4px; -webkit-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px; font-size: 12px; background: url("../img/background-footer.png") repeat scroll 0 0 #f7f6f5; } footer div { margin: 0 auto; padding: 0 10px; width: 940px; } footer a { color: #000; } footer nav ul { margin: 10px 17px 30px 0; width: 172px; display: inline-block; vertical-align: top; height: auto; zoom: 1; *display: inline; } footer nav ul.last { margin-right: 0; } footer nav li { margin-bottom: 8px; } footer nav li:first-child { font-weight: bold; } footer p { margin-bottom: 0; } #content { padding-top: 35px; } .arrow-nav { display: none; position: absolute; top: -1px; z-index: 3; } .shadow { margin: 30px 0 3px 0; border-bottom: 1px solid #e0e0e0; -moz-box-shadow: 0 2px 3px #e0e0e0; -webkit-box-shadow: 0 2px 3px #e0e0e0; box-shadow: 0 2px 3px #e0e0e0; height: 3px; } /** * @section Site-wide */ #content h2{ font-size:24px; } .box-orange { padding: 10px; border: 3px solid #dd4814; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } .box-orange .link-action-small { float: right; margin: 0 0 0 20px; } .link-bug { margin-left: 10px; color: #999; } .link-action { float: left; margin-bottom: 20px; padding: 8px 12px; display: block; background-color: #dd4814; color: #fff; -moz-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px; font-size: 16px; line-height: 1.3; border-top: 3px solid #e6633a; border-bottom: 3px solid #c03d14; } .link-action2 { float: left; display: block; color: #fff; font-size: 16px; line-height: 1.3; } .link-action2 span{ display:block; float:left; } .link-action2 .cta-left{ background:url(../img/button-cta-left.png) no-repeat; width:22px; height:48px; } .link-action2 .cta-center{ background:url(../img/button-cta-slice.png) repeat-x; line-height:45px; height:48px; } .link-action2 .cta-right{ background:url(../img/button-cta-right.png) no-repeat; width:22px; height:48px; } .link-action-small { float: left; display: block; color: #fff; font-size: 16px; } .link-action-small span{ display:block; float:left; height:42px; } .link-action-small .cta-left{ background:url(../img/button-cta-left-small.png) no-repeat; width:19px; } .link-action-small .cta-center{ background:url(../img/button-cta-slice-small.png) repeat-x; line-height:42px; } .link-action-small .cta-right{ background:url(../img/button-cta-right-small.png) no-repeat; width:19px; } .link-action:active { position: relative; top: 1px; } .link-action2:active { position: relative; top: 1px; } .link-action-small:active { position: relative; top: 1px; } .list-bullets li { margin-bottom: 10px; list-style: disc; list-style-position: inside; } .box { margin-bottom: 30px; padding: 15px; border: 1px solid #aea79f; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } .box-padded { margin-bottom: 30px; padding: 5px; border: 2px solid #aea79f; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; background: url("../img/pattern-featured.gif") repeat scroll 0 0 #ebe9e7; overflow: hidden; } .box-padded h3 { margin: 5px 0 10px 5px; } .box-padded div { padding: 10px; border: 1px solid #aea79f; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; background-color: #fff; overflow: hidden; } .box-padded li { padding: 0 10px; float: left; width: 211px; border-right: 1px dotted #aea79f; } .box-padded li.first { padding: 0; margin-bottom: 0; } .box-padded li.last { border: 0; width: 217px; } .box-padded img { margin: 0 10px 50px 0; float: left; -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; } .box-clear { margin-bottom: 40px; } .box-clear .grid-4.first { margin-right: 15px; padding-right: 15px; } .box-clear .grid-4 { margin-left: 0; margin-right: 10px; padding-right: 10px; width: 298px; } .box-clear time { display: block; border-bottom: 1px dotted #aea79f; padding-bottom: 10px; margin-bottom: 10px; } .box-clear div.first { border-right: 1px dotted #aea79f; } .box-clear a { display: block; } .box-clear .rss { background: url("../img/rss.jpg") no-repeat scroll 0 center; padding-left: 20px; } .box-clear .location { display: block; margin-bottom: 1px; } .box-clear .last { margin: 0; padding-right: 0; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; width: 293px; } /* Widgets */ .ui-state-focus { outline: none; } .ui-accordion { border-bottom: 1px dotted #aea79f; } .ui-accordion a { display: block; } .ui-accordion h3 { margin-bottom: 0; border-top: 1px dotted #aea79f; position: relative; font-size: 13px; font-weight: bold; } .ui-accordion h3 a { padding: 10px 0; color: #333; } .ui-accordion h4 { margin-bottom: 5px; } .ui-accordion div fieldset { padding-bottom: 5px; } .ui-accordion div li, .ui-accordion div input { margin-bottom: 10px; } .ui-accordion .ui-icon { position: absolute; top: 15px; right: 0; display: block; width: 8px; height: 8px; background: url("../img/icon-accordion-inactive.png") 0 0 no-repeat transparent; } .ui-accordion .ui-state-active .ui-icon { background-image: url("../img/icon-accordion-active.png"); } .ui-accordion .current_page_item a { color: #333; } .container-tweet { -moz-border-radius: 4px 4px 4px 4px; -webkit-border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 4px 4px; padding: 10px 10px 10px; background-color: #f7f7f7; } .container-tweet .tweet-follow { margin-top: 10px; margin-bottom: -10px; padding-left: 55px; padding-bottom: 6px; background: url("../img/tweet-follow.png") 0 5px no-repeat; display: block; } .container-tweet .tweet-follow span { font-size: 16px; font-weight: bold; line-height: 1.2; display: block; } .tweet a { display: inline; } .tweet .tweet_text { padding: 10px; background-color: #fff; -moz-border-radius: 4px 4px 4px 4px; -webkit-border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 4px 4px; border: 1px solid #dd4814; font-size: 16px; display: block; clear: both; } .tweet.tweet-small .tweet_text { font-size: inherit; } .tweet .tweet_text a { color: #333; } .tweet .tweet_time, .tweet .tweet_user_and_time { padding: 15px 0 10px 0; position: relative; top: -2px; background: url("../img/tweet-arrow.png") no-repeat; display: block; } .tweet .tweet_odd .tweet_time, .tweet .tweet_odd .tweet_user_and_time { background-position: right 0; float: right; } .tweet .tweet_even .tweet_time, .tweet .tweet_even .tweet_user_and_time { background-position: left 0; float: left; } /* Search */ #content .list-search li { list-style-type:none; border:0px; margin-bottom: 15px; padding-top: 15px; } /* Blog */ .blog-article #nav-single { margin-top: 30px; margin-bottom: 30px; } .blog-article #nav-single .nav-next { float: right; } .blog-article article header .entry-meta { margin-bottom: 20px; } .blog-article article .entry-meta { color: #999; } .blog-article #respond form input[type="submit"] { float: left; cursor: pointer; margin-bottom: 20px; padding: 8px 12px; display: block; background-color: #dd4814; color: #fff; -moz-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px; font-size: 16px; line-height: 1.3; border-top: 3px solid #e6633a; border-left: 3px solid #e6633a; border-right: 3px solid #e6633a; border-bottom: 3px solid #c03d14; } .blog-article #respond form input[type="submit"]:active { position: relative; top: 1px; } .alignnone{ float:left; margin:10px 20px 10px 0; } .alignleft{ float:left; margin:10px 20px 10px 0; } .alignright{ float:right; margin:10px 0 10px 20px; } .aligncenter{ float:left; margin:10px 20px 10px 0; } .entry-content h2, .entry-content h3{ margin-top:20px; } .entry-content ul li{ list-style-type: circle; margin-left:16px; } .entry-content hr{ border:none; border-top: 1px dotted #AEA79F; } content-hub-1.1.1/doc/qml/css/qtquick.css000066400000000000000000000317511456121157600203000ustar00rootroot00000000000000@media screen { /* basic elements */ html { color: #000000; background: #FFFFFF; } table { border-collapse: collapse; border-spacing: 0; } fieldset, img { border: 0; max-width:100%; } address, caption, cite, code, dfn, em, strong, th, var, optgroup { font-style: inherit; font-weight: inherit; } del, ins { text-decoration: none; } ol li { list-style: decimal; } ul li { list-style: none; } caption, th { text-align: left; } h1.title { font-weight: bold; font-size: 150%; } h0 { font-weight: bold; font-size: 130%; } h1, h2, h3, h4, h5, h6 { font-size: 100%; } q:before, q:after { content: ''; } abbr, acronym { border: 0; font-variant: normal; } sup, sub { vertical-align: baseline; } tt, .qmlreadonly span, .qmldefault span { word-spacing:0.5em; } legend { color: #000000; } strong { font-weight: bold; } em { font-style: italic; } body { margin: 0 1.5em 0 1.5em; font-family: ubuntu; line-height: normal } a { color: #00732F; text-decoration: none; } hr { background-color: #E6E6E6; border: 1px solid #E6E6E6; height: 1px; width: 100%; text-align: left; margin: 1.5em 0 1.5em 0; } pre { border: 1px solid #DDDDDD; -moz-border-radius: 0.7em 0.7em 0.7em 0.7em; -webkit-border-radius: 0.7em 0.7em 0.7em 0.7em; border-radius: 0.7em 0.7em 0.7em 0.7em; padding: 1em 1em 1em 1em; overflow-x: auto; } table, pre { -moz-border-radius: 0.7em 0.7em 0.7em 0.7em; -webkit-border-radius: 0.7em 0.7em 0.7em 0.7em; border-radius: 0.7em 0.7em 0.7em 0.7em; background-color: #F6F6F6; border: 1px solid #E6E6E6; border-collapse: separate; margin-bottom: 2.5em; } pre { font-size: 90%; display: block; overflow:hidden; } thead { margin-top: 0.5em; font-weight: bold } th { padding: 0.5em 1.5em 0.5em 1em; background-color: #E1E1E1; border-left: 1px solid #E6E6E6; } td { padding: 0.25em 1.5em 0.25em 1em; } td.rightAlign { padding: 0.25em 0.5em 0.25em 1em; } table tr.odd { border-left: 1px solid #E6E6E6; background-color: #F6F6F6; color: black; } table tr.even { border-left: 1px solid #E6E6E6; background-color: #ffffff; color: #202020; } div.float-left { float: left; margin-right: 2em } div.float-right { float: right; margin-left: 2em } span.comment { color: #008B00; } span.string, span.char { color: #000084; } span.number { color: #a46200; } span.operator { color: #202020; } span.keyword { color: #840000; } span.name { color: black } span.type { font-weight: bold } span.type a:visited { color: #0F5300; } span.preprocessor { color: #404040 } /* end basic elements */ /* font style elements */ .heading { font-weight: bold; font-size: 125%; } .subtitle { font-size: 110% } .small-subtitle { font-size: 100% } .red { color:red; } /* end font style elements */ /* global settings*/ .header, .footer { display: block; clear: both; overflow: hidden; } /* end global settings*/ /* header elements */ .header .qtref { color: #00732F; font-weight: bold; font-size: 130%; } .header .content { margin-left: 5px; margin-top: 5px; margin-bottom: 0.5em; } .header .breadcrumb { font-size: 90%; padding: 0.5em 0 0.5em 1em; margin: 0; background-color: #fafafa; height: 1.35em; border-bottom: 1px solid #d1d1d1; } .header .breadcrumb ul { margin: 0; padding: 0; } .header .content { word-wrap: break-word; } .header .breadcrumb ul li { float: left; background: url(../images/breadcrumb.png) no-repeat 0 3px; padding-left: 1.5em; margin-left: 1.5em; } .header .breadcrumb ul li.last { font-weight: normal; } .header .breadcrumb ul li a { color: #00732F; } .header .breadcrumb ul li.first { background-image: none; padding-left: 0; margin-left: 0; } .header .content ol li { background: none; margin-bottom: 1.0em; margin-left: 1.2em; padding-left: 0 } .header .content li { background: url(../images/bullet_sq.png) no-repeat 0 5px; margin-bottom: 1em; padding-left: 1.2em; } /* end header elements */ /* content elements */ .content h1 { font-weight: bold; font-size: 130% } .content h2 { font-weight: bold; font-size: 120%; width: 100%; } .content h3 { font-weight: bold; font-size: 110%; width: 100%; } .content table p { margin: 0 } .content ul { padding-left: 2.5em; } .content li { padding-top: 0.25em; padding-bottom: 0.25em; } .content ul img { vertical-align: middle; } .content a:visited { color: #4c0033; text-decoration: none; } .content a:visited:hover { color: #4c0033; text-decoration: underline; } a:hover { color: #4c0033; text-decoration: underline; } descr p a { text-decoration: underline; } .descr p a:visited { text-decoration: underline; } .alphaChar{ width:95%; background-color:#F6F6F6; border:1px solid #E6E6E6; -moz-border-radius: 7px 7px 7px 7px; border-radius: 7px 7px 7px 7px; -webkit-border-radius: 7px 7px 7px 7px; font-size:12pt; padding-left:10px; margin-top:10px; margin-bottom:10px; } .flowList{ /*vertical-align:top;*/ /*margin:20px auto;*/ column-count:3; -webkit-column-count:3; -moz-column-count:3; /* column-width:100%; -webkit-column-width:200px; -col-column-width:200px; */ column-gap:41px; -webkit-column-gap:41px; -moz-column-gap:41px; column-rule: 1px dashed #ccc; -webkit-column-rule: 1px dashed #ccc; -moz-column-rule: 1px dashed #ccc; } .flowList dl{ } .flowList dd{ /*display:inline-block;*/ margin-left:10px; min-width:250px; line-height: 1.5; min-width:100%; min-height:15px; } .flowList dd a{ } .mainContent { padding-left:5px; } .content .flowList p{ padding:0px; } .content .alignedsummary { margin: 15px; } .qmltype { text-align: center; font-size: 120%; } .qmlreadonly { padding-left: 5px; float: right; color: #254117; } .qmldefault { padding-left: 5px; float: right; color: red; } .qmldoc { } .generic .alphaChar{ margin-top:5px; } .generic .odd .alphaChar{ background-color: #F6F6F6; } .generic .even .alphaChar{ background-color: #FFFFFF; } .memItemRight{ padding: 0.25em 1.5em 0.25em 0; } .highlightedCode { margin: 1.0em; } .annotated td { padding: 0.25em 0.5em 0.25em 0.5em; } .toc { font-size: 80% } .header .content .toc ul { padding-left: 0px; } .content .toc h3 { border-bottom: 0px; margin-top: 0px; } .content .toc h3 a:hover { color: #00732F; text-decoration: none; } .content .toc .level2 { margin-left: 1.5em; } .content .toc .level3 { margin-left: 3.0em; } .content ul li { background: url(../images/bullet_sq.png) no-repeat 0 0.7em; padding-left: 1em } .content .toc li { background: url(../images/bullet_dn.png) no-repeat 0 5px; padding-left: 1em } .relpage { -moz-border-radius: 7px 7px 7px 7px; -webkit-border-radius: 7px 7px 7px 7px; border-radius: 7px 7px 7px 7px; border: 1px solid #DDDDDD; padding: 25px 25px; clear: both; } .relpage ul { float: none; padding: 1.5em; } h3.fn, span.fn { -moz-border-radius:7px 7px 7px 7px; -webkit-border-radius:7px 7px 7px 7px; border-radius:7px 7px 7px 7px; background-color: #F6F6F6; border-width: 1px; border-style: solid; border-color: #E6E6E6; font-weight: bold; word-spacing:3px; padding:3px 5px; } .functionIndex { font-size:12pt; word-spacing:10px; margin-bottom:10px; background-color: #F6F6F6; border-width: 1px; border-style: solid; border-color: #E6E6E6; -moz-border-radius: 7px 7px 7px 7px; -webkit-border-radius: 7px 7px 7px 7px; border-radius: 7px 7px 7px 7px; width:100%; } .centerAlign { text-align:center; } .rightAlign { text-align:right; } .leftAlign { text-align:left; } .topAlign{ vertical-align:top } .functionIndex a{ display:inline-block; } /* end content elements */ /* footer elements */ .footer { color: #393735; font-size: 0.75em; text-align: center; padding-top: 1.5em; padding-bottom: 1em; background-color: #E6E7E8; margin: 0; } .footer p { margin: 0.25em } .small { font-size: 0.5em; } /* end footer elements */ .item { float: left; position: relative; width: 100%; overflow: hidden; } .item .primary { margin-right: 220px; position: relative; } .item hr { margin-left: -220px; } .item .secondary { float: right; width: 200px; position: relative; } .item .cols { clear: both; display: block; } .item .cols .col { float: left; margin-left: 1.5%; } .item .cols .col.first { margin-left: 0; } .item .cols.two .col { width: 45%; } .item .box { margin: 0 0 10px 0; } .item .box h3 { margin: 0 0 10px 0; } .cols.unclear { clear:none; } } /* end of screen media */ /* start of print media */ @media print { input, textarea, .header, .footer, .toolbar, .feedback, .wrapper .hd, .wrapper .bd .sidebar, .wrapper .ft, #feedbackBox, #blurpage, .toc, .breadcrumb, .toolbar, .floatingResult { display: none; background: none; } .content { background: none; display: block; width: 100%; margin: 0; float: none; } } /* end of print media */ /* modify the TOC layouts */ div.toc ul { padding-left: 20px; } div.toc li { padding-left: 4px; } /* Remove the border around images*/ a img { border:none; } /*Add styling to the front pages*/ .threecolumn_area { padding-top: 20px; padding-bottom: 20px; } .threecolumn_piece { display: inline-block; margin-left: 78px; margin-top: 8px; padding: 0; vertical-align: top; width: 25.5%; } div.threecolumn_piece ul { list-style-type: none; padding-left: 0px; margin-top: 2px; } div.threecolumn_piece p { margin-bottom: 7px; color: #5C626E; text-decoration: none; font-weight: bold; } div.threecolumn_piece li { padding-left: 0px; margin-bottom: 5px; } div.threecolumn_piece a { font-weight: normal; } /* Add style to guide page*/ .fourcolumn_area { padding-top: 20px; padding-bottom: 20px; } .fourcolumn_piece { display: inline-block; margin-left: 35px; margin-top: 8px; padding: 0; vertical-align: top; width: 21.3%; } div.fourcolumn_piece ul { list-style-type: none; padding-left: 0px; margin-top: 2px; } div.fourcolumn_piece p { margin-bottom: 7px; color: #40444D; text-decoration: none; font-weight: bold; } div.fourcolumn_piece li { padding-left: 0px; margin-bottom: 5px; } div.fourcolumn_piece a { font-weight: normal; } content-hub-1.1.1/doc/qml/css/reset.css000066400000000000000000000015331456121157600177340ustar00rootroot00000000000000/* Copyright (c) 2010, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.com/yui/license.html version: 3.3.0 build: 3167 */ html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}content-hub-1.1.1/doc/qml/css/scratch.css000066400000000000000000000013741456121157600202440ustar00rootroot00000000000000body { margin: 0; } div.toc ul { padding: 0; } div.toc li { margin-bottom: 3px; } h1.title { font-size: 36px; line-height: 1.1; font-weight: normal; } h0, h2 { font-size: 24px; line-height: 1.2; margin: 14px 0; font-weight: normal; display: block; } a:hover { color: #dd4814; text-decoration: underline; outline: 0; } table, pre { border-radius: 0; } .annotated td { padding: 0.8em 1em 0.3em; } .wrapper { width: 940px; margin: 0 auto; } .main-content { width: 668px; position: relative; left: 270px; } .title { margin-left: -270px; margin-top: 30px; margin-bottom: 50px; } .toc { margin-left: -270px; font-size: 100%; margin-bottom: 40px; padding: 0; z-index: 2; position: absolute; top: 100px; width: 250px; } content-hub-1.1.1/doc/qml/lomiri-content-hub.qdocconf.in000066400000000000000000000031151456121157600231500ustar00rootroot00000000000000project = Lomiri Content QML API description = Lomiri Content API # QDoc 5.2 will only process these if they're relative paths sourcedirs = ../../../doc/qml/pages ../../../import exampledirs = ../../../examples/ sources.fileextensions = "*.qdoc *.qml *.cpp" headers.fileextensions = "*.h" examples.fileextensions = "*.js *.qml" examples.imageextensions = "*.png *.jpeg *.jpg" # But... QDoc 5.2 will also only process this if it's an absolute path excludefiles = @CMAKE_SOURCE_DIR@/import/Lomiri/Content/ResponsiveGridView.qml outputdir = html outputformat = HTML outputprefixes = QML outputprefixes.QML = qml- HTML.templatedir = ../../../doc/ HTML.nobreadcrumbs = "true" HTML.stylesheets = \ css/reset.css \ css/qtquick.css \ css/base.css \ css/scratch.css HTML.headerstyles = \ "\n" \ "\n" \ "\n" \ "\n" HTML.postheader = \ "
\n" \ "
\n" HTML.footer = \ "
\n" \ "
\n" \ "
\n" \ "
\n" \ " \n" \ "

© 2021 UBports Foundation.

\n" \ "

© 2013 Canonical Ltd. Ubuntu and Canonical are registered trademarks of Canonical Ltd.

\n" \ "
\n" \ "
\n" content-hub-1.1.1/doc/qml/pages/000077500000000000000000000000001456121157600164055ustar00rootroot00000000000000content-hub-1.1.1/doc/qml/pages/mainpage.qdoc000066400000000000000000000111011456121157600210300ustar00rootroot00000000000000/*! \page index.html overview \title Lomiri Content API \contentspage {Lomiri Content API} {Contents} \section1 Content Management & Exchange \section2 Introduction Unity and the overall Lomiri experience put heavy emphasis on the notion of content, with Unity's dash offering streamlined access to arbitrary content, both local to the device or online. More to this, Unity's dash is the primary way of surfacing content on mobile form factors without the need to access individual applications and their respective content silos. The content-hub deals with application-specific content management and implements an architecture that allows an app to define its own content silo, exchange content with other applications/the system, and a way to provide the user with content picking functionality. \section3 Definitions To ease conversations, we start over with a set of definitions: \list \li \b {Content item}: A content item is an entity that consists of meta-data and data. E.g., an image is a content item, where the actual pixels are the data, and information like size, image format, bit depth, location etc. is considered meta data. See also \l ContentItem. \li \b {Content types}: A set of well-known content types. E.g., images or music files. See also \l {ContentType} \li \b {Content set}: A set of unique content items. Can be considered a content item itself, e.g., in the case of playlists. \li \b {Content owner}: The unique owner of a content item. A content item has to be owned by exactly one app. See also \l {ContentPeer} \li \b {Content store}: A container (think of it as a top-level folder in the filesystem) that contains content items of a certain type. Different stores exist for different scopes, where scope refers to either system-wide, user-wide or app-specific storage locations. See also \l {ContentStore} \li \b {Content transfer}: Transferring content item/s to and from a source or destination. A transfer is uniquely defined by a source, destination, direction (import or export), and a set of items that should be exchanged. See also \l {ContentTransfer} \li \b {Content picking}: Operation that allows a user to select content for subsequent import from a content source (e.g., an application). The content source is responsible for providing a UI to the user. \endlist \section3 Architectural Overview The architecture enforces complete application isolation, both in terms of content separation, sandboxing/confinement and in terms of the application lifecycle. As we cannot assume that two apps that want to exchange content are running at the same time, a system-level component needs to mediate and control the content exchange operation, making sure that neither app instance assumes the existence of the other one. We refer to this component as the content hub. \sa {ContentHub} \section3 Example usage - Importing Pictures \qml import QtQuick 2.0 import Lomiri.Components 1.1 import Lomiri.Content 1.1 Rectangle { id: root property list importItems property var activeTransfer ContentPeer { id: picSourceSingle contentType: ContentType.Pictures handler: ContentHandler.Source selectionType: ContentTransfer.Single } ContentPeer { id: picSourceMulti contentType: ContentType.Pictures handler: ContentHandler.Source selectionType: ContentTransfer.Multiple } Row { Button { text: "Import single item" onClicked: { root.activeTransfer = picSourceSingle.request() } } Button { text: "Import multiple items" onClicked: { root.activeTransfer = picSourceMulti.request() } } } ContentTransferHint { id: transferHint anchors.fill: parent activeTransfer: root.activeTransfer } Connections { target: root.activeTransfer onStateChanged: { if (root.activeTransfer.state === ContentTransfer.Charged) importItems = root.activeTransfer.items; } } } \endqml \section1 General Topics \list \li \l {ContentHub} \li \l {ContentPeer} \li \l {ContentPeerModel} \li \l {ContentPeerPicker} \li \l {ContentStore} \li \l {ContentTransfer} \li \l {ContentTransferHint} \li \l {ContentType} \endlist \section1 Reporting Bugs If you find any problems with the or this documentation, please file a bug in Lomiri Content API \l {https://gitlab.com/ubports/development/core/content-hub} {project page} \section1 Components Available through: \code import Lomiri.Content 1.1 \endcode */ content-hub-1.1.1/doc/qml/pages/moduledef.qdoc000066400000000000000000000000461456121157600212210ustar00rootroot00000000000000/*! \qmlmodule Lomiri.Content 1.1 */ content-hub-1.1.1/examples/000077500000000000000000000000001456121157600155665ustar00rootroot00000000000000content-hub-1.1.1/examples/CMakeLists.txt000066400000000000000000000013541456121157600203310ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine add_subdirectory(importer) add_subdirectory(exporter) add_subdirectory(pasteboard) content-hub-1.1.1/examples/export-qml/000077500000000000000000000000001456121157600176765ustar00rootroot00000000000000content-hub-1.1.1/examples/export-qml/app-exporter.qml000066400000000000000000000147171456121157600230510ustar00rootroot00000000000000import QtQuick 2.0 import Lomiri.Components 0.1 import Lomiri.Components.Popups 0.1 import Lomiri.Components.ListItems 0.1 as ListItem import Lomiri.Content 0.1 MainView { id: root applicationName: "app-exporter" width: units.gu(50) height: units.gu(60) property bool pickMode: activeTransfer.state === ContentTransfer.InProgress property var selectedItems: [] property var activeTransfer ListModel { id: images ListElement { src: "file:///usr/share/icons/hicolor/128x128/apps/ubuntuone-music.png" } ListElement { src: "file:///usr/share/icons/hicolor/128x128/apps/ubuntuone-music.png" } ListElement { src: "file:///usr/share/icons/hicolor/128x128/apps/ubuntuone-music.png" } ListElement { src: "file:///usr/share/icons/hicolor/128x128/apps/ubuntuone-music.png" } } GridView { anchors.fill: parent model: images cellWidth: 128 cellHeight: 128 delegate: itemDelegate } Component { id: resultComponent ContentItem {} } Component { id: itemDelegate Item { width: 128 height: 128 property bool isSelected: false LomiriShape { width: parent.width height: width image: Image { id: image source: src height: parent.width width: height fillMode: Image.PreserveAspectFit smooth: true } MouseArea { anchors.fill: parent enabled: pickMode onClicked: { var shouldAdd = true; for (var i = 0; i < selectedItems.length; i++) { console.log("item: ", selectedItems[i]); if (selectedItems[i] === src) { selectedItems.pop(i); shouldAdd = false; isSelected = false; } } if (shouldAdd) { selectedItems.push(src); isSelected = true; } } } Image { id: selectionTick anchors.right: parent.right anchors.top: parent.top width: units.gu(5) height: units.gu(5) visible: isSelected source: "photo-preview-selected-overlay.png" } MouseArea { anchors.fill: parent enabled: !pickMode onClicked: { actPop.show(); } } ActionSelectionPopover { id: actPop delegate: ListItem.Standard { text: action.text } contentWidth: childrenRect.width actions: ActionList { Action { text: "Open with..." onTriggered: { print(text + ": " + src); activeTransfer = picDest.request(); activeTransfer.items = [ resultComponent.createObject(root, {"url": src}) ]; activeTransfer.state = ContentTransfer.Charged; actPop.hide(); } } Action { text: "Share" onTriggered: { print(text + ": " + src); activeTransfer = picShare.request(); activeTransfer.items = [ resultComponent.createObject(root, {"url": src}) ]; activeTransfer.state = ContentTransfer.Charged; actPop.hide(); } } } } } } } ContentPeer { id: picDest // well know content type contentType: ContentType.Pictures // Type of handler: Source, Destination, or Share handler: ContentHandler.Destination // Optional appId, if this isn't specified the hub will use the default //appId: "" } ContentPeer { id: picShare // well know content type contentType: ContentType.Pictures // Type of handler: Source, Destination, or Share handler: ContentHandler.Share // Optional appId, if this isn't specified the hub will use the default appId: "pkg_app_version" } // Provides overlay showing another app is being used to complete the request // formerly named ContentImportHint ContentTransferHint { anchors.fill: parent activeTransfer: activeTransfer } Connections { target: ContentHub onExportRequested: { activeTransfer = transfer } } ListItem.Empty { id: pickerButtons anchors { left: parent.left right: parent.right bottom: parent.bottom margins: units.gu(2) } visible: pickMode Button { anchors { left: parent.left bottom: parent.bottom margins: units.gu(2) } text: "Cancel" onClicked: activeTransfer.state = ContentTransfer.Aborted; } Button { anchors { right: parent.right bottom: parent.bottom margins: units.gu(2) } text: "Select" onClicked: { var results = []; for (var i = 0; i < selectedItems.length; i++) results.push(resultComponent.createObject(root, {"url": selectedItems[i]})); if (results.length > 0) activeTransfer.items = results; } } } } content-hub-1.1.1/examples/export-qml/export.qml000066400000000000000000000031461456121157600217360ustar00rootroot00000000000000import QtQuick 2.0 import Lomiri.Components 0.1 import Lomiri.Content 0.1 MainView { id: root width: 300 height: 200 property bool pickMode: activeTransfer.state === ContentTransfer.InProgress property list selectedItems property var activeTransfer Button { id: button1 anchors.top: parent.top anchors.left: parent.left enabled: pickMode text: "Return URL1" onClicked: { selectedItems = [ resultComponent.createObject(root, {"url": "file:///picture_1.jpg"}) ]; activeTransfer.items = selectedItems; } } Button { id: button2 anchors.top: parent.top anchors.right: parent.right enabled: pickMode text: "Return Url2" onClicked: { selectedItems.push(resultComponent.createObject(root, {"url": "file:///picture_1.jpg"})); selectedItems.push(resultComponent.createObject(root, {"url": "file:///picture_2.jpg"})); console.log(selectedItems[0].url + "/" + selectedItems[1].url) activeTransfer.items = selectedItems; } } Button { id: buttonAbort anchors.bottom: parent.bottom anchors.horizontalCenter: parent.horizontalCenter enabled: pickMode text: "Cancel" onClicked: { activeTransfer.state = ContentTransfer.Aborted; } } Component { id: resultComponent ContentItem {} } Connections { target: ContentHub onExportRequested: { activeTransfer = transfer } } } content-hub-1.1.1/examples/export-qml/photo-preview-selected-overlay.png000066400000000000000000000113371456121157600264660ustar00rootroot00000000000000PNG  IHDRZë́ztEXtSoftwareAdobe ImageReadyqe<$iTXtXML:com.adobe.xmp QIDATxpgǟw~kIrVRQi[ TTLqN;tX/ lLE() ?\~@ٽ.y].}{y}(A?Eγg!DruI{1[1sU~.)8.Ḁ88cF #d|]__s` Ұ Ћ{8q(h/5hMV_%8p\:?H-9@= y.?7qdJhbݭVkkC!4[2&j/ui)<6¾:|]e>lcg@Ax/h-Q̠@Ю+[A:A_FNj89\NuҠ5`66وYVϮHؠg,D`6}|~Bz*Y +cF x͛y Y Km6Ce"jûWx hKp',EvD>M=۔`tجLL.UOɐzt(o5rS 4n:rmv2,R8F6(Eгld6ɫڀ]H9vy[-^*C^㿨[u+$c&Hs8&.ܳ7 8wuX`g2gN/Y$飳oqpKW6U*Zg$yYuhtT[Mh,;tV*[s!oW + &/RYs;i>y)So;e ͣ kH6< ]/?5w/χ䓯gj#_A;CTh Hnj#@$O: M@聁W )s7€FTƓZ 諣!F7H(5lf. mJG2؜дy/OuVⷩD2̕ќsBӖ! Y`3{ٜf=dNF;A7ߥFB; V9V2wʕ+r(jQɭpuZzCК{{{;ʥ){K v=>rKڶ`@E{ 2o#]MGnJ:֑H$y|$7N |qV"hۑ# 1Ńr%дq$N_lNJh%}rSt] Hnك,G׳JJo"(ŕX 1MuO^mN>B21lATvlm!}[I@V @l +ݹ֡sKxAIbK!ECZSḍғB=8qVBS/'u>lţu(ȁb. lD{vLNIR.Ç.c@Ƹ;Aςnf#93ul?e={ *8GyHvP i)^am*?z_#\z6*A`= h/ ׏L$bO{ T& L.ZjW7p=f#i+ $8Zͼ$PYHA#7o;vl@if^9my=mDlP,gMJ{22wkW.\^:ihCc5;M .oXhP1Fpݺu˖-{ LPwmZ rT & &.eN7n\̝;wQCCô`0X}3`4eGoc ]|%K>mڴSNWgHMLhEt:ŌٻYehhii6F/o5kI&EmpIXhtZf9j̙3뮛o曧džeB|}zCLAvhհ .dyKj̙?9}Ĕ)SJT{ 1uD` r63Eh M㹀){O h%d8qbt\.W;y:ԄpG`V - wJ@qu?ko øo.Q_gT}K5?f!hҠ .p̭jbT'/^CBYuM7$1wB 4hڬh" 2 Z"@'-mnZA˦!Qy;i-RV\@X_纤1L D@͓*,hQ^t 7(kNe&ZbBd&(AQ<Ȭ8@\T, cA,D_Тo sxiu˛%zqOAtuHF#IENDB`content-hub-1.1.1/examples/exporter/000077500000000000000000000000001456121157600174365ustar00rootroot00000000000000content-hub-1.1.1/examples/exporter/CMakeLists.txt000066400000000000000000000017031456121157600221770ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_executable( exporter exporter.cpp exampleexporter.cpp ) target_link_libraries(exporter Qt5::Core Qt5::Gui Qt5::DBus) set_target_properties( exporter PROPERTIES AUTOMOC TRUE ) target_link_libraries( exporter content-hub ) content-hub-1.1.1/examples/exporter/exampleexporter.cpp000066400000000000000000000035251456121157600233730ustar00rootroot00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "exampleexporter.h" ExampleExporter::ExampleExporter() { auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(this); } void ExampleExporter::handle_import(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void ExampleExporter::handle_export(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO; if (transfer == nullptr) { qDebug() << Q_FUNC_INFO << "Transfer null"; return; } if (transfer->selectionType() == cuc::Transfer::SelectionType::single) qDebug() << Q_FUNC_INFO << "selectionType: single"; else if (transfer->selectionType() == cuc::Transfer::SelectionType::multiple) qDebug() << Q_FUNC_INFO << "selectionType: multiple"; QVector items; items << cuc::Item(QUrl("file:///tmp/test1")); auto i = cuc::Item(); i.setName("Test2"); i.setText("Test Two"); items << i; transfer->charge(items); qDebug() << Q_FUNC_INFO << "Items:" << items.count(); } void ExampleExporter::handle_share(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } content-hub-1.1.1/examples/exporter/exampleexporter.h000066400000000000000000000023611456121157600230350ustar00rootroot00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef EXAMPLEEXPORTER_H #define EXAMPLEEXPORTER_H #include #include #include #include #include namespace cuc = com::lomiri::content; class ExampleExporter : public cuc::ImportExportHandler { Q_OBJECT public: ExampleExporter(); public Q_SLOTS: Q_INVOKABLE void handle_import(cuc::Transfer*); Q_INVOKABLE void handle_export(cuc::Transfer*); Q_INVOKABLE void handle_share(cuc::Transfer*); }; #endif // EXAMPLEEXPORTER_H content-hub-1.1.1/examples/exporter/exporter.cpp000066400000000000000000000026441456121157600220200ustar00rootroot00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include "exampleexporter.h" namespace cuc = com::lomiri::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "gallery-app"); } ExampleExporter exporter; QString peerName; if (a.arguments().size() > 1) peerName = a.arguments().at(1); if (!peerName.isEmpty()) { qDebug() << peerName; auto hub = cuc::Hub::Client::instance(); auto peer = cuc::Peer{peerName}; qDebug() << Q_FUNC_INFO << "PEER: " << peer.id(); auto transfer = hub->create_export_to_peer(peer); exporter.handle_export(transfer); } return a.exec(); } content-hub-1.1.1/examples/import-qml/000077500000000000000000000000001456121157600176675ustar00rootroot00000000000000content-hub-1.1.1/examples/import-qml/import.qml000066400000000000000000000072261456121157600217230ustar00rootroot00000000000000import QtQuick 2.0 import Lomiri.Components 0.1 import Lomiri.Components.ListItems 0.1 as ListItem import Lomiri.Content 0.1 MainView { id: root applicationName: "import-qml" width: 300 height: 200 property list importItems property var activeTransfer ContentPeer { id: picSource // well know content type contentType: ContentType.Pictures // Type of handler: Source, Destination, or Share handler: ContentHandler.Source // Optional appId, if this isn't specified the hub will use the default //appId: "" } // Optional store to use for persistent storage of content ContentStore { id: appStore scope: ContentScope.App } // Provides a list suitable for use as a model ContentPeerModel { id: picSources // Type of handler: Source, Destination, or Share handler: ContentHandler.Source // well know content type contentType: ContentType.Pictures } ListView { id: peerList anchors { left: parent.left right: parent.right top: importButtons.bottom } height: childrenRect.height model: picSources.peers delegate: ListItem.Standard { text: modelData.name control: Button { text: "Import" onClicked: { // Request the transfer, it needs to be created and dispatched from the hub activeTransfer = modelData.request(); } } } } ListItem.Empty { id: importButtons Button { anchors { left: parent.left margins: units.gu(2) } text: "Import from default" onClicked: { // Request the transfer, it needs to be created and dispatched from the hub // Specify a location to use for permanent storage activeTransfer = picSource.request(appStore); } } Button { anchors { right: parent.right margins: units.gu(2) } text: "Finalize import" enabled: activeTransfer.state === ContentTransfer.Collected onClicked: activeTransfer.finalize() } } ListView { id: resultList anchors { left: parent.left right: parent.right top: peerList.bottom } height: childrenRect.height model: importItems delegate: ListItem.Empty { id: result height: 128 LomiriShape { anchors.horizontalCenter: parent.horizontalCenter width: image.width height: image.height image: Image { id: image source: url height: result.height fillMode: Image.PreserveAspectFit smooth: true } } } } // Provides overlay showing another app is being used to complete the request // formerly named ContentImportHint ContentTransferHint { anchors.fill: parent activeTransfer: activeTransfer } Connections { target: activeTransfer onStateChanged: { console.log("StateChanged: " + activeTransfer.state); if (activeTransfer.state === ContentTransfer.Charged) importItems = activeTransfer.items; } } } content-hub-1.1.1/examples/importer/000077500000000000000000000000001456121157600174275ustar00rootroot00000000000000content-hub-1.1.1/examples/importer/CMakeLists.txt000066400000000000000000000017211456121157600221700ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_executable( importer importer.cpp exampleimporter.cpp example.cpp ) target_link_libraries(importer Qt5::Core Qt5::Gui Qt5::DBus) set_target_properties( importer PROPERTIES AUTOMOC TRUE ) target_link_libraries( importer content-hub ) content-hub-1.1.1/examples/importer/example.cpp000066400000000000000000000026571456121157600216000ustar00rootroot00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "example.h" #include Example::Example(QObject *parent) : QObject(parent), m_importer(new ExampleImporter()) { } void Example::create_import() { auto hub = cuc::Hub::Client::instance(); auto peer = hub->default_source_for_type(cuc::Type::Known::pictures()); qDebug() << Q_FUNC_INFO << "PEER: " << peer.name(); m_transfer = hub->create_import_from_peer(peer); /* Uncommit this for persistent storage auto store = hub->store_for_scope_and_type(cuc::Scope::app, cuc::Type::Known::pictures()); qDebug() << Q_FUNC_INFO << "STORE:" << store->uri(); m_transfer->setStore(store); */ m_transfer->setSelectionType(cuc::Transfer::SelectionType::multiple); m_transfer->start(); } content-hub-1.1.1/examples/importer/example.h000066400000000000000000000017451456121157600212420ustar00rootroot00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef EXAMPLE_H #define EXAMPLE_H #include #include "exampleimporter.h" class Example : public QObject { Q_OBJECT public: explicit Example(QObject *parent = 0); void create_import(); private: ExampleImporter *m_importer; cuc::Transfer *m_transfer; }; #endif // EXAMPLE_H content-hub-1.1.1/examples/importer/exampleimporter.cpp000066400000000000000000000031471456121157600233550ustar00rootroot00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "exampleimporter.h" ExampleImporter::ExampleImporter() { auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(this); } void ExampleImporter::handle_import(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO; auto items = transfer->collect(); qDebug() << Q_FUNC_INFO << "Items:" << items.count(); Q_FOREACH(cuc::Item item, items) { qDebug() << Q_FUNC_INFO << "URL:" << item.url(); qDebug() << Q_FUNC_INFO << "Name:" << item.name(); qDebug() << Q_FUNC_INFO << "Text:" << item.text(); qDebug() << Q_FUNC_INFO << "StreamType:" << item.streamType(); } transfer->finalize(); } void ExampleImporter::handle_export(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void ExampleImporter::handle_share(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } content-hub-1.1.1/examples/importer/exampleimporter.h000066400000000000000000000023341456121157600230170ustar00rootroot00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef EXAMPLEIMPORTER_H #define EXAMPLEIMPORTER_H #include #include #include #include #include namespace cuc = com::lomiri::content; class ExampleImporter : public cuc::ImportExportHandler { Q_OBJECT public: ExampleImporter(); Q_INVOKABLE void handle_import(cuc::Transfer*); Q_INVOKABLE void handle_export(cuc::Transfer*); Q_INVOKABLE void handle_share(cuc::Transfer*); }; #endif // EXAMPLEIMPORTER_H content-hub-1.1.1/examples/importer/importer.cpp000066400000000000000000000026261456121157600220020ustar00rootroot00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include "example.h" namespace cuc = com::lomiri::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); Example *e = new Example(); QString peerName; if (a.arguments().size() > 1) peerName = a.arguments().at(1); if (!peerName.isEmpty()) { qDebug() << peerName; auto hub = cuc::Hub::Client::instance(); auto peer = cuc::Peer{peerName}; qDebug() << Q_FUNC_INFO << "PEER: " << peer.id(); auto transfer = hub->create_import_from_peer(peer); transfer->setSelectionType(cuc::Transfer::SelectionType::multiple); transfer->start(); } Q_UNUSED(e); return a.exec(); } content-hub-1.1.1/examples/pasteboard/000077500000000000000000000000001456121157600177125ustar00rootroot00000000000000content-hub-1.1.1/examples/pasteboard/CMakeLists.txt000066400000000000000000000023411456121157600224520ustar00rootroot00000000000000# Copyright © 2016 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_executable( copy-to-pasteboard copy.cpp ) target_link_libraries(copy-to-pasteboard Qt5::Core Qt5::Gui Qt5::DBus) set_target_properties( copy-to-pasteboard PROPERTIES AUTOMOC TRUE ) target_link_libraries( copy-to-pasteboard content-hub ) add_executable( paste-from-pasteboard paste.cpp ) target_link_libraries(paste-from-pasteboard Qt5::Core Qt5::Gui Qt5::DBus) set_target_properties( paste-from-pasteboard PROPERTIES AUTOMOC TRUE ) target_link_libraries( paste-from-pasteboard content-hub ) content-hub-1.1.1/examples/pasteboard/copy.cpp000066400000000000000000000034611456121157600213740ustar00rootroot00000000000000/* * Copyright (C) 2016 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include #include #include namespace cuc = com::lomiri::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "copy-to-pasteboard"); } QString text("Some text"); if (a.arguments().size() > 1) text = a.arguments().at(1); QMimeData data; data.setText(text); auto hub = cuc::Hub::Client::instance(); /* Won't work unless you disable the surface Id verification with CONTENT_HUB_TESTING=1 env var To get the surface Id of a MirSurface in a real GUI app you should to it like the following: MirPersistentId* mirPermaId = mir_surface_request_persistent_id_sync(mirSurface); QString surfaceId = mir_persistent_id_as_string(mirPermaId); mir_persistent_id_release(mirPermaId); */ QString surfaceId("some-bogus-fake-surface-id"); hub->createPasteSync(surfaceId, const_cast(data)); qDebug() << text; qDebug() << hub->pasteFormats(); } content-hub-1.1.1/examples/pasteboard/paste.cpp000066400000000000000000000036361456121157600215420ustar00rootroot00000000000000/* * Copyright (C) 2016 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include namespace cuc = com::lomiri::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "paste-from-pasteboard"); } QString id("latest"); if (a.arguments().size() > 1) id = a.arguments().at(1); auto hub = cuc::Hub::Client::instance(); /* Won't work unless you disable the surface Id verification with CONTENT_HUB_TESTING=1 env var To get the surface Id of a MirSurface in a real GUI app you should to it like the following: MirPersistentId* mirPermaId = mir_surface_request_persistent_id_sync(mirSurface); QString surfaceId = mir_persistent_id_as_string(mirPermaId); mir_persistent_id_release(mirPermaId); */ QString surfaceId("some-bogus-fake-surface-id"); QMimeData *mimeData = nullptr; if (id == "latest") { mimeData = hub->latestPaste(surfaceId); } else { mimeData = hub->pasteById(surfaceId, id.toInt()); } if (mimeData) { qDebug() << id << ":" << mimeData->text(); } else { qDebug() << "content-hub returned no mimedata."; } return 0; } content-hub-1.1.1/examples/picker-qml/000077500000000000000000000000001456121157600176325ustar00rootroot00000000000000content-hub-1.1.1/examples/picker-qml/picker.qml000066400000000000000000000073411456121157600216270ustar00rootroot00000000000000import QtQuick 2.0 import Lomiri.Components 0.1 import Lomiri.Components.ListItems 0.1 as ListItem import Lomiri.Components.Popups 0.1 import Lomiri.Content 0.1 MainView { id: mainView applicationName: "picker-qml" width: units.gu(100) height: units.gu(75) PageStack { id: pageStack Component.onCompleted: pageStack.push(root) Page { id: root title: i18n.tr("Peer Picker Example") visible: false property list importItems property var activeTransfer property list peers Column { anchors.fill: parent ListItem.Standard { id: peerListHeader anchors { left: parent.left right: parent.right } text: i18n.tr("Sources") control: Button { text: i18n.tr("Select source") onClicked: { pageStack.push(picker); } } } ListItem.Header { id: titleItem anchors { left: parent.left right: parent.right } text: i18n.tr("Results") } GridView { id: resultList anchors { left: parent.left right: parent.right } height: childrenRect.height cellWidth: units.gu(20) cellHeight: cellWidth model: root.importItems delegate: Item { id: result height: units.gu(19) width: height LomiriShape { width: parent.width height: width image: Image { id: image source: url sourceSize.width: width sourceSize.height: height height: parent.height width: height fillMode: Image.PreserveAspectFit smooth: true } } } } } ContentTransferHint { anchors.fill: root activeTransfer: root.activeTransfer } Connections { target: root.activeTransfer onStateChanged: { console.log("StateChanged: " + root.activeTransfer.state); if (root.activeTransfer.state === ContentTransfer.Charged) root.importItems = root.activeTransfer.items; } } } Page { id: picker visible: false ContentPeerPicker { visible: parent.visible // Type of handler: Source, Destination, or Share handler: ContentHandler.Source // well know content type contentType: ContentType.Pictures onPeerSelected: { root.activeTransfer = peer.request(); pageStack.pop(); } onCancelPressed: { pageStack.pop(); } } } } } content-hub-1.1.1/import/000077500000000000000000000000001456121157600152625ustar00rootroot00000000000000content-hub-1.1.1/import/CMakeLists.txt000066400000000000000000000012671456121157600200300ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . add_subdirectory(Lomiri) if (ENABLE_UBUNTU_COMPAT) add_subdirectory(Ubuntu) endif() content-hub-1.1.1/import/Lomiri/000077500000000000000000000000001456121157600165155ustar00rootroot00000000000000content-hub-1.1.1/import/Lomiri/CMakeLists.txt000066400000000000000000000011721456121157600212560ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . add_subdirectory(Content) content-hub-1.1.1/import/Lomiri/Content/000077500000000000000000000000001456121157600201275ustar00rootroot00000000000000content-hub-1.1.1/import/Lomiri/Content/CMakeLists.txt000066400000000000000000000065751456121157600227040ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . project(content-hub-plugin) find_package(Qt5Quick REQUIRED) set(CMAKE_AUTOMOC TRUE) set(QT_IMPORTS_DIR "${CMAKE_INSTALL_LIBDIR}/qt5/qml") set(CONTENT_HUB_IMPORTS_DIR "${QT_IMPORTS_DIR}/Lomiri/Content") set(PLUGIN lomiri-content-hub-plugin) add_definitions(-DQT_NO_KEYWORDS) if (ENABLE_UBUNTU_COMPAT) add_definitions(-DENABLE_UBUNTU_COMPAT) endif () include_directories( ${CMAKE_SOURCE_DIR} ${LOMIRI_API_INCLUDE_DIRS} ${DBUS_INCLUDE_DIRS} ${GLIB_INCLUDE_DIRS} ${LOMIRI_LAUNCH_INCLUDE_DIRS} ) set(PLUGIN_HDRS contenthandler.h contenthub.h contenthubplugin.h contenticonprovider.h contentitem.h contentpeer.h contentpeermodel.h contentscope.h contentstore.h contenttransfer.h contenttype.h qmlimportexporthandler.h ) set(PLUGIN_SRC contenthandler.cpp contenthub.cpp contenthubplugin.cpp contenticonprovider.cpp contentitem.cpp contentpeer.cpp contentpeermodel.cpp contentscope.cpp contentstore.cpp contenttransfer.cpp contenttype.cpp qmlimportexporthandler.cpp ../../../src/com/lomiri/content/debug.cpp ) add_library(${PLUGIN} MODULE ${PLUGIN_SRC} ${PLUGIN_HDRS}) target_link_libraries(${PLUGIN} Qt5::Core Qt5::Qml Qt5::Quick Qt5::DBus) target_link_libraries( ${PLUGIN} content-hub ${LOMIRI_API_LIBRARIES} ${GLIB_LIBRARIES} ${LOMIRI_LAUNCH_LDFLAGS} ) install(TARGETS ${PLUGIN} DESTINATION ${CONTENT_HUB_IMPORTS_DIR}) install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/qmldir DESTINATION ${CONTENT_HUB_IMPORTS_DIR}) file(GLOB QML_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.qml qmldir) install(FILES ${QML_FILES} DESTINATION ${CONTENT_HUB_IMPORTS_DIR}) if(NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}) # copy qml files and assets over to build dir to be able to import them uninstalled foreach(_file ${QML_FILES}) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_file} DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${_file} COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/${_file} ${CMAKE_CURRENT_BINARY_DIR}/${_file}) endforeach(_file) add_custom_target(copy_files_to_build_dir DEPENDS ${QML_FILES}) add_dependencies(${PLUGIN} copy_files_to_build_dir) endif() if(NOT CMAKE_CROSSCOMPILING) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/plugins.qmltypes COMMAND qmlplugindump -qt=qt5 -noinstantiate -notrelocatable Lomiri.Content 1.1 ../../ > ${CMAKE_CURRENT_BINARY_DIR}/plugins.qmltypes DEPENDS ${PLUGIN} WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" ) add_custom_target(Content_generated_files ALL SOURCES ${CMAKE_CURRENT_BINARY_DIR}/plugins.qmltypes) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/plugins.qmltypes DESTINATION ${CONTENT_HUB_IMPORTS_DIR}) endif() content-hub-1.1.1/import/Lomiri/Content/ContentPageHeader.qml000066400000000000000000000046171456121157600241720ustar00rootroot00000000000000 /* * Copyright 2015 Canonical Ltd. * * This file is part of content-hub. * * webbrowser-app is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * webbrowser-app is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.4 import Lomiri.Components 1.3 import Lomiri.Components.ListItems 1.3 as ListItem /* * Component to use as page header in the ContentPeerPicker * * It has a cancel() signal fired when cancel button is pressed and a title * property to set the page title */ Column { id: root signal cancel() property string title height: childrenRect.height anchors { left: parent.left right: parent.right } Rectangle { id: title height: units.gu(7) - divider.height anchors { left: parent.left; right: parent.right } Rectangle { anchors.fill: parent color: Theme.palette.normal.background } AbstractButton { id: cancelButton objectName: "cancelButton" width: height onTriggered: root.cancel() anchors { top: parent.top bottom: parent.bottom left: parent.left } Rectangle { anchors.fill: parent anchors.leftMargin: units.gu(1) anchors.rightMargin: units.gu(1) color: "#E6E6E6" visible: parent.pressed } Icon { name: "close" anchors { fill: parent topMargin: units.gu(2) bottomMargin: units.gu(2) } } } Label { anchors { left: cancelButton.right verticalCenter: parent.verticalCenter } text: root.title fontSize: 'x-large' } } ListItem.Divider { id: divider } } content-hub-1.1.1/import/Lomiri/Content/ContentPeerPicker.qdoc000066400000000000000000000047401456121157600243700ustar00rootroot00000000000000/* * Copyright 2014 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ /*! \qmltype ContentPeerPicker \inqmlmodule Lomiri.Content \brief Component that allows users to select a source/destination for content transfer This component displays a list of applications, devices and services which are appropriate for transferring a given content type with. */ /*! \qmlproperty ContentHandler ContentPeerPicker::handler \brief The ContentHandler to use when finding peers. */ /*! \qmlproperty ContentType ContentPeerPicker::contentType \brief The ContentType to use when finding peers. */ /*! \qmlproperty bool ContentPeerPicker::showTitle \brief Determines whether the header should be displayed. This makes it possible to hide the header, which can be useful if embedding the picker within another page or popup. */ /*! \qmlproperty ContentPeer ContentPeerPicker::peer \brief The peer selected by the user. Once the peerSelected signal has been sent, this provides the ContentPeer which the user has selected. */ /*! \qmlproperty Loader ContentPeerPicker::customerPeerModelLoader \brief A Loader containing a ContentPeerModel. This can optionally be used to provide a pre-populated ContentPeerModel to this ContentPeerPicker. */ /*! \qmlproperty string ContentPeerPicker::headerText \brief Text to display in the header. */ /*! \qmlsignal ContentPeerPicker::peerSelected() \brief Emitted when a user selects a peer. Once this signal has been emitted the selected peer can be accessed via the peer property. \c onPeerSelected */ /*! \qmlsignal ContentPeerPicker::cancelPressed() \brief Emitted when the user clicks the cancel button. The ContentPeerPicker will be hidden automatically when the user cancels the operations and the active ContentTransfer will be set to Aborted. \c onCancelPressed */ content-hub-1.1.1/import/Lomiri/Content/ContentPeerPicker10.qml000066400000000000000000000203431456121157600243710ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Lomiri.Components 0.1 import Lomiri.Components.Popups 0.1 import Lomiri.Components.ListItems 0.1 as ListItem import Lomiri.Content 0.1 import "." /*! \internal Documentation is in ContentPeerPicker.qdoc */ Item { id: root anchors.fill: parent property var handler property var contentType property alias showTitle: header.visible property var peer property var customPeerModelLoader property var completed: false signal peerSelected signal cancelPressed Rectangle { id: background anchors.fill: parent color: Theme.palette.normal.background } Header { id: header title: (handler === ContentHandler.Source) ? i18n.dtr("content-hub", "Choose from") : (handler === ContentHandler.Destination ? i18n.dtr("content-hub", "Open with") : i18n.dtr("content-hub", "Share to")) } Loader { id: peerModelLoader active: false asynchronous: true sourceComponent: ContentPeerModel { } onLoaded: { item.handler = root.handler; item.contentType = root.contentType; } } Component.onCompleted: { if (root.visible) { if (customPeerModelLoader) { customPeerModelLoader.active = true; } else { peerModelLoader.active = true; } } completed = true; } onVisibleChanged: { if (completed) { if (customPeerModelLoader) { customPeerModelLoader.active = true; } else { peerModelLoader.active = true; } } } onHandlerChanged: { if (!customPeerModelLoader && peerModelLoader.item) { appPeers.model = undefined; // Clear grid view peerModelLoader.item.handler = root.handler; appPeers.model = peerModelLoader.item.peers; } } onContentTypeChanged: { if (!customPeerModelLoader && peerModelLoader.item) { appPeers.model = undefined; // Clear grid view peerModelLoader.item.contentType = root.contentType; appPeers.model = peerModelLoader.item.peers; } } Component { id: peerDelegate Item { width: units.gu(13.5) height: units.gu(16) AbstractButton { width: parent.width height: icon.height + label.height LomiriShape { id: icon anchors { top: parent.top horizontalCenter: parent.horizontalCenter } radius: "medium" width: units.gu(8) height: units.gu(7.5) image: Image { id: image objectName: "image" sourceSize { width: icon.width; height: icon.height } asynchronous: true cache: false source: "image://content-hub/" + modelData.appId horizontalAlignment: Image.AlignHCenter verticalAlignment: Image.AlignVCenter } } Label { id: label objectName: "label" anchors { baseline: icon.bottom baselineOffset: units.gu(2) left: parent.left right: parent.right leftMargin: units.gu(1) rightMargin: units.gu(1) } opacity: 0.9 fontSize: "small" horizontalAlignment: Text.AlignHCenter text: modelData.name || modelData.appId wrapMode: Text.Wrap maximumLineCount: 2 } onClicked: { peer = modelData peerSelected() } } } } ListItem.Header { id: appTitle anchors.top: header.visible ? header.bottom : parent.top text: i18n.dtr("content-hub", "Apps") } Rectangle { id: apps color: ColorUtils.luminance(background.color) >= 0.85 ? "#FFFFFF" : Qt.darker(background.color) clip: true anchors { left: parent.left right: parent.right top: appTitle.bottom bottom: devTitle.visible ? devTitle.top : cancelButton.top bottomMargin: units.gu(1) } Flickable { anchors.fill: parent ResponsiveGridView { id: appPeers anchors.fill: parent minimumHorizontalSpacing: units.gu(0.5) maximumNumberOfColumns: 6 delegateWidth: units.gu(11) delegateHeight: units.gu(11) verticalSpacing: units.gu(2) model: customPeerModelLoader ? customPeerModelLoader.item.peers : peerModelLoader.item.peers delegate: peerDelegate Label { anchors.top: parent.top anchors.topMargin: units.gu(2.5) anchors.horizontalCenter: parent.horizontalCenter width: parent.width - units.gu(5) wrapMode: Text.WordWrap horizontalAlignment: Text.AlignHCenter text: root.handler === ContentHandler.Source ? i18n.dtr("content-hub", "Sorry, there aren't currently any apps installed that can provide this type of content.") : i18n.dtr("content-hub", "Sorry, there aren't currently any apps installed that can handle this type of content.") visible: appPeers.model ? appPeers.model.length == 0 : false } } } } ListItem.Header { id: devTitle // TODO: make this visible when we have a way to populate devices visible: false anchors { left: parent.left right: parent.right top: apps.bottom } text: i18n.dtr("content-hub", "Devices") } Rectangle { id: devices // TODO: make this visible when we have a way to populate devices visible: false color: ColorUtils.luminance(background.color) >= 0.85 ? "#FFFFFF" : Qt.darker(background.color) width: parent.width radius: 0 anchors { left: parent.left right: parent.right top: devTitle.bottom bottom: cancelButton.top bottomMargin: units.gu(1) } Flickable { anchors.fill: parent ResponsiveGridView { id: devPeers anchors.fill: parent minimumHorizontalSpacing: units.gu(0.5) maximumNumberOfColumns: 6 delegateWidth: units.gu(11) delegateHeight: units.gu(9.5) verticalSpacing: units.gu(2) delegate: peerDelegate } } } Button { id: cancelButton objectName: "contentPeerPickerCancelButton" text: i18n.dtr("content-hub", "Cancel") anchors { left: parent.left bottom: parent.bottom margins: units.gu(1) } onClicked: { if(root.activeTransfer) { root.activeTransfer.state = ContentTransfer.Aborted; } cancelPressed(); } } } content-hub-1.1.1/import/Lomiri/Content/ContentPeerPicker11.qml000066400000000000000000000206051456121157600243730ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Lomiri.Components 1.1 import Lomiri.Components.Popups 0.1 import Lomiri.Components.ListItems 0.1 as ListItem import Lomiri.Content 1.1 import "." /*! \internal Documentation is in ContentPeerPicker.qdoc */ Item { id: root anchors.fill: parent property var handler property var contentType property alias showTitle: header.visible property var peer property var customPeerModelLoader property string headerText property var completed: false signal peerSelected signal cancelPressed Rectangle { id: background anchors.fill: parent color: Theme.palette.normal.background } Header { id: header title: headerText ? headerText : (handler === ContentHandler.Source) ? i18n.dtr("content-hub", "Choose from") : (handler === ContentHandler.Destination ? i18n.dtr("content-hub", "Open with") : i18n.dtr("content-hub", "Share to")) useDeprecatedToolbar: false dividerColor: Qt.darker(Theme.palette.normal.background, 1.1) config: PageHeadConfiguration { backAction: Action { objectName: "cancel" iconName: "close" text: i18n.dtr("content-hub", "Cancel") onTriggered: { if(root.activeTransfer) { root.activeTransfer.state = ContentTransfer.Aborted; } cancelPressed() } } } } Loader { id: peerModelLoader active: false asynchronous: true sourceComponent: ContentPeerModel { } onLoaded: { item.handler = root.handler; item.contentType = root.contentType; } } Component.onCompleted: { if (root.visible) { if (customPeerModelLoader) { customPeerModelLoader.active = true; } else { peerModelLoader.active = true; } } completed = true; } onVisibleChanged: { if (completed) { if (customPeerModelLoader) { customPeerModelLoader.active = true; } else { peerModelLoader.active = true; } } } onHandlerChanged: { if (!customPeerModelLoader && peerModelLoader.item) { appPeers.model = undefined; // Clear grid view peerModelLoader.item.handler = root.handler; appPeers.model = peerModelLoader.item.peers; } } onContentTypeChanged: { if (!customPeerModelLoader && peerModelLoader.item) { appPeers.model = undefined; // Clear grid view peerModelLoader.item.contentType = root.contentType; appPeers.model = peerModelLoader.item.peers; } } Component { id: peerDelegate Item { width: units.gu(13.5) height: units.gu(16) AbstractButton { width: parent.width height: icon.height + label.height LomiriShape { id: icon anchors { top: parent.top horizontalCenter: parent.horizontalCenter } radius: "medium" width: units.gu(8) height: units.gu(7.5) image: Image { id: image objectName: "image" sourceSize { width: icon.width; height: icon.height } asynchronous: true cache: false source: "image://content-hub/" + modelData.appId horizontalAlignment: Image.AlignHCenter verticalAlignment: Image.AlignVCenter } } Label { id: label objectName: "label" anchors { baseline: icon.bottom baselineOffset: units.gu(2) left: parent.left right: parent.right leftMargin: units.gu(1) rightMargin: units.gu(1) } opacity: 0.9 fontSize: "small" horizontalAlignment: Text.AlignHCenter text: modelData.name || modelData.appId wrapMode: Text.Wrap maximumLineCount: 2 } onClicked: { peer = modelData peerSelected() } } } } ListItem.Header { id: appTitle anchors.top: header.visible ? header.bottom : parent.top text: i18n.dtr("content-hub", "Apps") } Rectangle { id: apps color: ColorUtils.luminance(background.color) >= 0.85 ? "#FFFFFF" : Qt.darker(background.color) clip: true anchors { left: parent.left right: parent.right top: appTitle.bottom bottom: devTitle.visible ? devTitle.top : parent.bottom bottomMargin: units.gu(1) } Flickable { anchors.fill: parent ResponsiveGridView { id: appPeers anchors.fill: parent minimumHorizontalSpacing: units.gu(0.5) maximumNumberOfColumns: 6 delegateWidth: units.gu(11) delegateHeight: units.gu(11) verticalSpacing: units.gu(2) model: customPeerModelLoader ? customPeerModelLoader.item.peers : peerModelLoader.item.peers delegate: peerDelegate Label { anchors.top: parent.top anchors.topMargin: units.gu(2.5) anchors.horizontalCenter: parent.horizontalCenter width: parent.width - units.gu(5) wrapMode: Text.WordWrap horizontalAlignment: Text.AlignHCenter text: root.handler === ContentHandler.Source ? i18n.dtr("content-hub", "Sorry, there aren't currently any apps installed that can provide this type of content.") : i18n.dtr("content-hub", "Sorry, there aren't currently any apps installed that can handle this type of content.") visible: appPeers.model ? appPeers.model.length == 0 : false } } } } ListItem.Header { id: devTitle // TODO: make this visible when we have a way to populate devices visible: false anchors { left: parent.left right: parent.right top: apps.bottom } text: i18n.dtr("content-hub", "Devices") } Rectangle { id: devices // TODO: make this visible when we have a way to populate devices visible: false color: ColorUtils.luminance(background.color) >= 0.85 ? "#FFFFFF" : Qt.darker(background.color) width: parent.width radius: 0 anchors { left: parent.left right: parent.right top: devTitle.bottom bottom: parent.bottom bottomMargin: units.gu(1) } Flickable { anchors.fill: parent ResponsiveGridView { id: devPeers anchors.fill: parent minimumHorizontalSpacing: units.gu(0.5) maximumNumberOfColumns: 6 delegateWidth: units.gu(11) delegateHeight: units.gu(9.5) verticalSpacing: units.gu(2) delegate: peerDelegate } } } } content-hub-1.1.1/import/Lomiri/Content/ContentPeerPicker13.qml000066400000000000000000000201461456121157600243750ustar00rootroot00000000000000/* * Copyright 2013-2015 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ import QtQuick 2.4 import Lomiri.Components 1.3 import Lomiri.Components.Popups 1.3 import Lomiri.Components.ListItems 1.3 as ListItem import Lomiri.Content 1.3 import "." /*! \internal Documentation is in ContentPeerPicker.qdoc */ Item { id: root anchors.fill: parent property var handler property var contentType property alias showTitle: header.visible property var peer property var customPeerModelLoader property string headerText property var completed: false signal peerSelected signal cancelPressed Rectangle { id: background anchors.fill: parent color: Theme.palette.normal.background } ContentPageHeader { id: header title: headerText ? headerText : (handler === ContentHandler.Source) ? i18n.dtr("content-hub", "Choose from") : (handler === ContentHandler.Destination ? i18n.dtr("content-hub", "Open with") : i18n.dtr("content-hub", "Share to")) onCancel: { if(root.activeTransfer) { root.activeTransfer.state = ContentTransfer.Aborted; } cancelPressed() } } Loader { id: peerModelLoader active: false asynchronous: true sourceComponent: ContentPeerModel { } onLoaded: { item.handler = root.handler; item.contentType = root.contentType; } } Component.onCompleted: { if (root.visible) { if (customPeerModelLoader) { customPeerModelLoader.active = true; } else { peerModelLoader.active = true; } } completed = true; } onVisibleChanged: { if (completed) { if (customPeerModelLoader) { customPeerModelLoader.active = true; } else { peerModelLoader.active = true; } } } onHandlerChanged: { if (!customPeerModelLoader && peerModelLoader.item) { appPeers.model = undefined; // Clear grid view peerModelLoader.item.handler = root.handler; appPeers.model = peerModelLoader.item.peers; } } onContentTypeChanged: { if (!customPeerModelLoader && peerModelLoader.item) { appPeers.model = undefined; // Clear grid view peerModelLoader.item.contentType = root.contentType; appPeers.model = peerModelLoader.item.peers; } } Component { id: peerDelegate Item { width: units.gu(11) height: units.gu(16) AbstractButton { width: parent.width height: icon.height + label.height LomiriShape { id: icon anchors { top: parent.top horizontalCenter: parent.horizontalCenter } radius: "medium" width: units.gu(8) height: units.gu(7.5) sourceHorizontalAlignment: Image.AlignHCenter sourceVerticalAlignment: Image.AlignVCenter source: Image { id: image objectName: "image" sourceSize { width: icon.width; height: icon.height } asynchronous: true cache: false source: "image://content-hub/" + modelData.appId } } Label { id: label objectName: "label" anchors { baseline: icon.bottom baselineOffset: units.gu(2) left: parent.left right: parent.right leftMargin: units.gu(1) rightMargin: units.gu(1) } opacity: 0.9 fontSize: "small" horizontalAlignment: Text.AlignHCenter text: modelData.name || modelData.appId wrapMode: Text.Wrap maximumLineCount: 2 } onClicked: { peer = modelData peerSelected() } } } } ListItem.Header { id: appTitle anchors.top: header.visible ? header.bottom : parent.top text: i18n.dtr("content-hub", "Apps") } Rectangle { id: apps color: ColorUtils.luminance(background.color) >= 0.85 ? "#FFFFFF" : Qt.darker(background.color) clip: true anchors { left: parent.left right: parent.right top: appTitle.bottom bottom: devTitle.visible ? devTitle.top : parent.bottom bottomMargin: units.gu(1) } Flickable { anchors.fill: parent ResponsiveGridView { id: appPeers anchors.fill: parent minimumHorizontalSpacing: units.gu(0.5) maximumNumberOfColumns: 6 delegateWidth: units.gu(11) delegateHeight: units.gu(11) verticalSpacing: units.gu(2) model: customPeerModelLoader ? customPeerModelLoader.item.peers : peerModelLoader.item ? peerModelLoader.item.peers : null delegate: peerDelegate Label { anchors.top: parent.top anchors.topMargin: units.gu(2.5) anchors.horizontalCenter: parent.horizontalCenter width: parent.width - units.gu(5) wrapMode: Text.WordWrap horizontalAlignment: Text.AlignHCenter text: root.handler === ContentHandler.Source ? i18n.dtr("content-hub", "Sorry, there aren't currently any apps installed that can provide this type of content.") : i18n.dtr("content-hub", "Sorry, there aren't currently any apps installed that can handle this type of content.") visible: appPeers.model ? appPeers.model.length == 0 : false } } } } ListItem.Header { id: devTitle // TODO: make this visible when we have a way to populate devices visible: false anchors { left: parent.left right: parent.right top: apps.bottom } text: i18n.dtr("content-hub", "Devices") } Rectangle { id: devices // TODO: make this visible when we have a way to populate devices visible: false color: ColorUtils.luminance(background.color) >= 0.85 ? "#FFFFFF" : Qt.darker(background.color) width: parent.width radius: 0 anchors { left: parent.left right: parent.right top: devTitle.bottom bottom: parent.bottom bottomMargin: units.gu(1) } Flickable { anchors.fill: parent ResponsiveGridView { id: devPeers anchors.fill: parent minimumHorizontalSpacing: units.gu(0.5) maximumNumberOfColumns: 6 delegateWidth: units.gu(11) delegateHeight: units.gu(9.5) verticalSpacing: units.gu(2) delegate: peerDelegate } } } } content-hub-1.1.1/import/Lomiri/Content/ContentTransferHint.qml000066400000000000000000000054711456121157600246130ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ import QtQuick 2.4 import Lomiri.Components 1.3 import Lomiri.Components.Popups 1.3 import Lomiri.Content 1.3 /*! \qmltype ContentTransferHint \inqmlmodule Lomiri.Content \brief Component that indicates that a transfer is active This component shows that the transfer is currently running, and the source application is active. It blocks all input during that time. Place this component on top of your view. See documentation for ContentHub to see an example */ Item { id: root /*! \qmlproperty ContentTransfer ContentTransferHint::activeTransfer \brief The ContentTransfer to monitor the status of. This should be set to the currently active ContentTransfer, which will then cause the ContentTransferHint to become visible while the transfer is in progress. */ property var activeTransfer opacity: internal.isTransferRunning ? 1.0 : 0.0 Component { id: dialog Dialog { id: dialogue title: i18n.dtr("content-hub", "Transfer in progress") ActivityIndicator { id: indicator anchors.top: parent.top anchors.topMargin: units.gu(6) running: internal.isTransferRunning } Button { id: cancelTransfer anchors.top: indicator.bottom anchors.topMargin: units.gu(4) text: i18n.dtr("content-hub", "Cancel") onClicked: { root.activeTransfer.state = ContentTransfer.Aborted } } } } QtObject { id: internal property bool isTransferRunning: root.activeTransfer ? root.activeTransfer.state === ContentTransfer.InProgress || root.activeTransfer.state === ContentTransfer.Initiated : false property var dialogue onIsTransferRunningChanged: { if (isTransferRunning) { dialogue = PopupUtils.open(dialog, root); } else { PopupUtils.close(dialogue); } } } } content-hub-1.1.1/import/Lomiri/Content/ResponsiveGridView.qml000066400000000000000000000067251456121157600244520ustar00rootroot00000000000000 /* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.4 import Lomiri.Components 1.3 /* Essentially a GridView where you can specify the maximum number of columns it can have. */ Item { property int minimumHorizontalSpacing: units.gu(0.5) // property int minimumNumberOfColumns: 2 // FIXME: not implemented property int maximumNumberOfColumns: 6 readonly property int columns: gridView.columns property alias verticalSpacing: gridView.verticalSpacing readonly property alias margins: gridView.margin property int delegateWidth property int delegateHeight property alias model: gridView.model property alias delegate: gridView.delegate readonly property int cellWidth: gridView.cellWidth readonly property int cellHeight: gridView.cellHeight property alias interactive: gridView.interactive readonly property alias flicking: gridView.flicking readonly property alias moving: gridView.moving readonly property alias pressDelay: gridView.pressDelay property alias highlightIndex: gridView.highlightIndex readonly property alias currentItem: gridView.currentItem function contentHeightForRows(rows) { return rows * cellHeight + verticalSpacing } GridView { id: gridView objectName: "responsiveGridViewGrid" anchors { fill: parent leftMargin: margin/2 + horizontalSpacing/2 rightMargin: margin/2 - horizontalSpacing/2 topMargin: verticalSpacing } onModelChanged: { clip = model && parent.height != contentHeightForRows(Math.ceil(model.count / columns)) } function pixelToGU(value) { return Math.floor(value / units.gu(1)); } function spacingForColumns(columns) { // spacing between columns as an integer number of GU, the remainder goes in the margins var spacingGU = pixelToGU(allocatableHorizontalSpace / (columns+1)); return units.gu(spacingGU); } function columnsForSpacing(spacing) { // minimum margin is half of the spacing return Math.max(1, Math.floor(parent.width / (delegateWidth + spacing))); } property real allocatableHorizontalSpace: parent.width - columns * delegateWidth property int columns: Math.min(columnsForSpacing(minimumHorizontalSpacing), maximumNumberOfColumns) property real horizontalSpacing: spacingForColumns(columns) property real verticalSpacing: horizontalSpacing property int margin: allocatableHorizontalSpace - columns * horizontalSpacing property int highlightIndex: -1 cellWidth: delegateWidth + horizontalSpacing cellHeight: delegateHeight + verticalSpacing onHighlightIndexChanged: { if (highlightIndex != -1) { currentIndex = highlightIndex } } } } content-hub-1.1.1/import/Lomiri/Content/contenthandler.cpp000066400000000000000000000023311456121157600236420ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/lomiri/content/debug.h" #include "contenthandler.h" /*! \qmltype ContentHandler \instantiates ContentHandler \inqmlmodule Lomiri.Content \brief Describes the type of transfer operation to perform \sa ContentHub \e {ContentHandler} is an enumeration of handler types: \table \header \li Handler \row \li ContentHandler.Source \row \li ContentHandler.Destination \row \li ContentHandler.Share \endtable */ ContentHandler::ContentHandler(QObject *parent) : QObject(parent) { TRACE() << Q_FUNC_INFO; } content-hub-1.1.1/import/Lomiri/Content/contenthandler.h000066400000000000000000000017551456121157600233200ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_CONTENTHANDLER_H_ #define COM_LOMIRI_CONTENTHANDLER_H_ #include class ContentHandler : public QObject { Q_OBJECT Q_ENUMS(Handler) public: enum Handler { Source = 0, Destination = 1, Share = 2 }; ContentHandler(QObject *parent = nullptr); }; #endif // COM_LOMIRI_CONTENTHANDLER_H_ content-hub-1.1.1/import/Lomiri/Content/contenthub.cpp000066400000000000000000000232751456121157600230150ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/lomiri/content/debug.h" #include "../../../src/com/lomiri/content/utils.cpp" #include "contenthub.h" #include "contentpeer.h" #include "contentstore.h" #include "contenttransfer.h" #include "contenttype.h" #include "qmlimportexporthandler.h" #include #include #include #include /*! * \qmltype ContentHub * \instantiates ContentHub * \inqmlmodule Lomiri.Content * \brief The central manager for all content operations * * Example usage for importing content: * \qml * import QtQuick 2.0 * import Lomiri.Components 0.1 * import Lomiri.Content 0.1 * * MainView { * id: root * width: units.gu(60) * height: units.gu(90) * property list importItems * property var activeTransfer * * ContentPeer { * id: picSourceSingle * contentType: ContentType.Pictures * handler: ContentHandler.Source * selectionType: ContentTransfer.Single * } * * ContentPeer { * id: picSourceMulti * contentType: ContentType.Pictures * handler: ContentHandler.Source * selectionType: ContentTransfer.Multiple * } * * Row { * Button { * text: "Import single item" * onClicked: { * activeTransfer = picSourceSingle.request() * } * } * * Button { * text: "Import multiple items" * onClicked: { * activeTransfer = picSourceMulti.request() * } * } * } * * ContentTransferHint { * id: importHint * anchors.fill: parent * activeTransfer: root.activeTransfer * } * * Connections { * target: root.activeTransfer * onStateChanged: { * if (root.activeTransfer.state === ContentTransfer.Charged) * importItems = root.activeTransfer.items; * } * } * } * \endqml * * Example usage for providing a content export: * \qml * import QtQuick 2.0 * import Lomiri.Content 0.1 * * Rectangle { * property list selectedItems * Connections { * target: ContentHub * onExportRequested: { * // show content picker * transfer.items = selectedItems; * transfer.state = ContentTransfer.Charged; * } * } * } * \endqml */ namespace cuc = com::lomiri::content; ContentHub::ContentHub(QObject *parent) : QObject(parent), m_hub(0) { TRACE() << Q_FUNC_INFO; m_hub = cuc::Hub::Client::instance(); m_handler = new QmlImportExportHandler(this); m_hub->register_import_export_handler(m_handler); QString id = app_id(); if (!id.isEmpty()) m_hasPending = m_hub->has_pending(id); connect(m_handler, SIGNAL(importRequested(com::lomiri::content::Transfer*)), this, SLOT(handleImport(com::lomiri::content::Transfer*))); connect(m_handler, SIGNAL(exportRequested(com::lomiri::content::Transfer*)), this, SLOT(handleExport(com::lomiri::content::Transfer*))); connect(m_handler, SIGNAL(shareRequested(com::lomiri::content::Transfer*)), this, SLOT(handleShare(com::lomiri::content::Transfer*))); } ContentHub *ContentHub::instance() { TRACE() << Q_FUNC_INFO; static ContentHub *contentHub = new ContentHub(nullptr); return contentHub; } /*! * \brief ContentHub::importContent creates a ContentTransfer object * \a peer * \a type * \internal */ ContentTransfer* ContentHub::importContent(cuc::Peer peer, ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; const cuc::Type &hubType = ContentType::contentType2HubType(contentType); cuc::Transfer *hubTransfer = m_hub->create_import_from_peer_for_type(peer, hubType); ContentTransfer *qmlTransfer = new ContentTransfer(this); qmlTransfer->setTransfer(hubTransfer); m_activeImports.insert(hubTransfer, qmlTransfer); return qmlTransfer; } /*! * \brief ContentHub::exportContent creates a ContentTransfer object * \a peer * \a type * \internal */ ContentTransfer* ContentHub::exportContent(cuc::Peer peer, ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; const cuc::Type &hubType = ContentType::contentType2HubType(contentType); cuc::Transfer *hubTransfer = m_hub->create_export_to_peer_for_type(peer, hubType); ContentTransfer *qmlTransfer = new ContentTransfer(this); qmlTransfer->setTransfer(hubTransfer); m_activeImports.insert(hubTransfer, qmlTransfer); return qmlTransfer; } /*! * \brief ContentHub::shareContent creates a ContentTransfer object * \a peer * \a type * \internal */ ContentTransfer* ContentHub::shareContent(cuc::Peer peer, ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; const cuc::Type &hubType = ContentType::contentType2HubType(contentType); cuc::Transfer *hubTransfer = m_hub->create_share_to_peer_for_type(peer, hubType); ContentTransfer *qmlTransfer = new ContentTransfer(this); qmlTransfer->setTransfer(hubTransfer); m_activeImports.insert(hubTransfer, qmlTransfer); return qmlTransfer; } /*! * \qmlmethod ContentHub::restoreImports() * \internal */ void ContentHub::restoreImports() { TRACE() << Q_FUNC_INFO; } /*! * \qmlproperty list ContentHub::finishedImports * \internal */ QQmlListProperty ContentHub::finishedImports() { TRACE() << Q_FUNC_INFO; #if QT_VERSION < QT_VERSION_CHECK(5, 15, 0) return QQmlListProperty(this, m_finishedImports); #else return QQmlListProperty(this, &m_finishedImports); #endif } /*! * \brief ContentHub::handleImport handles an incoming request for importing content * \internal */ void ContentHub::handleImport(com::lomiri::content::Transfer *transfer) { TRACE() << Q_FUNC_INFO; ContentTransfer *qmlTransfer = nullptr; if (m_activeImports.contains(transfer)) { qmlTransfer = m_activeImports.take(transfer); qmlTransfer->collectItems(); } else { // If we don't have a reference to the transfer, it was created // by another handler so this would be an Import qmlTransfer = new ContentTransfer(this); qmlTransfer->setTransfer(transfer); connect(qmlTransfer, SIGNAL(stateChanged()), this, SLOT(updateState())); qmlTransfer->collectItems(); Q_EMIT importRequested(qmlTransfer); } // FIXME: maybe we need to emit something else here // if (qmlTransfer->state() == ContentTransfer::Charged) // Q_EMIT importRequested(qmlTransfer); m_finishedImports.append(qmlTransfer); Q_EMIT finishedImportsChanged(); } /*! * \brief ContentHub::handleExport handles an incoming request for exporting content * \internal */ void ContentHub::handleExport(com::lomiri::content::Transfer *transfer) { TRACE() << Q_FUNC_INFO; ContentTransfer *qmlTransfer = nullptr; if (m_activeImports.contains(transfer)) qmlTransfer = m_activeImports.take(transfer); else { // If we don't have a reference to the transfer, it was created // by another handler so this would be an Import qmlTransfer = new ContentTransfer(this); qmlTransfer->setTransfer(transfer); m_activeImports.insert(transfer, qmlTransfer); connect(qmlTransfer, SIGNAL(stateChanged()), this, SLOT(updateState())); Q_EMIT exportRequested(qmlTransfer); } m_finishedImports.append(qmlTransfer); Q_EMIT finishedImportsChanged(); } /*! * \brief ContentHub::handleExport handles an incoming request for sharing content * \internal */ void ContentHub::handleShare(com::lomiri::content::Transfer *transfer) { TRACE() << Q_FUNC_INFO; ContentTransfer *qmlTransfer = nullptr; if (m_activeImports.contains(transfer)) { qmlTransfer = m_activeImports.take(transfer); qmlTransfer->collectItems(); } else { // If we don't have a reference to the transfer, it was created // by another handler so this would be an Import qmlTransfer = new ContentTransfer(this); qmlTransfer->setTransfer(transfer); connect(qmlTransfer, SIGNAL(stateChanged()), this, SLOT(updateState())); qmlTransfer->collectItems(); Q_EMIT shareRequested(qmlTransfer); } m_finishedImports.append(qmlTransfer); Q_EMIT finishedImportsChanged(); } void ContentHub::updateState() { TRACE() << Q_FUNC_INFO; } /*! * \qmlproperty bool ContentHub::hasPending * True if there is a pending transfer for the handler * \internal */ bool ContentHub::hasPending() { TRACE() << Q_FUNC_INFO; return m_hasPending; } /*! * \qmlsignal ContentHub::importRequested(ContentTransfer transfer) * * The signal is triggered when an import is requested. */ /*! * \qmlsignal ContentHub::exportRequested(ContentTransfer transfer) * * The signal is triggered when an export is requested. */ /*! * \qmlsignal ContentHub::shareRequested(ContentTransfer transfer) * * The signal is triggered when a share is requested. */ content-hub-1.1.1/import/Lomiri/Content/contenthub.h000066400000000000000000000047561456121157600224650ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_CONTENTHUB_H_ #define COM_LOMIRI_CONTENTHUB_H_ #include #include #include #include #include "contentpeer.h" #include "contenttransfer.h" class ContentStore; class QmlImportExportHandler; namespace com { namespace lomiri { namespace content { class Hub; class Peer; class Store; class Type; class Transfer; } } } class ContentHub : public QObject { Q_OBJECT Q_PROPERTY(QQmlListProperty finishedImports READ finishedImports NOTIFY finishedImportsChanged) Q_PROPERTY(bool hasPending READ hasPending) public: ContentHub(const ContentHub&) = delete; static ContentHub *instance(); Q_INVOKABLE void restoreImports(); QQmlListProperty finishedImports(); bool hasPending(); Q_INVOKABLE ContentTransfer* importContent(com::lomiri::content::Peer peer, ContentType::Type type); Q_INVOKABLE ContentTransfer* exportContent(com::lomiri::content::Peer peer, ContentType::Type type); Q_INVOKABLE ContentTransfer* shareContent(com::lomiri::content::Peer peer, ContentType::Type type); Q_SIGNALS: void importRequested(ContentTransfer *transfer); void exportRequested(ContentTransfer *transfer); void shareRequested(ContentTransfer *transfer); void finishedImportsChanged(); private Q_SLOTS: void handleImport(com::lomiri::content::Transfer* transfer); void handleExport(com::lomiri::content::Transfer* transfer); void handleShare(com::lomiri::content::Transfer* transfer); void updateState(); private: QList m_finishedImports; QHash m_activeImports; com::lomiri::content::Hub *m_hub; QmlImportExportHandler *m_handler; bool m_hasPending = false; protected: ContentHub(QObject* = nullptr); }; #endif // COM_LOMIRI_CONTENTHUB_H_ content-hub-1.1.1/import/Lomiri/Content/contenthubplugin.cpp000066400000000000000000000072711456121157600242320ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "contenthubplugin.h" #include "../../../src/com/lomiri/content/debug.h" #include "contenthandler.h" #include "contenthub.h" #include "contenticonprovider.h" #include "contentitem.h" #include "contentpeer.h" #include "contentpeermodel.h" #include "contentscope.h" #include "contentstore.h" #include "contenttransfer.h" #include "contenttype.h" #include #include #include #include #include #include /*! * \brief qml_content_hub function to unstatinate the ContentHub as a singleton in QML */ static QObject *qml_content_hub(QQmlEngine *engine, QJSEngine *scriptEngine) { Q_UNUSED(engine) Q_UNUSED(scriptEngine) TRACE() << Q_FUNC_INFO; return ContentHub::instance(); } /*! * \reimp */ void ContentHubPlugin::initializeEngine(QQmlEngine * engine, const char * uri) { Q_UNUSED(uri) TRACE() << Q_FUNC_INFO; static std::once_flag initOnceFlag; std::call_once(initOnceFlag, [&engine]() { QIcon::setThemeName("suru"); QIcon::setThemeSearchPaths(QStringList() << ("/usr/share/icons/")); ContentIconProvider *iconProvider = ContentIconProvider::instance(); engine->addImageProvider("content-hub", iconProvider); }); } /*! * \reimp */ void ContentHubPlugin::registerTypes(const char *uri) { TRACE() << Q_FUNC_INFO; #ifdef ENABLE_UBUNTU_COMPAT Q_ASSERT(uri == QLatin1String("Lomiri.Content") || uri == QLatin1String("Ubuntu.Content")); #else Q_ASSERT(uri == QLatin1String("Lomiri.Content")); #endif QVector> versions; versions.append(QPair(0, 1)); versions.append(QPair(1, 0)); versions.append(QPair(1, 1)); versions.append(QPair(1, 3)); // Register common types for version 0.1, 1.0, 1.1 and 1.3 for(int i = 0; i < versions.length(); i++) { int versionMajor = versions[i].first; int versionMinor = versions[i].second; qmlRegisterUncreatableType(uri, versionMajor, versionMinor, "ContentHandler", "Not creatable as an object, use only to retrieve handler enums (e.g. ContentHandler.Source)"); qmlRegisterSingletonType(uri, versionMajor, versionMinor, "ContentHub", qml_content_hub); qmlRegisterType(uri, versionMajor, versionMinor, "ContentItem"); qmlRegisterType(uri, versionMajor, versionMinor, "ContentPeer"); qmlRegisterType(uri, versionMajor, versionMinor, "ContentPeerModel"); qmlRegisterType(uri, versionMajor, versionMinor, "ContentScope"); qmlRegisterType(uri, versionMajor, versionMinor, "ContentStore"); qmlRegisterUncreatableType(uri, versionMajor, versionMinor, "ContentTransfer", "Not creatable as an object, please use ContentPeer::request()"); qmlRegisterUncreatableType(uri, versionMajor, versionMinor, "ContentType", "Use only the type"); } // added copy method to ContentItem qmlRegisterType(uri, 1, 4, "ContentItem"); } content-hub-1.1.1/import/Lomiri/Content/contenthubplugin.h000066400000000000000000000021541456121157600236720ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_CONTENT_PLUGIN_H_ #define COM_LOMIRI_CONTENT_PLUGIN_H_ #include #include class ContentHub; class ContentHubPlugin : public QQmlExtensionPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") public: void initializeEngine(QQmlEngine * engine, const char * uri); void registerTypes(const char *uri); private: ContentHub *m_contentHub; }; #endif // COM_LOMIRI_CONTENT_PLUGIN_H_ content-hub-1.1.1/import/Lomiri/Content/contenticonprovider.cpp000066400000000000000000000032641456121157600247360ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/lomiri/content/debug.h" #include "contenticonprovider.h" ContentIconProvider::ContentIconProvider() : QQuickImageProvider(QQuickImageProvider::Image) { TRACE() << Q_FUNC_INFO; appIdImageMap = new QMap(); } ContentIconProvider *ContentIconProvider::instance() { static ContentIconProvider *contentIconProvider = new ContentIconProvider(); return contentIconProvider; } /*! * \brief void ContentIconProvider::addImage * * Add an app's icon to the provider */ void ContentIconProvider::addImage(QString appId, QImage image) { TRACE() << Q_FUNC_INFO; appIdImageMap->insert(appId, image); } /*! * \brief QImage ContentIconProvider::requestImage * * Returns the QImage for a given appId at the requested size */ QImage ContentIconProvider::requestImage(const QString &id, QSize *size, const QSize &requestedSize) { Q_UNUSED(requestedSize) TRACE() << Q_FUNC_INFO; QImage image = appIdImageMap->value(id); if(size) { *size = image.size(); } return image; } content-hub-1.1.1/import/Lomiri/Content/contenticonprovider.h000066400000000000000000000022451456121157600244010ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_CONTENTICONPROVIDER_H_ #define COM_LOMIRI_CONTENTICONPROVIDER_H_ #include #include #include #include class ContentIconProvider : public QQuickImageProvider { public: ContentIconProvider(); static ContentIconProvider *instance(); QImage requestImage(const QString &id, QSize *size, const QSize &requestedSize); void addImage(QString appId, QImage image); private: QMap *appIdImageMap; }; #endif // COM_LOMIRI_CONTENTICONPROVIDER_H_ content-hub-1.1.1/import/Lomiri/Content/contentitem.cpp000066400000000000000000000175141456121157600231740ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "contentitem.h" #include "../../../src/com/lomiri/content/debug.h" #include #include #include #include #include #include Q_LOGGING_CATEGORY(ldCategory, "lomiri.deprecations", QtWarningMsg) /*! * \qmltype ContentItem * \instantiates ContentItem * \inqmlmodule Lomiri.Content * \brief Content that can be imported or exported from a ContentPeer * * A ContentItem is an item that can be imported or exported from a ContentPeer * * See documentation for ContentHub */ namespace cuc = com::lomiri::content; namespace fs = std::filesystem; ContentItem::ContentItem(QObject *parent) : QObject(parent) { TRACE() << Q_FUNC_INFO; } /*! * \qmlproperty string ContentItem::name * \internal */ const QString &ContentItem::name() const { TRACE() << Q_FUNC_INFO; return m_item.name(); } void ContentItem::setName(const QString &name) { TRACE() << Q_FUNC_INFO; if (name == m_item.name()) return; m_item.setName(name); Q_EMIT nameChanged(); } /*! * \qmlproperty url ContentItem::url * * URL of the content data */ const QUrl &ContentItem::url() const { TRACE() << Q_FUNC_INFO; return m_item.url(); } void ContentItem::setUrl(const QUrl &url) { TRACE() << Q_FUNC_INFO; if (url == this->url()) return; QString oldName = m_item.name(); QString oldText = m_item.text(); m_item = cuc::Item(url); m_item.setName(oldName); m_item.setText(oldText); Q_EMIT urlChanged(); } /*! * \qmlproperty string ContentItem::text * Content of the transfer */ QString ContentItem::text() { TRACE() << Q_FUNC_INFO; return QString(m_item.text()); } void ContentItem::setText(const QString &text) { TRACE() << Q_FUNC_INFO; if (text == QString(m_item.text())) return; m_item.setText(text); Q_EMIT textChanged(); } /*! * \brief ContentItem::item * \internal */ const com::lomiri::content::Item &ContentItem::item() const { TRACE() << Q_FUNC_INFO; return m_item; } /*! * \brief ContentItem::setItem * \internal */ void ContentItem::setItem(const com::lomiri::content::Item &item) { TRACE() << Q_FUNC_INFO; if (item == m_item) return; m_item = item; Q_EMIT urlChanged(); } /*! * \qmlmethod string ContentItem::toDataURI() * Returns the ContentItem base64 encoded with the mimetype as a * properly formated dataUri */ QUrl ContentItem::toDataURI() { TRACE() << Q_FUNC_INFO; QString path(m_item.url().toLocalFile()); /* Don't attempt to create the dataUri if the file isn't local */ if (!QFile::exists(path)) { qWarning() << "File not found:" << path; return QUrl(); } QMimeDatabase mdb; QMimeType mt = mdb.mimeTypeForFile(path); /* Don't attempt to create the dataUri if we can't detect the mimetype */ if (!mt.isValid()) { qWarning() << "Unknown MimeType for file:" << path; return QUrl(); } QString contentType(mt.name()); QByteArray data; QFile file(path); if(file.open(QIODevice::ReadOnly)) { data = file.readAll(); file.close(); } /* Don't attempt to create the dataUri with empty data */ if (data.isEmpty()) { qWarning() << "Failed to read contents of file:" << path; return QUrl(); } QString dataUri(QStringLiteral("data:")); dataUri.append(contentType); dataUri.append(QStringLiteral(";base64,")); dataUri.append(QString::fromLatin1(data.toBase64())); return QUrl(dataUri); } /*! * \qmlmethod bool ContentItem::move(dir) * \brief If the url is a local file, move the file to \a dir * * If the move is successful, the url property will be changed * and onUrlChanged will be emitted. * * Returns true if the file was moved successfully, false * on error or if the url wasn't a local file. * \obsolete * Use copy(dir) instead. */ bool ContentItem::move(const QString &dir) { TRACE() << Q_FUNC_INFO << "dir:" << dir; return (move(dir, nullptr)); } /*! * \qmlmethod bool ContentItem::move(dir, fileName) * \brief If the url is a local file, move the file to \a dir and * rename to \a fileName * * If the move is successful, the url property will be changed * and onUrlChanged will be emitted. * * Returns true if the file was moved successfully, false * on error or if the url wasn't a local file. * \obsolete * Use copy(dir, fileName) instead. */ bool ContentItem::move(const QString &dir, const QString &fileName) { qCDebug(ldCategory, "Use of move() method is deprecated, please consider using copy() method instead."); TRACE() << Q_FUNC_INFO << "dir:" << dir << "fileName:" << fileName; QString path(m_item.url().toLocalFile()); if (!QFile::exists(path)) { qWarning() << "File not found:" << path; return false; } QFileInfo fi(path); QDir d(dir); if (not d.exists()) d.mkpath(d.absolutePath()); QString destFilePath = ""; if (fileName.isEmpty()) destFilePath = dir + QDir::separator() + fi.fileName(); else destFilePath = dir + QDir::separator() + fileName; TRACE() << Q_FUNC_INFO << "New path:" << destFilePath; if (not QFile::rename(fi.absoluteFilePath(), destFilePath)) { qWarning() << "Failed to move content to:" << destFilePath << "falling back to copy"; if (not QFile::copy(fi.absoluteFilePath(), destFilePath)) { qWarning() << "Failed to copy content to:" << destFilePath; return false; } } setUrl(QUrl::fromLocalFile(destFilePath)); return true; } /*! * \qmlmethod bool ContentItem::copy(dir) * \brief If the url is a local file, copy the file to \a dir * * Returns true if the file was copied successfully, false * on error or if the url wasn't a local file. */ bool ContentItem::copy(const QString &dir) { TRACE() << Q_FUNC_INFO << "dir:" << dir; return (copy(dir, nullptr)); } /*! * \qmlmethod bool ContentItem::copy(dir, fileName) * \brief If the url is a local file, copy the file to \a dir and * rename to \a fileName * * Returns true if the file was copied successfully, false * on error or if the url wasn't a local file. */ bool ContentItem::copy(const QString &dir, const QString &fileName) { TRACE() << Q_FUNC_INFO << "dir:" << dir << "fileName:" << fileName; QString path(m_item.url().toLocalFile()); if (!QFile::exists(path)) { qWarning() << "File not found:" << path; return false; } QFileInfo fi(path); QDir d(dir); if (not d.exists()) d.mkpath(d.absolutePath()); QString destFilePath = ""; if (fileName.isEmpty()) destFilePath = dir + QDir::separator() + fi.fileName(); else destFilePath = dir + QDir::separator() + fileName; TRACE() << Q_FUNC_INFO << "New path:" << destFilePath; fs::path mySourcePath(fi.absoluteFilePath().toStdString()); fs::path myTargetPath(destFilePath.toStdString()); try { fs::copy_file(mySourcePath, myTargetPath, fs::copy_options::skip_existing); } catch (const fs::filesystem_error& e) { qWarning() << "Error: " << QString::fromStdString(e.what()); return false; } setUrl(QUrl::fromLocalFile(destFilePath)); return true; } content-hub-1.1.1/import/Lomiri/Content/contentitem.h000066400000000000000000000035601456121157600226350ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_CONTENTITEM_H_ #define COM_LOMIRI_CONTENTITEM_H_ #include #include #include #include class ContentItem : public QObject { Q_OBJECT Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged) Q_PROPERTY(QUrl url READ url WRITE setUrl NOTIFY urlChanged) Q_PROPERTY(QString text READ text WRITE setText NOTIFY textChanged) public: ContentItem(QObject *parent = nullptr); const QString &name() const; void setName(const QString &name); const QUrl &url() const; void setUrl(const QUrl &url); QString text(); void setText(const QString &text); const com::lomiri::content::Item &item() const; void setItem(const com::lomiri::content::Item &item); Q_INVOKABLE QUrl toDataURI(); Q_INVOKABLE bool move(const QString &dir); Q_INVOKABLE bool move(const QString &dir, const QString &fileName); Q_REVISION(4) Q_INVOKABLE bool copy(const QString &dir); Q_REVISION(4) Q_INVOKABLE bool copy(const QString &dir, const QString &fileName); Q_SIGNALS: void nameChanged(); void urlChanged(); void textChanged(); private: com::lomiri::content::Item m_item; }; #endif // COM_LOMIRI_CONTENTITEM_H_ content-hub-1.1.1/import/Lomiri/Content/contentpeer.cpp000066400000000000000000000146061456121157600231700ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/lomiri/content/debug.h" #include "contenthandler.h" #include "contenthub.h" #include "contenticonprovider.h" #include "contentpeer.h" #include "contenttype.h" #include #include /*! * \qmltype ContentPeer * \instantiates ContentPeer * \inqmlmodule Lomiri.Content * \brief An application that can export or import a ContentType * * A ContentPeer is an application that is registered in the ContentHub as * a source or destination of a ContentType * * See documentation for ContentHub */ namespace cuc = com::lomiri::content; ContentPeer::ContentPeer(QObject *parent) : QObject(parent), m_peer(0), m_handler(ContentHandler::Source), m_contentType(ContentType::Unknown), m_selectionType(ContentTransfer::Single), m_explicit_peer(false) { TRACE() << Q_FUNC_INFO; m_hub = cuc::Hub::Client::instance(); } /*! * \qmlproperty string ContentPeer::name * * Returns user friendly name of the peer. */ QString ContentPeer::name() { TRACE() << Q_FUNC_INFO; return m_peer.name(); } /*! * \qmlproperty string ContentPeer::appId * When set, this property allows for a specific application to be used as a peer. */ const QString &ContentPeer::appId() const { TRACE() << Q_FUNC_INFO; return m_peer.id(); } /*! * \brief ContentPeer::setAppId * \internal * Sets the Application id */ void ContentPeer::setAppId(const QString& appId) { TRACE() << Q_FUNC_INFO << appId; this->setPeer(m_hub->peer_for_app_id(appId)); } QImage &ContentPeer::icon() { TRACE() << Q_FUNC_INFO; return m_icon; } /*! * \brief ContentPeer::peer * \internal */ const com::lomiri::content::Peer &ContentPeer::peer() const { return m_peer; } /*! * \brief ContentPeer::setPeer * \internal */ void ContentPeer::setPeer(const cuc::Peer &peer, bool explicitPeer) { TRACE() << Q_FUNC_INFO; m_peer = peer; m_explicit_peer = explicitPeer; if (peer.iconData().isEmpty()) { if (QIcon::hasThemeIcon(peer.iconName().toUtf8())) m_icon = QIcon::fromTheme(peer.iconName().toUtf8()).pixmap(256).toImage(); } else m_icon.loadFromData(peer.iconData()); ContentIconProvider *iconProvider = ContentIconProvider::instance(); iconProvider->addImage(appId(), m_icon); Q_EMIT nameChanged(); Q_EMIT appIdChanged(); } /*! * \qmlproperty ContentHandler ContentPeer::handler * Specifies which ContentHandler this peer should support (e.g. Source, Destination, Share). */ ContentHandler::Handler ContentPeer::handler() { TRACE() << Q_FUNC_INFO; return m_handler; } /*! * \brief ContentPeer::setHandler * \internal */ void ContentPeer::setHandler(ContentHandler::Handler handler) { TRACE() << Q_FUNC_INFO; m_handler = handler; Q_EMIT handlerChanged(); } /*! * \qmlproperty ContentType ContentPeer::contentType * Specifies the ContentType this peer should support. */ ContentType::Type ContentPeer::contentType() { TRACE() << Q_FUNC_INFO; return m_contentType; } /*! * \brief ContentPeer::setContentType * \internal */ void ContentPeer::setContentType(ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; m_contentType = contentType; if(!m_explicit_peer) { const cuc::Type &hubType = ContentType::contentType2HubType(m_contentType); setPeer(m_hub->default_source_for_type(hubType), false); } Q_EMIT contentTypeChanged(); } /*! * \qmlproperty ContentTransfer.SelectionType ContentPeer::selectionType * Specifies whether this peer is allowed to return multiple items. */ ContentTransfer::SelectionType ContentPeer::selectionType() { TRACE() << Q_FUNC_INFO; return m_selectionType; } /*! * \brief ContentPeer::setSelectionType * \internal */ void ContentPeer::setSelectionType(ContentTransfer::SelectionType selectionType) { TRACE() << Q_FUNC_INFO; m_selectionType = selectionType; Q_EMIT selectionTypeChanged(); } /*! * \brief ContentPeer::isDefaultPeer * \internal */ bool ContentPeer::isDefaultPeer() { TRACE() << Q_FUNC_INFO; return m_peer.isDefaultPeer(); } /*! * \qmlmethod ContentPeer::request() * * \brief Request an active transfer from this ContentPeer. */ ContentTransfer *ContentPeer::request() { TRACE() << Q_FUNC_INFO; return request(nullptr); } /*! * \qmlmethod ContentPeer::request(ContentStore) * * \brief Request to an active transfer from this ContentPeer and use * a ContentStore for permanent storage. */ ContentTransfer *ContentPeer::request(ContentStore *store) { TRACE() << Q_FUNC_INFO; ContentHub *contentHub = ContentHub::instance(); ContentTransfer *qmlTransfer = NULL; if(m_handler == ContentHandler::Source) { qmlTransfer = contentHub->importContent(m_peer, m_contentType); } else if (m_handler == ContentHandler::Destination) { qmlTransfer = contentHub->exportContent(m_peer, m_contentType); } else if (m_handler == ContentHandler::Share) { qmlTransfer = contentHub->shareContent(m_peer, m_contentType); } qmlTransfer->setSelectionType(m_selectionType); if(store) { qmlTransfer->setStore(store); } /* We only need to start it for import requests */ if (m_handler == ContentHandler::Source) { // If there peer isn't known, don't request content if (m_peer == cuc::Peer::unknown()) { qWarning() << "Unknown source for type:" << m_contentType; auto transfer = qmlTransfer->transfer(); // Avoid crashing if we have no valid transfer // also there is no need to abort if we dont // have a valid transfer in the first place if (transfer) transfer->abort(); } else { qmlTransfer->start(); } } return qmlTransfer; } content-hub-1.1.1/import/Lomiri/Content/contentpeer.h000066400000000000000000000054071456121157600226340ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_CONTENTPEER_H_ #define COM_LOMIRI_CONTENTPEER_H_ #include "contenthandler.h" #include "contenttransfer.h" #include "contenttype.h" #include #include #include #include #include class ContentPeer : public QObject { Q_OBJECT Q_PROPERTY(QString name READ name NOTIFY nameChanged) Q_PROPERTY(QString appId READ appId WRITE setAppId NOTIFY appIdChanged) Q_PROPERTY(ContentHandler::Handler handler READ handler WRITE setHandler NOTIFY handlerChanged) Q_PROPERTY(ContentType::Type contentType READ contentType WRITE setContentType NOTIFY contentTypeChanged) Q_PROPERTY(ContentTransfer::SelectionType selectionType READ selectionType WRITE setSelectionType NOTIFY selectionTypeChanged) Q_PROPERTY(QImage icon READ icon) Q_PROPERTY(bool isDefaultPeer READ isDefaultPeer) public: ContentPeer(QObject *parent = nullptr); ContentPeer(ContentType::Type type, QObject *parent); Q_INVOKABLE ContentTransfer* request(); Q_INVOKABLE ContentTransfer* request(ContentStore *store); QString name(); const QString &appId() const; void setAppId(const QString&); QImage &icon(); const com::lomiri::content::Peer &peer() const; void setPeer(const com::lomiri::content::Peer &peer, bool explicitPeer = true); ContentHandler::Handler handler(); void setHandler(ContentHandler::Handler handler); ContentType::Type contentType(); void setContentType(ContentType::Type contentType); ContentTransfer::SelectionType selectionType(); void setSelectionType(ContentTransfer::SelectionType selectionType); bool isDefaultPeer(); Q_SIGNALS: void nameChanged(); void appIdChanged(); void handlerChanged(); void contentTypeChanged(); void selectionTypeChanged(); private: void init(); com::lomiri::content::Hub *m_hub; com::lomiri::content::Peer m_peer; ContentHandler::Handler m_handler; ContentType::Type m_contentType; ContentTransfer::SelectionType m_selectionType; bool m_explicit_peer; QImage m_icon; }; #endif // COM_LOMIRI_CONTENTPEER_H_ content-hub-1.1.1/import/Lomiri/Content/contentpeermodel.cpp000066400000000000000000000130431456121157600242030ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/lomiri/content/debug.h" #include "contentpeermodel.h" #include namespace cuc = com::lomiri::content; /*! * \qmltype ContentPeerModel * \instantiates ContentPeerModel * \inqmlmodule Lomiri.Content * \brief A list of applications that can export or import a ContentType * * A ContentPeerModel provides a list of all applications that are registered * in the ContentHub as a source or destination of a ContentType * * See documentation for ContentPeer */ ContentPeerModel::ContentPeerModel(QObject *parent) : QObject(parent), m_contentType(ContentType::Undefined), m_handler(ContentHandler::Source), m_complete(false) { TRACE() << Q_FUNC_INFO; m_hub = cuc::Hub::Client::instance(); } /*! * \brief \reimp * \internal */ void ContentPeerModel::classBegin() { } /*! * \brief \reimp * \internal */ void ContentPeerModel::componentComplete() { m_complete = true; findPeers(); } /*! * \qmlproperty ContentType ContentPeerModel::contentType * * Specifies which ContentType discovered peers should support. */ ContentType::Type ContentPeerModel::contentType() { TRACE() << Q_FUNC_INFO; return m_contentType; } /*! * \brief ContentPeerModel::setContentType * \internal */ void ContentPeerModel::setContentType(ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; if (m_contentType != contentType) { m_contentType = contentType; if (m_complete) { findPeers(); } Q_EMIT contentTypeChanged(); } } /*! * \brief ContentPeerModel::findPeers * \internal */ void ContentPeerModel::findPeers() { TRACE() << Q_FUNC_INFO; m_peers.clear(); if(m_contentType == ContentType::All) { appendPeersForContentType(ContentType::Documents); appendPeersForContentType(ContentType::Pictures); appendPeersForContentType(ContentType::Music); appendPeersForContentType(ContentType::Contacts); appendPeersForContentType(ContentType::Videos); appendPeersForContentType(ContentType::Links); appendPeersForContentType(ContentType::EBooks); appendPeersForContentType(ContentType::Text); appendPeersForContentType(ContentType::Events); appendPeersForContentType(ContentType::Unknown); } else if (m_contentType != ContentType::Undefined) { appendPeersForContentType(m_contentType); } Q_EMIT findPeersCompleted(); } /*! * \brief ContentPeerModel::appendPeersForContentType * \internal */ void ContentPeerModel::appendPeersForContentType(ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; const cuc::Type &hubType = ContentType::contentType2HubType(contentType); QVector hubPeers; if (m_handler == ContentHandler::Destination) { hubPeers = m_hub->known_destinations_for_type(hubType); } else if (m_handler == ContentHandler::Share) { hubPeers = m_hub->known_shares_for_type(hubType); } else { hubPeers = m_hub->known_sources_for_type(hubType); } Q_FOREACH (const cuc::Peer &hubPeer, hubPeers) { if(!hubPeer.id().isEmpty()) { bool isDefault = false; bool isDupe = false; Q_FOREACH (ContentPeer *p, m_peers) { if (p->peer().id() == hubPeer.id()) isDupe = true; } if (isDupe) continue; ContentPeer *qmlPeer = new ContentPeer(); qmlPeer->setPeer(hubPeer); qmlPeer->setHandler(m_handler); if(m_contentType != ContentType::All) { qmlPeer->setContentType(contentType); isDefault = qmlPeer->isDefaultPeer(); } else { qmlPeer->setContentType(m_contentType); } if(isDefault) m_peers.prepend(qmlPeer); else m_peers.append(qmlPeer); Q_EMIT peersChanged(); } } } /*! * \qmlproperty ContentHandler ContentPeerModel::handler * * Specifies which ContentHandler discovered peers should support. */ ContentHandler::Handler ContentPeerModel::handler() { TRACE() << Q_FUNC_INFO; return m_handler; } /*! * \brief ContentPeerModel::setHandler * \internal */ void ContentPeerModel::setHandler(ContentHandler::Handler handler) { TRACE() << Q_FUNC_INFO; if (m_handler != handler) { m_handler = handler; if (m_complete) { findPeers(); } Q_EMIT handlerChanged(); } } /*! * \qmlproperty list ContentPeerModel::peers * * Provides a list of discovered peers matching the requested ContentType and ContentHandler. */ QQmlListProperty ContentPeerModel::peers() { TRACE() << Q_FUNC_INFO; #if QT_VERSION < QT_VERSION_CHECK(5, 15, 0) return QQmlListProperty(this, m_peers); #else return QQmlListProperty(this, &m_peers); #endif } content-hub-1.1.1/import/Lomiri/Content/contentpeermodel.h000066400000000000000000000041361456121157600236530ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_CONTENTPEERMODEL_H_ #define COM_LOMIRI_CONTENTPEERMODEL_H_ #include "contentpeer.h" #include "contenttype.h" #include "contenthandler.h" #include #include #include #include #include class ContentPeerModel : public QObject, public QQmlParserStatus { Q_OBJECT Q_INTERFACES(QQmlParserStatus) Q_PROPERTY(ContentType::Type contentType READ contentType WRITE setContentType NOTIFY contentTypeChanged) Q_PROPERTY(ContentHandler::Handler handler READ handler WRITE setHandler NOTIFY handlerChanged) Q_PROPERTY(QQmlListProperty peers READ peers NOTIFY peersChanged) public: ContentPeerModel(QObject *parent = nullptr); void classBegin(); void componentComplete(); ContentType::Type contentType(); void setContentType(ContentType::Type contentType); void appendPeersForContentType(ContentType::Type contentType); ContentHandler::Handler handler(); void setHandler(ContentHandler::Handler handler); QQmlListProperty peers(); Q_SIGNALS: void contentTypeChanged(); void handlerChanged(); void peersChanged(); void findPeersCompleted(); public Q_SLOTS: void findPeers(); private: com::lomiri::content::Hub *m_hub; ContentType::Type m_contentType; ContentHandler::Handler m_handler; QList m_peers; bool m_complete; }; #endif // COM_LOMIRI_CONTENTPEERMODEL_H_ content-hub-1.1.1/import/Lomiri/Content/contentscope.cpp000066400000000000000000000034751456121157600233500ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/lomiri/content/debug.h" #include "contentscope.h" /*! \qmltype ContentScope \instantiates ContentScope \inqmlmodule Lomiri.Content \brief Used with a ContentStore to specify the destination location for a transfer \sa ContentStore \e {ContentScope} is an enumeration of scope types: \table \header \li Scope \row \li ContentScope.System \row \li ContentScope.User \row \li ContentScope.App \endtable */ ContentScope::ContentScope(QObject *parent) : QObject(parent) { TRACE() << Q_FUNC_INFO; } /*! * \brief ContentScope::contentScope2HubScope converts a ContentScope::Scope to a * com::lomiri::content::Scope * \internal */ com::lomiri::content::Scope ContentScope::contentScope2HubScope(int scope) { Scope cscope = static_cast(scope); TRACE() << Q_FUNC_INFO << cscope; return contentScope2HubScope(cscope); } /*! * \brief ContentScope::contentScope2HubScope converts a ContentScope::Scope to a * com::lomiri::content::Scope * \internal */ com::lomiri::content::Scope ContentScope::contentScope2HubScope(Scope scope) { return static_cast(scope); } content-hub-1.1.1/import/Lomiri/Content/contentscope.h000066400000000000000000000022231456121157600230030ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_CONTENTSCOPE_H_ #define COM_LOMIRI_CONTENTSCOPE_H_ #include #include class ContentScope : public QObject { Q_OBJECT Q_ENUMS(Scope) public: enum Scope { System = 0, User = 1, App = 2 }; ContentScope(QObject *parent = nullptr); static com::lomiri::content::Scope contentScope2HubScope(int scope); static com::lomiri::content::Scope contentScope2HubScope(Scope scope); }; #endif // COM_LOMIRI_CONTENTSCOPE_H_ content-hub-1.1.1/import/Lomiri/Content/contentstore.cpp000066400000000000000000000036551456121157600233730ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/lomiri/content/debug.h" #include "contentpeer.h" #include "contentstore.h" #include "contenttype.h" /*! * \qmltype ContentStore * \instantiates ContentStore * \inqmlmodule Lomiri.Content * \brief Sets the type of location that content should be transferred to * * A ContentStore allows for the permanent storage of a transfered item. * * See documentation for ContentHub and ContentScope */ namespace cuc = com::lomiri::content; ContentStore::ContentStore(QObject *parent) : QObject(parent), m_scope(ContentScope::System) { TRACE() << Q_FUNC_INFO; } /*! * \qmlproperty uri ContentStore::uri * * URI of the content store */ const QString &ContentStore::uri() const { TRACE() << Q_FUNC_INFO; return m_uri; } /*! * \brief ContentStore::setUri * \internal */ void ContentStore::setUri(const QString & uri) { m_uri = uri; Q_EMIT uriChanged(); } /*! * \qmlproperty ContentScope ContentStore::scope * * Specifies the ContentScope for this store. */ ContentScope::Scope ContentStore::scope() { TRACE() << Q_FUNC_INFO; return m_scope; } /*! * \brief ContentStore::setScope * \internal */ void ContentStore::setScope(ContentScope::Scope scope) { TRACE() << Q_FUNC_INFO; m_scope = scope; Q_EMIT scopeChanged(); } content-hub-1.1.1/import/Lomiri/Content/contentstore.h000066400000000000000000000026451456121157600230360ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_CONTENTSTORE_H_ #define COM_LOMIRI_CONTENTSTORE_H_ #include "contentscope.h" #include "contenttype.h" #include #include #include #include class ContentStore : public QObject { Q_OBJECT Q_PROPERTY(QString uri READ uri NOTIFY uriChanged) Q_PROPERTY(ContentScope::Scope scope READ scope WRITE setScope NOTIFY scopeChanged) public: ContentStore(QObject *parent = nullptr); const QString &uri() const; void setUri(const QString & uri); ContentScope::Scope scope(); void setScope(ContentScope::Scope scope); Q_SIGNALS: void uriChanged(); void scopeChanged(); private: ContentScope::Scope m_scope; QString m_uri; }; #endif // COM_LOMIRI_CONTENTSTORE_H_ content-hub-1.1.1/import/Lomiri/Content/contenttransfer.cpp000066400000000000000000000234071456121157600240600ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "contenttransfer.h" #include "contentitem.h" #include "../../../src/com/lomiri/content/debug.h" #include /*! * \qmltype ContentTransfer * \instantiates ContentTransfer * \inqmlmodule Lomiri.Content * \brief Represents a transfer of content between two ContentPeers * * See documentation for ContentHub */ namespace cuc = com::lomiri::content; ContentTransfer::ContentTransfer(QObject *parent) : QObject(parent), m_transfer(0), m_state(Aborted), m_direction(Import), m_selectionType(Single) { TRACE() << Q_FUNC_INFO; } /*! \qmlproperty ContentTransfer.State ContentTransfer::state \table \header \li {2, 1} \e {ContentTransfer.State} is an enumeration: \header \li State \li Description \row \li ContentTransfer.Created \li Transfer created, waiting to be initiated. \row \li ContentTransfer.Initiated \li Transfer has been initiated. \row \li ContentTransfer.InProgress \li Transfer is in progress. \row \li ContentTransfer.Downloading \li Transfer is downloading item specified by downloadId. \row \li ContentTransfer.Downloaded \li Download specified by downloadId has completed. \row \li ContentTransfer.Charged \li Transfer is charged with items and ready to be collected. \row \li ContentTransfer.Collected \li Items in the transfer have been collected. \row \li ContentTransfer.Aborted \li Transfer has been aborted. \row \li ContentTransfer.Finalized \li Transfer has been finished and cleaned up. \endtable */ ContentTransfer::State ContentTransfer::state() const { TRACE() << Q_FUNC_INFO; return m_state; } void ContentTransfer::setState(ContentTransfer::State state) { TRACE() << Q_FUNC_INFO << state; if (!m_transfer) return; if (state == Charged && (m_state == InProgress || m_state == Downloaded)) { TRACE() << Q_FUNC_INFO << "Charged"; QVector hubItems; hubItems.reserve(m_items.size()); Q_FOREACH (const ContentItem *citem, m_items) { hubItems.append(citem->item()); } m_transfer->charge(hubItems); return; } else if (state == Downloading) { m_transfer->download(); } else if (state == Aborted) { TRACE() << Q_FUNC_INFO << "Aborted"; m_transfer->abort(); } else updateState(); } /*! \qmlproperty ContentTransfer.Direction ContentTransfer::direction \brief ContentTransfer::direction indicates if this transferobject is used for import or export transaction \table \header \li {2, 1} \e {ContentTransfer.Direction} is an enumeration: \header \li Direction \li Description \row \li ContentTransfer.Import \li Transfer is a request to import content. \row \li ContentTransfer.Export \li Transfer is a request to export content. \row \li ContentTransfer.Share \li Transfer is a request to share content. \endtable */ ContentTransfer::Direction ContentTransfer::direction() const { return m_direction; } /*! \qmlproperty ContentTransfer.SelectionType ContentTransfer::selectionType \brief ContentTransfer::selectionType indicates if this transfer object allows single or multiple selection of items \table \header \li {2, 1} \e {ContentTransfer.SelectionType} is an enumeration: \header \li Type \li Description \row \li ContentTransfer.Single \li Transfer should contain a single item. \row \li ContentTransfer.Multiple \li Transfer can contain multiple items. \endtable */ ContentTransfer::SelectionType ContentTransfer::selectionType() const { return m_selectionType; } void ContentTransfer::setSelectionType(ContentTransfer::SelectionType type) { TRACE() << Q_FUNC_INFO << type; if (!m_transfer) return; if (m_state == Created && (m_selectionType != type)) { m_transfer->setSelectionType(static_cast(type)); } } /*! * \qmlproperty list ContentTransfer::items * * List of items included in the ContentTransfer */ QQmlListProperty ContentTransfer::items() { TRACE() << Q_FUNC_INFO; if (m_state == Charged) { collectItems(); } #if QT_VERSION < QT_VERSION_CHECK(5, 15, 0) return QQmlListProperty(this, m_items); #else return QQmlListProperty(this, &m_items); #endif } /*! * \qmlmethod ContentTransfer::start() * * Start the transfer, this sets the State to ContentTransfer.Initiated */ bool ContentTransfer::start() { TRACE() << Q_FUNC_INFO << m_transfer->id() << ":" << m_state; if (m_state == Created) { return m_transfer->start(); } else { qWarning() << Q_FUNC_INFO << "Transfer can't be started"; return false; } } /*! * \qmlmethod ContentTransfer::finalize() * * Sets State to ContentTransfer.Finalized and cleans up temporary files */ bool ContentTransfer::finalize() { TRACE() << Q_FUNC_INFO; return m_transfer->finalize(); } /*! * \qmlproperty string ContentTransfer::store * ContentStore where the ContentTransfer will add items */ const QString ContentTransfer::store() const { TRACE() << Q_FUNC_INFO; return m_transfer->store().uri(); } void ContentTransfer::setStore(ContentStore* contentStore) { TRACE() << Q_FUNC_INFO; if (!m_transfer) { qWarning() << Q_FUNC_INFO << "invalid transfer"; return; } auto store_uri = m_transfer->setStore( ContentScope::contentScope2HubScope(contentStore->scope()), m_transfer->contentType()); contentStore->setUri(store_uri); } /*! * \brief ContentTransfer::transfer * \internal */ com::lomiri::content::Transfer *ContentTransfer::transfer() const { TRACE() << Q_FUNC_INFO; return m_transfer; } /*! * \brief ContentTransfer::setTransfer * \internal */ void ContentTransfer::setTransfer(com::lomiri::content::Transfer *transfer) { if (m_transfer) { qWarning() << Q_FUNC_INFO << "the transfer object was already set"; return; } if (!transfer) { qWarning() << Q_FUNC_INFO << "No valid transfer object passed:" << transfer; return; } m_transfer = transfer; m_direction = static_cast(transfer->direction()); TRACE() << Q_FUNC_INFO << "Direction:" << m_direction; connect(m_transfer, SIGNAL(selectionTypeChanged()), this, SLOT(updateSelectionType())); connect(m_transfer, SIGNAL(storeChanged()), this, SIGNAL(storeChanged())); connect(m_transfer, SIGNAL(stateChanged()), this, SLOT(updateState())); updateSelectionType(); updateState(); } /*! * \qmlproperty string ContentTransfer::downloadId * The Download Manager ID of a SingleDownload, which will then be * transfered to the selected peer. */ QString ContentTransfer::downloadId() { TRACE() << Q_FUNC_INFO; return m_transfer->downloadId(); } void ContentTransfer::setDownloadId(QString downloadId) { TRACE() << Q_FUNC_INFO; m_transfer->setDownloadId(downloadId); Q_EMIT downloadIdChanged(); } /*! * \brief ContentTransfer::collectItems gets the items out of the transfer object * \internal */ void ContentTransfer::collectItems() { TRACE() << Q_FUNC_INFO; if (m_state != Charged) return; qDeleteAll(m_items); m_items.clear(); QVector transfereditems = m_transfer->collect(); Q_FOREACH (const cuc::Item &hubItem, transfereditems) { ContentItem *qmlItem = new ContentItem(this); qmlItem->setItem(hubItem); m_items.append(qmlItem); } Q_EMIT itemsChanged(); } /*! * \qmlproperty ContentType ContentTransfer::contentType * Specifies the ContentType requested. */ ContentType::Type ContentTransfer::contentType() const { TRACE() << Q_FUNC_INFO; return ContentType::hubType2contentType(m_transfer->contentType()); } /*! * \qmlproperty QString ContentTransfer::source * Provides the app id of the source application for this transfer */ QString ContentTransfer::source() { TRACE() << Q_FUNC_INFO; return m_transfer->source(); } /*! * \qmlproperty QString ContentTransfer::destination * Provides the app id of the destination application for this transfer */ QString ContentTransfer::destination() { TRACE() << Q_FUNC_INFO; return m_transfer->destination(); } /*! * \brief ContentTransfer::updateState update the state from the hub transfer object * \internal */ void ContentTransfer::updateState() { TRACE() << Q_FUNC_INFO << m_transfer->state(); if (!m_transfer) { TRACE() << Q_FUNC_INFO << "Invalid transfer"; return; } m_state = static_cast(m_transfer->state()); Q_EMIT stateChanged(); } /*! * \brief ContentTransfer::updateSelectionType update the selectionType from the hub transfer object * \internal */ void ContentTransfer::updateSelectionType() { TRACE() << Q_FUNC_INFO; if (!m_transfer) { TRACE() << Q_FUNC_INFO << "Invalid transfer"; return; } m_selectionType = static_cast(m_transfer->selectionType()); Q_EMIT selectionTypeChanged(); } content-hub-1.1.1/import/Lomiri/Content/contenttransfer.h000066400000000000000000000074771456121157600235360ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_CONTENTTRANSFER_H_ #define COM_LOMIRI_CONTENTTRANSFER_H_ #include "contentstore.h" #include "contenttype.h" #include #include #include #include #include class ContentItem; class ContentTransfer : public QObject { Q_OBJECT Q_ENUMS(State) Q_ENUMS(Direction) Q_ENUMS(SelectionType) Q_PROPERTY(State state READ state WRITE setState NOTIFY stateChanged) Q_PROPERTY(Direction direction READ direction CONSTANT) Q_PROPERTY(SelectionType selectionType READ selectionType WRITE setSelectionType NOTIFY selectionTypeChanged) Q_PROPERTY(QString store READ store NOTIFY storeChanged) Q_PROPERTY(QQmlListProperty items READ items NOTIFY itemsChanged) Q_PROPERTY(QString downloadId READ downloadId WRITE setDownloadId NOTIFY downloadIdChanged) Q_PROPERTY(ContentType::Type contentType READ contentType CONSTANT) Q_PROPERTY(QString source READ source) Q_PROPERTY(QString destination READ destination) public: enum State { Created = com::lomiri::content::Transfer::created, Initiated = com::lomiri::content::Transfer::initiated, InProgress = com::lomiri::content::Transfer::in_progress, Charged = com::lomiri::content::Transfer::charged, Collected = com::lomiri::content::Transfer::collected, Aborted = com::lomiri::content::Transfer::aborted, Finalized = com::lomiri::content::Transfer::finalized, Downloading = com::lomiri::content::Transfer::downloading, Downloaded = com::lomiri::content::Transfer::downloaded }; enum Direction { Import = com::lomiri::content::Transfer::Import, Export = com::lomiri::content::Transfer::Export, Share = com::lomiri::content::Transfer::Share }; enum SelectionType { Single = com::lomiri::content::Transfer::SelectionType::single, Multiple = com::lomiri::content::Transfer::SelectionType::multiple }; ContentTransfer(QObject *parent = nullptr); State state() const; void setState(State state); Direction direction() const; SelectionType selectionType() const; void setSelectionType(SelectionType); QQmlListProperty items(); Q_INVOKABLE bool start(); Q_INVOKABLE bool finalize(); const QString store() const; Q_INVOKABLE void setStore(ContentStore *contentStore); com::lomiri::content::Transfer *transfer() const; void setTransfer(com::lomiri::content::Transfer *transfer); QString downloadId(); void setDownloadId(QString downloadId); void collectItems(); ContentType::Type contentType() const; QString source(); QString destination(); Q_SIGNALS: void stateChanged(); void itemsChanged(); void selectionTypeChanged(); void storeChanged(); void downloadIdChanged(); private Q_SLOTS: void updateState(); void updateSelectionType(); private: com::lomiri::content::Transfer *m_transfer; QList m_items; State m_state; Direction m_direction; SelectionType m_selectionType; ContentStore * m_contentStore; }; #endif // COM_LOMIRI_CONTENTTRANSFER_H_ content-hub-1.1.1/import/Lomiri/Content/contenttype.cpp000066400000000000000000000072271456121157600232170ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "contenttype.h" #include "../../../src/com/lomiri/content/debug.h" /*! \qmltype ContentType \instantiates ContentType \inqmlmodule Lomiri.Content \brief Describes the type of content to transfer \sa ContentHub \e {ContentType} is an enumeration of well known content types: \table \header \li Type \li Description \row \li ContentType.Unknown \li Unknown type \row \li ContentType.Documents \li Documents \row \li ContentType.Pictures \li Pictures \row \li ContentType.Music \li Music \row \li ContentType.Contacts \li Contacts \row \li ContentType.Videos \li Videos \row \li ContentType.Links \li Links \row \li ContentType.EBooks \li EBooks \row \li ContentType.Text \li Text \row \li ContentType.All \li Any of the above content types \endtable */ namespace cuc = com::lomiri::content; ContentType::ContentType(QObject *parent) : QObject(parent) { TRACE() << Q_FUNC_INFO; } /*! * \brief ContentType::contentType2HubType converts a ContentType::Type to a * com::lomiri::content::Type * \internal */ const com::lomiri::content::Type &ContentType::contentType2HubType(int type) { Type ctype = static_cast(type); TRACE() << Q_FUNC_INFO << ctype; return contentType2HubType(ctype); } /*! * \brief ContentType::contentType2HubType converts a ContentType::Type to a * com::lomiri::content::Type * \internal */ const com::lomiri::content::Type &ContentType::contentType2HubType(Type type) { switch(type) { case Documents: return cuc::Type::Known::documents(); case Pictures: return cuc::Type::Known::pictures(); case Music: return cuc::Type::Known::music(); case Contacts: return cuc::Type::Known::contacts(); case Videos: return cuc::Type::Known::videos(); case Links: return cuc::Type::Known::links(); case EBooks: return cuc::Type::Known::ebooks(); case Text: return cuc::Type::Known::text(); case Events: return cuc::Type::Known::events(); default: return cuc::Type::unknown(); } } /*! * \brief ContentType::hubType2contentType converts a * com::lomiri::content::Type to a ContentType::Type * \internal */ ContentType::Type ContentType::hubType2contentType(const QString& type) { if (type == cuc::Type::Known::documents().id()) return Documents; else if (type == cuc::Type::Known::pictures().id()) return Pictures; else if (type == cuc::Type::Known::music().id()) return Music; else if (type == cuc::Type::Known::contacts().id()) return Contacts; else if (type == cuc::Type::Known::videos().id()) return Videos; else if (type == cuc::Type::Known::links().id()) return Links; else if (type == cuc::Type::Known::ebooks().id()) return EBooks; else if (type == cuc::Type::Known::text().id()) return Text; else if (type == cuc::Type::Known::events().id()) return Events; else return Unknown; } content-hub-1.1.1/import/Lomiri/Content/contenttype.h000066400000000000000000000026331456121157600226600ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_CONTENTTYPE_H_ #define COM_LOMIRI_CONTENTTYPE_H_ #include #include #include class ContentType : public QObject { Q_OBJECT Q_ENUMS(Type) public: enum Type { Undefined = -2, All = -1, Unknown = 0, Documents = 1, Pictures = 2, Music = 3, Contacts = 4, Videos = 5, Links = 6, EBooks = 7, Text = 8, Events = 9 }; ContentType(QObject *parent = nullptr); static const com::lomiri::content::Type &contentType2HubType(int type); static const com::lomiri::content::Type &contentType2HubType(Type type); static Type hubType2contentType(const QString& type); }; #endif // COM_LOMIRI_CONTENTTYPE_H_ content-hub-1.1.1/import/Lomiri/Content/qmldir000066400000000000000000000005471456121157600213500ustar00rootroot00000000000000module Lomiri.Content plugin lomiri-content-hub-plugin #0.1 ContentTransferHint 0.1 ContentTransferHint.qml ContentPeerPicker 0.1 ContentPeerPicker10.qml #1.0 ContentTransferHint 1.0 ContentTransferHint.qml ContentPeerPicker 1.0 ContentPeerPicker10.qml #1.1 ContentPeerPicker 1.1 ContentPeerPicker11.qml #1.3 ContentPeerPicker 1.3 ContentPeerPicker13.qml content-hub-1.1.1/import/Lomiri/Content/qmlimportexporthandler.cpp000066400000000000000000000027731456121157600254700ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "qmlimportexporthandler.h" #include "../../../src/com/lomiri/content/debug.h" #include namespace cuc = com::lomiri::content; /*! * QmlImportExportHandler is for internal use only */ QmlImportExportHandler::QmlImportExportHandler(QObject *parent) : cuc::ImportExportHandler(parent) { TRACE() << Q_FUNC_INFO; } /*! * \reimp */ void QmlImportExportHandler::handle_import(com::lomiri::content::Transfer *transfer) { TRACE() << Q_FUNC_INFO; Q_EMIT importRequested(transfer); } /*! * \reimp */ void QmlImportExportHandler::handle_export(com::lomiri::content::Transfer *transfer) { TRACE() << Q_FUNC_INFO; Q_EMIT exportRequested(transfer); } /*! * \reimp */ void QmlImportExportHandler::handle_share(com::lomiri::content::Transfer *transfer) { TRACE() << Q_FUNC_INFO; Q_EMIT shareRequested(transfer); } content-hub-1.1.1/import/Lomiri/Content/qmlimportexporthandler.h000066400000000000000000000027671456121157600251400ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_QMLIMPORTEXPORTHANDLER_H_ #define COM_LOMIRI_QMLIMPORTEXPORTHANDLER_H_ #include namespace com { namespace lomiri { namespace content { class Transfer; } } } class QmlImportExportHandler : public com::lomiri::content::ImportExportHandler { Q_OBJECT public: QmlImportExportHandler(QObject *parent = nullptr); Q_INVOKABLE virtual void handle_import(com::lomiri::content::Transfer *transfer); Q_INVOKABLE virtual void handle_export(com::lomiri::content::Transfer *transfer); Q_INVOKABLE virtual void handle_share(com::lomiri::content::Transfer *transfer); Q_SIGNALS: void importRequested(com::lomiri::content::Transfer*); void exportRequested(com::lomiri::content::Transfer*); void shareRequested(com::lomiri::content::Transfer*); }; #endif // COM_LOMIRI_QMLIMPORTEXPORTHANDLER_H_ content-hub-1.1.1/import/Ubuntu/000077500000000000000000000000001456121157600165445ustar00rootroot00000000000000content-hub-1.1.1/import/Ubuntu/CMakeLists.txt000066400000000000000000000011721456121157600213050ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . add_subdirectory(Content) content-hub-1.1.1/import/Ubuntu/Content/000077500000000000000000000000001456121157600201565ustar00rootroot00000000000000content-hub-1.1.1/import/Ubuntu/Content/CMakeLists.txt000066400000000000000000000035761456121157600227310ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # Copyright © 2022 UBports Foundation. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . set(QT_IMPORTS_DIR "${CMAKE_INSTALL_LIBDIR}/qt5/qml") set(CONTENT_HUB_IMPORTS_DIR "${QT_IMPORTS_DIR}/Ubuntu/Content") set(PLUGIN "ubuntu-content-hub-plugin") add_custom_target(${PLUGIN} ALL COMMAND ${CMAKE_COMMAND} -E create_symlink ../../Lomiri/Content/liblomiri-content-hub-plugin.so ${CMAKE_CURRENT_BINARY_DIR}/libubuntu-content-hub-plugin.so BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/libubuntu-content-hub-plugin.so) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libubuntu-content-hub-plugin.so DESTINATION ${CONTENT_HUB_IMPORTS_DIR}) file(GLOB QML_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.qml *.js qmldir) install(FILES ${QML_FILES} DESTINATION ${CONTENT_HUB_IMPORTS_DIR}) if(NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}) # copy qml files and assets over to build dir to be able to import them uninstalled foreach(_file ${QML_FILES}) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_file} DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${_file} COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/${_file} ${CMAKE_CURRENT_BINARY_DIR}/${_file}) endforeach(_file) add_custom_target(copy_ubuntu_compat_files_to_build_dir DEPENDS ${QML_FILES}) endif() content-hub-1.1.1/import/Ubuntu/Content/qmldir000066400000000000000000000007451456121157600213770ustar00rootroot00000000000000module Ubuntu.Content plugin ubuntu-content-hub-plugin #0.1 ContentTransferHint 0.1 ../../Lomiri/Content/ContentTransferHint.qml ContentPeerPicker 0.1 ../../Lomiri/Content/ContentPeerPicker10.qml #1.0 ContentTransferHint 1.0 ../../Lomiri/Content/ContentTransferHint.qml ContentPeerPicker 1.0 ../../Lomiri/Content/ContentPeerPicker10.qml #1.1 ContentPeerPicker 1.1 ../../Lomiri/Content/ContentPeerPicker11.qml #1.3 ContentPeerPicker 1.3 ../../Lomiri/Content/ContentPeerPicker13.qml content-hub-1.1.1/include/000077500000000000000000000000001456121157600153735ustar00rootroot00000000000000content-hub-1.1.1/include/com/000077500000000000000000000000001456121157600161515ustar00rootroot00000000000000content-hub-1.1.1/include/com/lomiri/000077500000000000000000000000001456121157600174445ustar00rootroot00000000000000content-hub-1.1.1/include/com/lomiri/content/000077500000000000000000000000001456121157600211165ustar00rootroot00000000000000content-hub-1.1.1/include/com/lomiri/content/hub.h000066400000000000000000000067001456121157600220500ustar00rootroot00000000000000/* * Copyright © 2013,2016 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_LOMIRI_CONTENT_HUB_H_ #define COM_LOMIRI_CONTENT_HUB_H_ #include #include #include #include #include class QStringList; class QDBusPendingCall; namespace com { namespace lomiri { namespace content { class ImportExportHandler; class Store; class Transfer; class Hub : public QObject { Q_OBJECT Q_PROPERTY(QStringList pasteFormats READ pasteFormats NOTIFY pasteFormatsChanged) public: struct Client { static Hub* instance(); }; Hub(const Hub&) = delete; virtual ~Hub(); Hub& operator=(const Hub&) = delete; Q_INVOKABLE virtual void register_import_export_handler(ImportExportHandler* handler); Q_DECL_DEPRECATED_X("Set store by scope and content type on transfer directly instead") Q_INVOKABLE virtual const Store* store_for_scope_and_type(Scope scope, Type type); Q_INVOKABLE virtual Peer default_source_for_type(Type type); Q_INVOKABLE virtual QVector known_sources_for_type(Type type); Q_INVOKABLE virtual QVector known_destinations_for_type(Type type); Q_INVOKABLE virtual QVector known_shares_for_type(Type type); Q_INVOKABLE virtual Transfer* create_import_from_peer(Peer peer); Q_INVOKABLE virtual Transfer* create_export_to_peer(Peer peer); Q_INVOKABLE virtual Transfer* create_share_to_peer(Peer peer); Q_INVOKABLE virtual void quit(); Q_INVOKABLE virtual Transfer* create_import_from_peer_for_type(Peer peer, Type type); Q_INVOKABLE virtual Transfer* create_export_to_peer_for_type(Peer peer, Type type); Q_INVOKABLE virtual Transfer* create_share_to_peer_for_type(Peer peer, Type type); Q_INVOKABLE virtual bool has_pending(QString peer_id); Q_INVOKABLE virtual Peer peer_for_app_id(QString app_id); /// // Copy & Paste QDBusPendingCall createPaste(const QString &surfaceId, const QMimeData& data); QDBusPendingCall requestLatestPaste(const QString &surfaceId); QDBusPendingCall requestPasteById(const QString &surfaceId, int pasteId); QMimeData* paste(QDBusPendingCall requestPeply); // synchronous versions bool createPasteSync(const QString &surfaceId, const QMimeData& data); QMimeData* latestPaste(const QString &surfaceId); QMimeData* pasteById(const QString &surfaceId, int id); QStringList pasteFormats(); Q_SIGNALS: void pasteFormatsChanged(); void pasteboardChanged(); private Q_SLOTS: void onPasteFormatsChanged(const QStringList &); protected: Hub(QObject* = nullptr); private: void requestPasteFormats(); struct Private; QScopedPointer d; bool eventFilter(QObject *obj, QEvent *event); }; } } } #endif // COM_LOMIRI_CONTENT_HUB_H_ content-hub-1.1.1/include/com/lomiri/content/import_export_handler.h000066400000000000000000000026651456121157600257100ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_LOMIRI_CONTENT_IMPORT_EXPORT_HANDLER_H_ #define COM_LOMIRI_CONTENT_IMPORT_EXPORT_HANDLER_H_ #include namespace com { namespace lomiri { namespace content { class Transfer; class ImportExportHandler : public QObject { Q_OBJECT public: ImportExportHandler(const ImportExportHandler&) = delete; virtual ~ImportExportHandler() = default; ImportExportHandler& operator=(const ImportExportHandler&) = delete; Q_INVOKABLE virtual void handle_import(Transfer*) = 0; Q_INVOKABLE virtual void handle_export(Transfer*) = 0; Q_INVOKABLE virtual void handle_share(Transfer*) = 0; protected: ImportExportHandler(QObject* parent = nullptr); }; } } } #endif // COM_LOMIRI_CONTENT_IMPORT_EXPORT_HANDLER_H_ content-hub-1.1.1/include/com/lomiri/content/item.h000066400000000000000000000044741456121157600222360ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_LOMIRI_CONTENT_ITEM_H_ #define COM_LOMIRI_CONTENT_ITEM_H_ #include #include #include #include namespace com { namespace lomiri { namespace content { class Item : public QObject { Q_OBJECT Q_PROPERTY(QUrl url READ url() WRITE setUrl) Q_PROPERTY(QString name READ name WRITE setName) Q_PROPERTY(QString text READ text WRITE setText) Q_PROPERTY(QByteArray stream READ stream WRITE setStream) Q_PROPERTY(QString streamType READ streamType WRITE setStreamType) public: Item(const QUrl& = QUrl(), QObject* = nullptr); Item(const Item&); virtual ~Item(); Item& operator=(const Item&); bool operator==(const Item&) const; Q_INVOKABLE const QUrl& url() const; Q_INVOKABLE void setUrl(const QUrl &url) const; Q_INVOKABLE const QString& name() const; Q_INVOKABLE void setName(const QString &name) const; Q_INVOKABLE const QString text() const; Q_INVOKABLE void setText(const QString &text) const; Q_INVOKABLE const QByteArray& stream() const; Q_INVOKABLE void setStream(const QByteArray &stream) const; Q_INVOKABLE const QString& streamType() const; Q_INVOKABLE void setStreamType(const QString &type) const; private: struct Private; QSharedPointer d; }; } } } Q_DECL_EXPORT QDBusArgument &operator<<(QDBusArgument &argument, const com::lomiri::content::Item &item); Q_DECL_EXPORT const QDBusArgument &operator>>(const QDBusArgument &argument, com::lomiri::content::Item &item); Q_DECLARE_METATYPE(com::lomiri::content::Item) #endif // COM_LOMIRI_CONTENT_ITEM_H_ content-hub-1.1.1/include/com/lomiri/content/paste.h000066400000000000000000000031431456121157600224040ustar00rootroot00000000000000/* * Copyright © 2016 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef COM_LOMIRI_CONTENT_PASTE_H_ #define COM_LOMIRI_CONTENT_PASTE_H_ #include #include #include #include namespace com { namespace lomiri { namespace content { class Paste : public QObject { Q_OBJECT Q_ENUMS(State) Q_PROPERTY(int id READ id) Q_PROPERTY(QString source READ source) public: enum State { created, charged, saved, collected }; Paste(const Paste&) = delete; virtual ~Paste(); Paste& operator=(const Paste&) = delete; Q_INVOKABLE virtual int id() const; Q_INVOKABLE virtual QMimeData* mimeData(); Q_INVOKABLE virtual QString source() const; private: struct Private; friend struct Private; friend class Hub; QSharedPointer d; Paste(const QSharedPointer&, QObject* parent = nullptr); }; } } } #endif // COM_LOMIRI_CONTENT_PASTE_H_ content-hub-1.1.1/include/com/lomiri/content/peer.h000066400000000000000000000044431456121157600222270ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_LOMIRI_CONTENT_PEER_H_ #define COM_LOMIRI_CONTENT_PEER_H_ #include #include #include namespace com { namespace lomiri { namespace content { class Peer : public QObject { Q_OBJECT Q_PROPERTY(QString id READ id) Q_PROPERTY(QString name READ name WRITE setName) Q_PROPERTY(QString iconName READ iconName WRITE setIconName) Q_PROPERTY(bool isDefaultPeer READ isDefaultPeer) public: static const Peer& unknown(); Peer(const QString& id = QString(), bool isDefaultPeer = false, QObject* parent = nullptr); Peer(const QString&, const QString&, QByteArray&, const QString&, bool, QObject* parent = nullptr); Peer(const Peer& rhs); virtual ~Peer(); Peer& operator=(const Peer& rhs); bool operator==(const Peer& rhs) const; Q_INVOKABLE virtual const QString& id() const; Q_INVOKABLE virtual QString name() const; Q_INVOKABLE void setName(const QString&); Q_INVOKABLE virtual QByteArray iconData() const; Q_INVOKABLE void setIconData(const QByteArray&); Q_INVOKABLE virtual QString iconName() const; Q_INVOKABLE void setIconName(const QString&); Q_INVOKABLE virtual bool isDefaultPeer() const; private: struct Private; QSharedPointer d; }; } } } Q_DECL_EXPORT QDBusArgument &operator<<(QDBusArgument &argument, const com::lomiri::content::Peer &peer); Q_DECL_EXPORT const QDBusArgument &operator>>(const QDBusArgument &argument, com::lomiri::content::Peer &peer); Q_DECLARE_METATYPE(com::lomiri::content::Peer) #endif // COM_LOMIRI_CONTENT_PEER_H_ content-hub-1.1.1/include/com/lomiri/content/scope.h000066400000000000000000000017301456121157600224010ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_LOMIRI_CONTENT_SCOPE_H_ #define COM_LOMIRI_CONTENT_SCOPE_H_ #include namespace com { namespace lomiri { namespace content { enum Scope { unknown = -2, transient = -1, system, user, app }; } } } #endif // COM_LOMIRI_CONTENT_SCOPE_H_ content-hub-1.1.1/include/com/lomiri/content/store.h000066400000000000000000000032041456121157600224220ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_LOMIRI_CONTENT_STORE_H_ #define COM_LOMIRI_CONTENT_STORE_H_ #include #include #include #include namespace com { namespace lomiri { namespace content { class Store : public QObject { Q_OBJECT public: Q_PROPERTY(QString uri READ uri) Q_DECL_DEPRECATED_X("Do not create Store directly from path.") Store(const QString& uri, QObject* parent = nullptr); Store(const Store&); virtual ~Store(); Store& operator=(const Store&); Q_INVOKABLE virtual Scope scope() const; Q_INVOKABLE virtual const Type& type() const; Q_INVOKABLE virtual const QString& uri() const; protected: friend class Hub; friend class Transfer; Store(Scope scope, const Type & type, const QString& uri, QObject* parent = nullptr); struct Private; QSharedPointer d; }; } } } #endif // COM_LOMIRI_CONTENT_STORE_H_ content-hub-1.1.1/include/com/lomiri/content/transfer.h000066400000000000000000000074561456121157600231270ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_LOMIRI_CONTENT_TRANSFER_H_ #define COM_LOMIRI_CONTENT_TRANSFER_H_ #include #include #include #include #include #include #include #include namespace com { namespace lomiri { namespace content { namespace detail { class Handler; } } } } namespace com { namespace lomiri { namespace content { class Item; class Transfer : public QObject { Q_OBJECT Q_ENUMS(State) Q_ENUMS(SelectionType) Q_ENUMS(Direction) Q_PROPERTY(int id READ id) Q_PROPERTY(State state READ state NOTIFY stateChanged) Q_PROPERTY(QVector items READ collect WRITE charge) Q_PROPERTY(Store store READ store NOTIFY storeChanged) Q_PROPERTY(SelectionType selectionType READ selectionType WRITE setSelectionType NOTIFY selectionTypeChanged) Q_PROPERTY(Direction direction READ direction) Q_PROPERTY(QString downloadId READ downloadId WRITE setDownloadId NOTIFY downloadIdChanged) Q_PROPERTY(QString contentType READ contentType) Q_PROPERTY(QString source READ source) Q_PROPERTY(QString destination READ destination) public: enum State { created, initiated, in_progress, charged, collected, aborted, finalized, downloading, downloaded }; enum SelectionType { single, multiple }; enum Direction { Import, Export, Share }; Transfer(const Transfer&) = delete; virtual ~Transfer(); Transfer& operator=(const Transfer&) = delete; Q_INVOKABLE virtual int id() const; Q_INVOKABLE virtual State state() const; Q_INVOKABLE virtual SelectionType selectionType() const; Q_INVOKABLE virtual Direction direction() const; Q_INVOKABLE virtual bool start(); Q_INVOKABLE virtual bool abort(); Q_INVOKABLE virtual bool finalize(); Q_INVOKABLE virtual bool charge(const QVector& items); Q_INVOKABLE virtual QVector collect(); Q_INVOKABLE virtual Store store() const; Q_DECL_DEPRECATED_X("Set store by scope and content type instead") Q_INVOKABLE virtual bool setStore(const Store*); Q_INVOKABLE virtual QString setStore(Scope, const QString&); Q_INVOKABLE virtual bool setSelectionType(const SelectionType&); Q_INVOKABLE virtual QString downloadId() const; Q_INVOKABLE virtual bool setDownloadId(const QString); Q_INVOKABLE virtual bool download(); Q_INVOKABLE virtual QString contentType() const; Q_INVOKABLE virtual QString source() const; Q_INVOKABLE virtual QString destination() const; Q_SIGNAL void stateChanged(); Q_SIGNAL void storeChanged(); Q_SIGNAL void selectionTypeChanged(); Q_SIGNAL void downloadIdChanged(); private: struct Private; friend struct Private; friend class Hub; friend class com::lomiri::content::detail::Handler; QSharedPointer d; Transfer(const QSharedPointer&, QObject* parent = nullptr); }; } } } #endif // COM_LOMIRI_CONTENT_TRANSFER_H_ content-hub-1.1.1/include/com/lomiri/content/type.h000066400000000000000000000040041456121157600222460ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_LOMIRI_CONTENT_TYPE_H_ #define COM_LOMIRI_CONTENT_TYPE_H_ #include #include namespace com { namespace lomiri { namespace content { class Transfer; namespace detail { class Service; class RegistryUpdater; } class Type : public QObject { Q_OBJECT Q_PROPERTY(QString id READ id()) public: static const Type& unknown(); static const Type& all(); struct Known { static const Type& documents(); static const Type& pictures(); static const Type& music(); static const Type& contacts(); static const Type& videos(); static const Type& links(); static const Type& ebooks(); static const Type& text(); static const Type& events(); }; virtual ~Type(); Type(const Type&); Type& operator=(const Type&); bool operator==(const Type&) const; bool operator!=(const Type&) const; bool operator<(const Type&) const; Q_INVOKABLE virtual const QString& id() const; protected: friend struct Known; friend class Transfer; friend class detail::Service; friend class detail::RegistryUpdater; explicit Type(const QString&, QObject* = nullptr); private: struct Private; QSharedPointer d; }; } } } #endif // COM_LOMIRI_CONTENT_TYPE_H_ content-hub-1.1.1/libcontent-hub-glib.pc.in000066400000000000000000000004311456121157600205270ustar00rootroot00000000000000prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=${prefix}/include Name: @glib-pkg-name@ Description: content sharing/picking library - GLib bindings Version: @CONTENT_HUB_VERSION@ Libs: -L${libdir} -lcontent-hub-glib Cflags: -I${includedir} Requires: gio-2.0 content-hub-1.1.1/libcontent-hub.pc.in000066400000000000000000000003771456121157600176250ustar00rootroot00000000000000prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=${prefix}/include Name: @pkg-name@ Description: content sharing/picking library Version: @CONTENT_HUB_VERSION@ Libs: -L${libdir} -lcontent-hub Cflags: -I${includedir} Requires: Qt5DBus content-hub-1.1.1/po/000077500000000000000000000000001456121157600143665ustar00rootroot00000000000000content-hub-1.1.1/po/CMakeLists.txt000066400000000000000000000025401456121157600171270ustar00rootroot00000000000000project(contenthub-translations) include(FindGettext) find_program(GETTEXT_XGETTEXT_EXECUTABLE xgettext) set(DOMAIN ${GETTEXT_PACKAGE}) set(POT_FILE ${DOMAIN}.pot) file(STRINGS ${CMAKE_CURRENT_SOURCE_DIR}/LINGUAS LINGUAS REGEX "^[^#].*") string(REGEX MATCHALL "[^ \t]+" LANGS "${LINGUAS}") configure_file(${CMAKE_CURRENT_SOURCE_DIR}/POTFILES.in ${CMAKE_CURRENT_BINARY_DIR}/POTFILES COPYONLY) add_custom_target(${POT_FILE} COMMAND ${GETTEXT_XGETTEXT_EXECUTABLE} -o ${POT_FILE} -D ${CMAKE_SOURCE_DIR} --from-code=UTF-8 --c++ --qt --add-comments=TRANSLATORS --keyword=__ --keyword=tr --keyword=tr:1,2 --keyword=dtr:2 --keyword=dtr:2,3 --package-name='${GETTEXT_PACKAGE}' --copyright-holder='Canonical Ltd.' --files-from=${CMAKE_CURRENT_BINARY_DIR}/POTFILES) foreach(LANG ${LANGS}) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/${LANG}.po ${CMAKE_CURRENT_BINARY_DIR}/${LANG}.po COPYONLY) endforeach(LANG) gettext_process_pot_file(${POT_FILE} ALL INSTALL_DESTINATION ${CMAKE_INSTALL_LOCALEDIR} LANGUAGES ${LANGS}) content-hub-1.1.1/po/LINGUAS000066400000000000000000000005761456121157600154230ustar00rootroot00000000000000aa am ar ast az bem be bg bn_BD br bs ca ca@valencia cs cy da de dv el en_AU en_CA en_GB en_US eo es et eu fa fi fo fr_CA fr_CH fr frp fur ga gd gl gu he hi hr hu hy ia id io is it ja jbo kab ka kk km kmr kn ko lb ln lo lt lv mg mi mk ml ms my nan nb ne nl ny oc om pam pa pl ps pt_BR pt ro ru sco sc sdh sd shn si sk sl sq sr sv ta te tet tg th tk tr ug uk ur vi zh_CN zh_HK zh_TW content-hub-1.1.1/po/POTFILES.in000066400000000000000000000041351456121157600161460ustar00rootroot00000000000000import/Lomiri/Content/contentpeer.cpp import/Lomiri/Content/contenttype.cpp import/Lomiri/Content/contentpeermodel.cpp import/Lomiri/Content/contentstore.cpp import/Lomiri/Content/qmlimportexporthandler.cpp import/Lomiri/Content/contenticonprovider.cpp import/Lomiri/Content/contenthub.cpp import/Lomiri/Content/contenttransfer.cpp import/Lomiri/Content/contenthandler.cpp import/Lomiri/Content/contenthubplugin.cpp import/Lomiri/Content/contentitem.cpp import/Lomiri/Content/contentscope.cpp examples/importer/importer.cpp examples/importer/example.cpp examples/importer/exampleimporter.cpp examples/pasteboard/paste.cpp examples/pasteboard/copy.cpp examples/exporter/exampleexporter.cpp examples/exporter/exporter.cpp tools/send/autoexporter.cpp tools/send/exporter.cpp src/com/lomiri/content/item.cpp src/com/lomiri/content/detail/service.cpp src/com/lomiri/content/detail/paste.cpp src/com/lomiri/content/detail/handler.cpp src/com/lomiri/content/detail/i18n.cpp src/com/lomiri/content/detail/app_manager.cpp src/com/lomiri/content/detail/transfer.cpp src/com/lomiri/content/type.cpp src/com/lomiri/content/debug.cpp src/com/lomiri/content/import_export_handler.cpp src/com/lomiri/content/utils.cpp src/com/lomiri/content/paste.cpp src/com/lomiri/content/hub.cpp src/com/lomiri/content/peer.cpp src/com/lomiri/content/transfer.cpp src/com/lomiri/content/store.cpp src/com/lomiri/content/service/main.cpp src/com/lomiri/content/service/registry-updater.cpp src/com/lomiri/content/service/registry.cpp import/Lomiri/Content/ResponsiveGridView.qml import/Lomiri/Content/ContentPeerPicker10.qml import/Lomiri/Content/ContentPeerPicker13.qml import/Lomiri/Content/ContentPeerPicker11.qml import/Lomiri/Content/ContentTransferHint.qml import/Lomiri/Content/ContentPageHeader.qml import/Ubuntu/Content/ContentStore.qml import/Ubuntu/Content/ContentPeer.qml import/Ubuntu/Content/ContentScope.qml import/Ubuntu/Content/ContentHub.qml import/Ubuntu/Content/ContentPeerModel.qml import/Ubuntu/Content/ContentItem.qml examples/import-qml/import.qml examples/export-qml/app-exporter.qml examples/export-qml/export.qml examples/picker-qml/picker.qml content-hub-1.1.1/po/aa.po000066400000000000000000000063431456121157600153150ustar00rootroot00000000000000# Afar translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-04-19 05:06+0000\n" "Last-Translator: Charif AYFARAH \n" "Language-Team: Afar \n" "Language: aa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Qulo gaba kalteh" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Fak" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Eleyyiy" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Qulo makkinna" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Akak doorit" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Edde fak" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Edd esgel" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Abnisso" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Awayih ibak daabimte abnissoy a qaynatih addattino tace matan. Wohuk " "qafuuta." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Awayih ibak daabimte abnissoy a qaynatih addattino quukta matan. Wohuk " "qafuuta." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Aaloota" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Bayis" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Tabsi gitat yan" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/af.po000066400000000000000000000054731456121157600153250ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/am.po000066400000000000000000000065741456121157600153370ustar00rootroot00000000000000# Amharic translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-11 21:30+0000\n" "Last-Translator: samson \n" "Language-Team: Amharic \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "ማውረድ ጨርሷል" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "መክፈቻ" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "መደምሰሻ" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "ማውረድ አልተሳካም" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "ይምረጡ ከ" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "መክፈቻ በ" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "ማካፈያ ለ" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "መተግበሪያዎች" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "አዝናለሁ ይህን አይነት ይዞታ የሚያቀርብ መተግበሪያ አልተገጠመም" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "አዝናለሁ ይህን አይነት ይዞታ የሚያቀርብ መተግበሪያ አልተገጠመም" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "አካላቶች" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "መሰረዣ" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "ማስተላለፍ በሂደት ላይ" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/an.po000066400000000000000000000054731456121157600153350ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: an\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ar.po000066400000000000000000000066421456121157600153400ustar00rootroot00000000000000# Arabic translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-11-02 22:04+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "اكتمل التنزيل" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "فتح" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "تجاهل" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "فشل التنزيل" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "اختيار من" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "فتح باستخدام" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "مشاركة إلى" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "التطبيقات" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "عذراً، لا يوجد حالياً أي تطبيقات مثبتة تستطيع تقديم هذا النوع من المحتوى." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "عذراً، لا يوجد حالياً أي تطبيقات مثبتة تستطيع معالجة هذا النوع من المحتوى." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "الأجهزة" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "إلغاء" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "النقل قيد التقدم" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/as.po000066400000000000000000000054731456121157600153420ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: as\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ast.po000066400000000000000000000063571456121157600155300ustar00rootroot00000000000000# Asturian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-09 09:48+0000\n" "Last-Translator: ivarela \n" "Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Baxada completa" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Abrir" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Descartar" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Falló la descarga" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Escoyer de" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Abrir con" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Compartir con" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Apps" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sentímoslo, nun hai nengún app instalada qu'apurra esta mena de conteníu" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sentímoslo, nun hai nengún app instalada que remane esta mena de conteníu" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Preseos" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Encaboxar" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Tresferencia en procesu" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/az.po000066400000000000000000000060341456121157600153430ustar00rootroot00000000000000# Azerbaijani translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-02-05 11:30+0000\n" "Last-Translator: Nicat Məmmədov \n" "Language-Team: Azerbaijani \n" "Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Endirilmə Tamamlandı" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Aç" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Tətbiqetmələr" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Cihazlar" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "İmtina" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/be.po000066400000000000000000000071271456121157600153230ustar00rootroot00000000000000# Belarusian translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-05-11 08:35+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Belarusian \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Запампоўка скончана" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Адкрыць" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Адкінуць" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Памылка пры спробе атрымання" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Выберыце з" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Адкрыць з дапамогай" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Падзяліцца" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Прыкладанні" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Прабачце, прадастаўленне гэтага тыпу дадзеных не прадугледжана ні ў адной з " "усталяваных праграм." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Прабачце, апрацоўка гэтага тыпу дадзеных не прадугледжана ні ў адной з " "усталяваных праграм." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Прылады" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Скасаваць" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Перадача дадзеных" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/bem.po000066400000000000000000000057421456121157600155010ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bemba \n" "Language: bem\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/bg.po000066400000000000000000000061061456121157600153210ustar00rootroot00000000000000# Bulgarian translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/bn.po000066400000000000000000000054731456121157600153360ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/bn_BD.po000066400000000000000000000054721456121157600157020ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: bn_BD\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/bo.po000066400000000000000000000054731456121157600153370ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: bo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/br.po000066400000000000000000000065221456121157600153360ustar00rootroot00000000000000# Breton translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-09-24 09:24+0000\n" "Last-Translator: Fohanno Thierry \n" "Language-Team: Breton \n" "Language: br\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Echu eo ar pellgargañ" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Digeriñ" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Disteurel" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "C'hwitet eo ar pellgargañ" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Dibab e-touez" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Digeriñ gant" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Rannañ gant" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Arloadoù" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Digarezit ac'hanomp, evit bremañ n'eus ket arloadoù staliet hag a c'hall " "pourchas ar seurt endalc'h-se." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Digarezit ac'hanomp, evit bremañ n'eus ket arloadoù staliet hag a c'hall " "ober gant ar seurt endalc'h-se." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Trobarzhelloù" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Nullañ" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "O treuzkas" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/bs.po000066400000000000000000000064661456121157600153460ustar00rootroot00000000000000# Bosnian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-17 20:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Preuzimanje gotovo" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Otvori" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Odbaci" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Preuzimanje nije uspjelo" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Izaberi iz" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Otvori pomoću" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Dijeli sa" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplikacije" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Žao nam je, ne postoje bilo kakve trenutno instalirane aplikacije koje " "mogu da pruže ovu vrstu sadržaja." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Žao nam je, ne postoje bilo kakve trenutno instalirane aplikacije koje " "mogu da obrade ovu vrstu sadržaja." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Uređaji" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Otkaži" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Prijenos u toku" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ca.po000066400000000000000000000064151456121157600153170ustar00rootroot00000000000000# Catalan translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-07 12:37+0000\n" "Last-Translator: David Planella \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "S'ha acabat la baixada" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Obre" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Descarta" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Ha fallat la baixada" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Trieu entre" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Obre amb" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Comparteix a" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplicacions" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "No hi ha cap aplicació instal·lada que proporcioni aquest tipus de contingut." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "No hi ha cap aplicació instal·lada que gestioni aquest tipus de contingut." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Dispositius" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancel·la" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferència en curs" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ca@valencia.po000066400000000000000000000064111456121157600171160ustar00rootroot00000000000000# Catalan translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-11-01 15:33+0000\n" "Last-Translator: David Planella \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "S'ha acabat la baixada" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Obri" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Descarta" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Ha fallat la baixada" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Trieu entre" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Obri amb" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Comparteix a" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplicacions" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "No hi ha cap aplicació instal·lada que proporcioni este tipus de contingut." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "No hi ha cap aplicació instal·lada que gestione este tipus de contingut." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Dispositius" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancel·la" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferència en curs" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ce.po000066400000000000000000000054731456121157600153260ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ce\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ckb.po000066400000000000000000000054741456121157600154770ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ckb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/co.po000066400000000000000000000054731456121157600153400ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: co\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/content-hub.pot000066400000000000000000000055261456121157600173500ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/crh.po000066400000000000000000000054741456121157600155140ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: crh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/cs.po000066400000000000000000000070041456121157600153340ustar00rootroot00000000000000# Czech translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-08-27 14:48+0000\n" "Last-Translator: Milan Korecky \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 5.0.1-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Stahování dokončeno" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Otevřít" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Odmítnout" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Stahování selhalo" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Vybrat z" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Otevřít s" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Sdílet" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplikace" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Omlouváme se, ale v současné době nejsou nainstalovány žádné aplikace, které " "mohou poskytovat tento typ obsahu." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Omlouváme se, ale v současné době nejsou nainstalovány žádné aplikace, které " "mohou zvládnout tento typ obsahu." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Zařízení" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Zrušit" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Probíhá přenos" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "Příklad výběru druha" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Zdroje" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Vyberte zdroj" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Výsledky" content-hub-1.1.1/po/csb.po000066400000000000000000000054741456121157600155070ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: csb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/cv.po000066400000000000000000000054731456121157600153470ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: cv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/cy.po000066400000000000000000000063751456121157600153540ustar00rootroot00000000000000# Welsh translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-07-31 12:01+0000\n" "Last-Translator: Owen Llywelyn \n" "Language-Team: Welsh \n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Llwytho i lawr wedi cwblhau" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Agor" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Gwrthod" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Methodd y llwytho i lawr" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Dewis o" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Agor gyda" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Rhannu i" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Apiau" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Ymddiheuriadau, does dim apiau wedi'u gosod all ddarparu cynnwys o'r math " "hwn." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Ymddiheuriadau, does dim apiau wedi'u gosod all drin cynnwys o'r math hwn." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Dyfeisiau" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Diddymu" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Trosglwyddo yn digwydd" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/da.po000066400000000000000000000064371456121157600153240ustar00rootroot00000000000000# Danish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-11 11:22+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Overførsel fuldført" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Åben" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Afvis" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Download mislykkedes" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Vælg blandt" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Åbn med" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Del til" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Applikationer" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Beklager, der er i øjeblikket ikke installeret programmer, der kan tilbyde " "denne indholdstype." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Beklager, der er i øjeblikket ikke installeret programmer, der kan håndtere " "denne indholdstype." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Enheder" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Annullér" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Overførslen er undervejs" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/de.po000066400000000000000000000067011456121157600153220ustar00rootroot00000000000000# German translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-02-01 20:50+0000\n" "Last-Translator: Mike Gabriel \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.16-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Herunterladen abgeschlossen" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Öffnen" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Verwerfen" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Herunterladen fehlgeschlagen" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Auswählen aus" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Öffnen mit" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Teilen mit" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Anwendungen" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Im Moment sind keine Apps installiert, die Inhalte dieses Typs bereitstellen " "können." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Im Moment sind keine Apps installiert, die Inhalte dieses Typs verarbeiten " "können." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Geräte" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Abbrechen" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Übertragung läuft" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "Peer Picker Beispiel" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Quellen" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Quelle auswählen" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Ergebnisse" content-hub-1.1.1/po/dv.po000066400000000000000000000057421456121157600153470ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dhivehi \n" "Language: dv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/el.po000066400000000000000000000072261456121157600153350ustar00rootroot00000000000000# Greek translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-11-18 23:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Η λήψη ολοκληρώθηκε" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Άνοιγμα" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Απόρριψη" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Η λήψη απέτυχε" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Επιλογή από" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Άνοιγμα με" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Διαμοιρασμός στο" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Εφαρμογές" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Λυπούμαστε, αυτή τη στιγμή δεν υπάρχουν εγκαταστημένες εφαρμογές που να " "μπορούν να παρέχουν αυτόν τον τύπο περιεχομένου." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Λυπούμαστε, αυτή τη στιγμή δεν υπάρχουν εγκαταστημένες εφαρμογές που να " "μπορούν να διαχειριστούν αυτόν τον τύπο περιεχομένου." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Συσκευές" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Ακύρωση" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Μεταφορά σε εξέλιξη" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/en_AU.po000066400000000000000000000064331456121157600157230ustar00rootroot00000000000000# English (Australia) translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-12 09:39+0000\n" "Last-Translator: Jared Norris \n" "Language-Team: English (Australia) \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Download Complete" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Open" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Dismiss" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Download Failed" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Choose from" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Open with" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Share to" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Apps" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Devices" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transfer in progress" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/en_CA.po000066400000000000000000000057651456121157600157100ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-06-28 04:34+0000\n" "Last-Translator: \"Rudra Harsh V.Singh\" \n" "Language-Team: English (Canada) \n" "Language: en_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.18.1\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/en_GB.po000066400000000000000000000064271456121157600157110ustar00rootroot00000000000000# English (United Kingdom) translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-09 12:28+0000\n" "Last-Translator: Andi Chandler \n" "Language-Team: English (United Kingdom) \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Download Complete" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Open" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Dismiss" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Download Failed" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Choose from" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Open with" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Share to" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Apps" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Devices" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transfer in progress" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/en_US.po000066400000000000000000000054721456121157600157470ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/eo.po000066400000000000000000000063161456121157600153370ustar00rootroot00000000000000# Esperanto translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2024-01-04 16:35+0000\n" "Last-Translator: phlostically \n" "Language-Team: Esperanto \n" "Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.4-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Elŝuto finiĝis" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Malfermi" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Rezigni" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Elŝuto malsukcesis" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Elekti el" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Malfermi per" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Konigi al" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplikaĵoj" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Aparatoj" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Nuligi" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transdonante" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Fontoj" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Elektu fonton" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Rezultoj" content-hub-1.1.1/po/es.po000066400000000000000000000067351456121157600153500ustar00rootroot00000000000000# Spanish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-04-06 21:55+0000\n" "Last-Translator: gallegonovato \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.17-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Descarga completada" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Abrir" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Descartar" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Error en la descarga" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Seleccionar desde" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Abrir con" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Compartir con" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplicaciones" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Lo sentimos, en este momento no hay aplicaciones instaladas que brinden este " "tipo de contenido." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Lo sentimos, en este momento no hay aplicaciones instaladas que puedan " "manejar este tipo de contenido." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Dispositivos" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancelar" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferencia en curso" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "Ejemplo del selector de pares" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Fuentes" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Seleccione una fuente" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Resultados" content-hub-1.1.1/po/et.po000066400000000000000000000061041456121157600153370ustar00rootroot00000000000000# Estonian translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/eu.po000066400000000000000000000064131456121157600153430ustar00rootroot00000000000000# Basque translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-09 18:21+0000\n" "Last-Translator: Ibai Oihanguren Sala \n" "Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Deskarga burututa" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Ireki" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Baztertu" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Deskargak huts egin du" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Aukeratu hemendik" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Ireki honekin" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Partekatu hemen" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplikazioak" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sentitzen dugu, une honetan ez dago eduki mota hau horni dezakeen " "aplikaziorik." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sentitzen dugu, une honetan ez dago eduki mota hau maneia dezakeen " "aplikaziorik." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Gailuak" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Utzi" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferentzia lanean" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/fa.po000066400000000000000000000067551456121157600153310ustar00rootroot00000000000000# Persian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-12 13:41+0000\n" "Last-Translator: Danial Behzadi \n" "Language-Team: Persian \n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "بارگیری پایان یافت" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "گشودن" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "رد کردن" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "بارگیری شکست خورد" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "گزیدن از" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "گشودن با" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "اشتراک گذاری به" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "اپ‌ها" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "متأسّفیم، در حال حاضر هیچ اپی که بتواند این نوع محتوا را فراهم کند نصب نشده " "است." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "متأسّفیم، در حال حاضر هیچ اپی که بتواند این نوع محتوا را مدیریت کند نصب نشده " "است." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "‌دستگاه‌ها" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "لغو" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "جابه‌جایی در حال انجام" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/fi.po000066400000000000000000000065221456121157600153310ustar00rootroot00000000000000# Finnish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-09 15:49+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Lataus valmistui" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Avaa" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Piilota" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Lataus epäonnistui" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Valitse" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Avaa sovelluksella" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Jaa" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Sovellukset" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Valitettavasti tällä hetkellä ei ole asennettuna yhtäkään sovellusta, joka " "pystyy tarjota tämän tyyppistä sisältöä." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Valitettavasti tällä hetkellä ei ole asennettuna yhtäkään sovellusta, joka " "pystyy käsitellä tämän tyyppistä sisältöä." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Laitteet" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Peru" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Siirto meneillään" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/fil.po000066400000000000000000000054741456121157600155120ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: fil\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/fo.po000066400000000000000000000060221456121157600153320ustar00rootroot00000000000000# Faroese translation for content-hub # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2016. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2016-04-19 11:04+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Faroese \n" "Language: fo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Opna" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Vís burtur" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Vel frá" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Opna við" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Luta til" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Forritanir" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Tóleindir" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Angra" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/fr.po000066400000000000000000000067451456121157600153510ustar00rootroot00000000000000# French translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2024-01-26 02:44+0000\n" "Last-Translator: Vlad Nirky \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 5.4-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Téléchargement terminé" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Ouvrir" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Ignorer" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Le téléchargement a échoué" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Choisir parmi" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Ouvrir avec" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Partager avec" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Applications" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Désolé, il n'y a actuellement aucune application installée qui peut fournir " "ce type de contenu." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Désolé, il n'y a actuellement aucune application installée qui peut traiter " "ce type de contenu." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Périphériques" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Annuler" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transfert en cours" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "Exemple de sélecteur de pairs" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Sources" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Sélectionner une source" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Résultats" content-hub-1.1.1/po/fr_CA.po000066400000000000000000000064721456121157600157110ustar00rootroot00000000000000# French (Canada) translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-11-11 13:59+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (Canada) \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Téléchargement terminé" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Ouvrir" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Rejeter" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Échec lors du téléchargement" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Choisir parmi" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Ouvrir avec" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Partager vers" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Applis" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Désolé, il n'y a présentement aucune appli installée pouvant fournir ce type " "de contenu." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Désolé, il n'y a présentement aucune appli installée pouvant traiter ce type " "de contenu." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Dispositifs" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Annuler" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transfert en cours" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/fr_CH.po000066400000000000000000000057641456121157600157230ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: French (Switzerland) \n" "Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/frp.po000066400000000000000000000057551456121157600155310ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Franco-Provençal \n" "Language: frp\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/fur.po000066400000000000000000000057451456121157600155350ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Friulian \n" "Language: fur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/fy.po000066400000000000000000000054731456121157600153550ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: fy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ga.po000066400000000000000000000065151456121157600153240ustar00rootroot00000000000000# Irish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-12-16 16:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Irish \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Íosluchtú Críochnaithe" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Oscail" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Ruaig" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Theip ar an Íosluchtú" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Roghnaigh idir" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Oscail le" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Roinn go" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Feidhmchláir" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Tá brón orm, níl aon feidhmchlár suiteáilte faoi láthar ar féidir leis an " "cineál ábhar seo a chur ar fáil" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Tá brón orm, níl aon feidhmchlár suiteáilte faoi láthar ar féidir leis an " "cineál ábhar seo a chur ar fáil" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Gléasanna" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cealaigh" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Seachadadh i bhfeidhm" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/gd.po000066400000000000000000000065211456121157600153240ustar00rootroot00000000000000# Gaelic; Scottish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # GunChleoc , 2014. msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-09 18:09+0000\n" "Last-Translator: GunChleoc \n" "Language-Team: Fòram na Gàidhlig\n" "Language: gd\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Tha an luchdadh a-nuas coileanta" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Fosgail" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Cuir air falbh" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Dh'fhàillig an luchdadh a-nuas" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Tagh o" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Fosgail le" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Co-roinn air" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplacaidean" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Duilich ach chan eil aplacaid stàlaichte agad gus an t-susbaint seo a thoirt " "dhut." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Duilich ach chan eil aplacaid stàlaichte agad gus an t-susbaint seo a " "làimhseachadh." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Uidheaman" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Sguir dheth" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "'Ga thar-chur" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/gl.po000066400000000000000000000064341456121157600153370ustar00rootroot00000000000000# Galician translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-09-23 20:22+0000\n" "Last-Translator: Marcos Lans \n" "Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Completouse a descarga" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Abrir" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Rexeitar" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Produciuse un fallo na descarga" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Escoller de" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Abrir con" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Compartir con" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplicativos" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sentímolo, non hai ningún aplicativo instalado que proporcione este tipo de " "contido." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sentímolo, non hai ningún aplicativo instalado que manexe este tipo de " "contido." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Dispositivos" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancelar" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferencia en proceso" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/gu.po000066400000000000000000000054671456121157600153550ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: gu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/gv.po000066400000000000000000000054731456121157600153530ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: gv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/he.po000066400000000000000000000065651456121157600153360ustar00rootroot00000000000000# Hebrew translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-17 06:39+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "הורדה הושלמה" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "פתיחה" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "התעלמות" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "ההורדה נכשלה" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "לבחור מתוך" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "פתיחה באמצעות" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "שיתוף אל" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "יישומים" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "נכון לעכשיו אין אף יישום מותקן שמספק סוג כזה של תוכן, עמך הסליחה." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "נכון לעכשיו אין אף יישום מותקן שמטפל בסוג כזה של תוכן, עמך הסליחה." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "התקנים" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "ביטול" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "מתבצעת העברה" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/hi.po000066400000000000000000000057661456121157600153440ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-06-28 04:34+0000\n" "Last-Translator: \"Rudra Harsh V.Singh\" \n" "Language-Team: Hindi \n" "Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.18.1\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "रद्द करें" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/hr.po000066400000000000000000000064231456121157600153440ustar00rootroot00000000000000# Croatian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-12-07 23:29+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Preuzimanje završeno" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Otvori" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Odbaci" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Preuzimanje neuspjelo" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Odaberi s(a)" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Otvori s(a)" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Podijeli s(a)" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplikacije" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Isprika, trenutno nema instaliranih aplikacija koje pružaju ovakvu vrstu " "sadržaja." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Isprika, trenutno nema instaliranih aplikacija koje mogu rukovati ovakvom " "vrstom sadržaja." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Uređaji" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Odustani" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Prijenos u tijeku" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ht.po000066400000000000000000000054731456121157600153520ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ht\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/hu.po000066400000000000000000000065421456121157600153510ustar00rootroot00000000000000# Hungarian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-09 06:08+0000\n" "Last-Translator: Richard Somlói \n" "Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Letöltés befejezve" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Megnyitás" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Bezárás" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Sikertelen letöltés" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Kiválasztás" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Megnyitás" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Megosztás" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Alkalmazások" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sajnáljuk, de jelenleg nincs egyetlen olyan alkalmazás se telepítve, ami a " "megadott tartalomtípust biztosítaná." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sajnáljuk, de jelenleg nincs egyetlen olyan alkalmazás se telepítve, ami a " "megadott tartalomtípust kezelné." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Eszközök" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Mégse" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Átvitel folyamatban" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/hy.po000066400000000000000000000054671456121157600153620ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: hy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ia.po000066400000000000000000000064731456121157600153310ustar00rootroot00000000000000# Interlingua translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-05-17 11:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Interlingua \n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Discarga complete" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Aperir" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Dimitter" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Discarga fallite" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Seliger ex" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Aperir con" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Compartir con" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Applicationes" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Displacente, il non ha actualmente alcun applicationes installate que pote " "suppler iste typo de contento." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Displacente, il non ha actualmente alcun applicationes installate que pote " "tractar iste typo de contento." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Dispositivos" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Deler" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferentia in curso" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/id.po000066400000000000000000000064151456121157600153300ustar00rootroot00000000000000# Indonesian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-12 02:57+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Pengunduhan Selesai" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Buka" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Singkirkan" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Pengunduhan Gagal" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Pilih dari" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Buka dengan" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Bagikan ke" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplikasi" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Maaf, saat ini tak ada aplikasi terpasang yang dapat menyediakan isi dengan " "tipe ini." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Maaf, saat ini tak ada aplikasi terpasang yang dapat menangani isi dengan " "tipe ini." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Perangkat" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Batal" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transfer tengah berlangsung" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/io.po000066400000000000000000000057361456121157600153500ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Ido \n" "Language: io\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/is.po000066400000000000000000000063011456121157600153410ustar00rootroot00000000000000# Icelandic translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n % 10 != 1 || n % 100 == 11;\n" "X-Generator: Weblate 4.15.1-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Niðurhali lokið" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Opna" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Hafna" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Niðurhal mistókst" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Velja úr" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Opna með" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Deila í" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Forrit" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Tæki" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Flutningur í gangi" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/it.po000066400000000000000000000066221456121157600153500ustar00rootroot00000000000000# Italian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-04-02 03:45+0000\n" "Last-Translator: Sylke Vicious \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.17-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Scaricamento completato" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Apri" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Chiudi" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Scaricamento non riuscito" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Scegli da" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Apri con" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Condividi con" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "App" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Non ci sono app installate che possano fornire questo tipo di contenuto." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Non ci sono app installate che possano gestire questo tipo di contenuto." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Dispositivi" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Annulla" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Trasferimento in corso" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "Esempio di Selezionatore di Peer" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Sorgenti" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Seleziona sorgente" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Risultati" content-hub-1.1.1/po/it_CARES.po000066400000000000000000000055011456121157600162600ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: it_CARES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ja.po000066400000000000000000000066251456121157600153310ustar00rootroot00000000000000# Japanese translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-10 12:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "ダウンロードが完了しました" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "開く" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "無視" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "ダウンロードに失敗しました" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "選択する" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "開く" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "共有する" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "アプリ" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "現在このタイプのコンテンツを提供できるインストール済みのアプリケーションはあ" "りません。" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "現在このタイプのコンテンツを取り扱うことができるインストール済みのアプリケー" "ションはありません。" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "デバイス" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "キャンセル" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "転送中" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/jbo.po000066400000000000000000000057361456121157600155130ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Lojban \n" "Language: jbo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ka.po000066400000000000000000000100721456121157600153210ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-04-11 20:27+0000\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" "Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.17-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "გადმოწერა დასრულებულია" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "გახსნა" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "გაუქმება" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "გადმოწერის შეცდომა" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "აირჩიეთ" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "გამხსნელი პროგრამა" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "გაზიარება" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "აპები" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "უკაცრავად, ამჟამად აპლიკაციები, რომლებსაც ამ ტიპის შემცველობის მოწოდება " "შეუძლიათ, დაყენებული არაა." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "უკაცრავად, ამჟამად აპლიკაციები, რომლებსაც ამ ტიპის შემცველობის დამუშავება " "შეუძლიათ, დაყენებული არაა." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "მოწყობილობა" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "გაუქმება" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "გადმოწერა მიმდინარეობს" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "პარტნიორის არჩევის მაგალითი" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "წყაროები" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "წყაროს მითითება" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "შედეგები" content-hub-1.1.1/po/kab.po000066400000000000000000000057421456121157600154730ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Kabyle \n" "Language: kab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/kk.po000066400000000000000000000060341456121157600153360ustar00rootroot00000000000000# Kazakh translation for content-hub # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2016. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2016-07-04 21:56+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kazakh \n" "Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Арқылы ашу" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Бағдарлама" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Құрылғылар" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Болдырмау" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/kl.po000066400000000000000000000054731456121157600153450ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: kl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/km.po000066400000000000000000000074561456121157600153510ustar00rootroot00000000000000# Khmer translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-08 07:40+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Khmer \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "ទំនាញយក បានជោគជ័យ" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "បើក" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "បណ្ដេញ​ចេញ" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "ទំនាញយក បានបរាជ័យ" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "ជ្រើស​ពី" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "បើកជាមួយ" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "ចែករំលែកទៅ" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "កម្មវិធី" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "សូមទោស មិនមានកម្មវិធីណាមួយដែលបានដំឡើងនៅពេលបច្ចុប្បន្ននេះដែលអាចផ្តល់នូវប្រភេទមាតិកានេះបាន ។" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "សូមទោស មិនមានកម្មវិធីណាមួយដែលបានដំឡើងនៅពេលបច្ចុប្បន្ននេះដែលអាចគ្រប់គ្រងប្រភេទមាតិកានេះបាន ។" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "ឧបករណ៍​" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "បោះបង់" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "កំពុងផ្ទេរប្រាក់" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/kmr.po000066400000000000000000000057571456121157600155350ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Kurdish (Northern) \n" "Language: kmr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/kn.po000066400000000000000000000062261456121157600153440ustar00rootroot00000000000000# Kannada translation for content-hub # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2016. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2016-03-26 10:15+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kannada \n" "Language: kn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "ಡೌನ್‌ಲೋಡ್ ಸಂಪೂರ್ಣಗೊಂಡಿದೆ" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "ಇದರೊಂದಿಗೆ ತೆರೆಯಿರಿ" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "ಆಪ್ಸ್‌‌" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "ಸಾಧನಗಳು" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "ರದ್ದುಗೊಳಿಸು" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ko.po000066400000000000000000000064621456121157600153470ustar00rootroot00000000000000# Korean translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-08 04:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "다운로드 완료" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "열기" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "없애기" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "다운로드 실패" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "다음에서 선택" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "다음으로 열기" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "다음으로 공유" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "프로그램" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "죄송합니다. 이 형식의 내용을 열 수 있는 프로그램을 설치하지 않았습니다." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "죄송합니다. 이 형식의 내용을 다룰 수 있는 프로그램을 설치하지 않았습니다." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "장치" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "취소" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "전송 중" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ku.po000066400000000000000000000054731456121157600153560ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ku\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/kw.po000066400000000000000000000054731456121157600153600ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: kw\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ky.po000066400000000000000000000054731456121157600153620ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ky\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/la.po000066400000000000000000000054731456121157600153330ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: la\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/lb.po000066400000000000000000000057501456121157600153320ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Luxembourgish \n" "Language: lb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ln.po000066400000000000000000000065061456121157600153460ustar00rootroot00000000000000# Lingala translation for content-hub # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2016. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Lingala \n" "Language: ln\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.15.1-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Tɛ́lɛ́sarzɛma esili" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Fúngola" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Bomba" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Tɛ́lɛ́sarzɛma ekatani" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Pɔnɔ na" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Fungola na" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Kabola na" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Bisáliseli" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "Bolimbisi,esáliselo moko tɛ̂ efanda oyo ewuti na eloko oyo." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "Bolimbisi,esáliselo moko tɛ̂ efanda oyo ekoki kofungola eloko oyo." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Bisalisi" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Botindi ezo koba" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/lo.po000066400000000000000000000057311456121157600153460ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Lao \n" "Language: lo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/lt.po000066400000000000000000000054671456121157600153610ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/lv.po000066400000000000000000000064151456121157600153550ustar00rootroot00000000000000# Latvian translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-02-28 19:17+0000\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Lejupielāde pabeigta" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Atvērt" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Atmest" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Neizdevās lejupielādēt" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Izvēlieties formu" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Atvērt ar" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Koplietot uz" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Lietotnes" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Diemžēl nav uzinstalētas tādas lietotnes, kas var sniegt šāda veida saturu." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Diemžēl nav uzinstalētas tādas lietotnes, kas var apstādāt šāda veida saturu." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Ierīces" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Atcelt" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Notiek pārsūtīšana" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/mg.po000066400000000000000000000057421456121157600153410ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Malagasy \n" "Language: mg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/mhr.po000066400000000000000000000054741456121157600155260ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: mhr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/mi.po000066400000000000000000000057371456121157600153470ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Maori \n" "Language: mi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/mk.po000066400000000000000000000057661456121157600153530ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Macedonian \n" "Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ml.po000066400000000000000000000057441456121157600153500ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Malayalam \n" "Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/mr.po000066400000000000000000000054731456121157600153550ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: mr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ms.po000066400000000000000000000063661456121157600153600ustar00rootroot00000000000000# Malay translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-10 02:34+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Malay \n" "Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Muat Turun Selesai" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Buka" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Singkir" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Muat Turun Gagal" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Pilih dari" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Buka dengan" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Kongsi dengan" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Apl" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Maaf, buat masa ini tiada aplikasi terpasang yang dapat sediakan jenis " "kandungan ini." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Maaf, buat masa ini tiada aplikasi terpasang yang dapat kendalikan jenis " "kandungan ini." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Peranti" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Batal" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Pemindahan berjalan" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/my.po000066400000000000000000000063041456121157600153560ustar00rootroot00000000000000# Burmese translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Burmese \n" "Language: my\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.15.1-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "ကြန္ယက္မွ ဆြဲယူျခင္း ၿပီးဆုံးပါၿပီ။" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Apps" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "ကိရိယာများ" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/nan.po000066400000000000000000000057561456121157600155170ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Min Nan) \n" "Language: nan\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/nb.po000066400000000000000000000066051456121157600153340ustar00rootroot00000000000000# Norwegian Bokmal translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-07 04:49+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Nedlasting fullført" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Åpne" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Avslå" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Nedlasting mislyktes" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Velg mellom" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Åpne med" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Del via" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Programmer" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "Du har ingen installerte programmer som tilbyr slikt innhold." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "Du har ingen installerte programmer som kan håndtere slikt innhold." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Enheter" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Avbryt" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Overføring pågår" #: examples/picker-qml/picker.qml:21 #, fuzzy msgid "Peer Picker Example" msgstr "Likemannsvelger-eksempel" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Kilder" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Velg kilde" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Resultater" content-hub-1.1.1/po/ne.po000066400000000000000000000077631456121157600153450ustar00rootroot00000000000000# Nepali translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Nepali \n" "Language: ne\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "डाउनलोड सम्पन्न" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "खुला" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "खारेज" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "डाउनलोड असफल" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "निम्नबाट छान्नुहोस्" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "निम्नबाट खोल्नुहोस्" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "निम्नसंग बाँड्नुहोस्" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "अनुप्रयोगहरू" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "माफ गर्नुहोस् , यस प्रकारको सामग्री प्रदान गर्न सक्ने कुनै पनि अनुप्रयोगहरू हाल स्थापित " "भएका छैनन् ।" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "माफ गर्नुहोस् , यस प्रकारको सामग्रीलाई ह्यान्डल गर्न सक्ने कुनै पनि अनुप्रयोगहरू हाल स्थापित " "भएका छैनन् ।" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "यन्त्रहरू" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "सार्ने कार्य हुँदैछ" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/nl.po000066400000000000000000000066161456121157600153500ustar00rootroot00000000000000# Dutch translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-02-22 14:41+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.16-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Downloaden is voltooid" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Openen" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Negeren" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Downloaden is mislukt" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Selecteer" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Openen met" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Delen op" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Apps" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sorry, er is momenteel geen app geïnstalleerd die dit type bestand kan " "aanmaken." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sorry, er is momenteel geen app geïnstalleerd die met dit type bestand kan " "omgaan." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Apparaten" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Annuleren" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Overdracht is bezig" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "Keuzevoorbeeld" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Bronnen" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Kies een bron" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Resultaten" content-hub-1.1.1/po/nn.po000066400000000000000000000054731456121157600153520ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ny.po000066400000000000000000000057411456121157600153630ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Nyanja \n" "Language: ny\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/oc.po000066400000000000000000000065301456121157600153330ustar00rootroot00000000000000# Occitan (post 1500) translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-11-11 12:19+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Occitan (post 1500) \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Telecargament acabat" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Dobrir" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Ignorar" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Telecargament fracassat" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Causir demest" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Dobrir amb" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Partejar amb" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplicacions" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "O planhèm, actualament i a pas cap d'aplicacion d'installada que pòsca " "provesir aqueste tipe de contengut." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "O planhèm, actualament i a pas cap d'aplicacion d'installada que pòsca " "tractar aqueste tipe de contengut." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Periferics" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Abandonar" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferiment en cors" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/om.po000066400000000000000000000060761456121157600153520ustar00rootroot00000000000000# Oromo translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Oromo \n" "Language: om\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/or.po000066400000000000000000000054731456121157600153570ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: or\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/os.po000066400000000000000000000054731456121157600153600ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: os\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/pa.po000066400000000000000000000072551456121157600153370ustar00rootroot00000000000000# Punjabi translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-02-15 05:46+0000\n" "Last-Translator: Gursharnjit_Singh \n" "Language-Team: Punjabi \n" "Language: pa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "ਡਾਊਨਲੋਡ ਮੁਕੰਮਲ" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "ਖੋਲ੍ਹੋ" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "ਅਣਡਿੱਠਾ" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "ਡਾਊਨਲੋਡ ਫੇਲ੍ਹ ਹੋਇਆ" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "ਇਸ ਤੋਂ ਚੁਣੋ" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "ਇਸ ਨਾਲ ਖੋਲ੍ਹੋ" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "ਸਾਂਝਾ ਕਰੋ" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "ਐਪਸ" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "ਮੁਆਫ਼ੀ, ਇੱਥੇ ਮੌਜੂਦਾ ਤੌਰ ਤੇ ਕੋਈ ਐਪਸ ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ ਜੋ ਇਸ ਕਿਸਮ ਦੀ ਸਮੱਗਰੀ ਮੁਹੱਈਆ ਕਰਵਾਉਣ।" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "ਮੁਆਫ਼ੀ, ਇੱਥੇ ਮੌਜੂਦਾ ਤੌਰ ਤੇ ਕੋਈ ਐਪਸ ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ ਜੋ ਇਸ ਕਿਸਮ ਦੀ ਸਮੱਗਰੀ ਸੰਭਾਲਣ।" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "ਯੰਤਰ" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "ਟਰਾਂਸਫਰ ਜਾਰੀ ਹੈ" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/pam.po000066400000000000000000000057451456121157600155160ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Pampanga \n" "Language: pam\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/pl.po000066400000000000000000000067571456121157600153600ustar00rootroot00000000000000# Polish translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-31 14:42+0000\n" "Last-Translator: gnu-ewm \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.16-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Zakończono pobieranie" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Otwórz" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Odrzuć" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Pobieranie nieudane" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Wybierz z" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Otwórz za pomocą" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Udostępnij dla" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Programy" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Niestety nie zainstalowano żadnego programu, który oferowałby treści tego " "typu." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Niestety nie zainstalowano żadnego programu, który obsługiwałby treści tego " "typu." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Urządzenia" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Anuluj" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Przesyłanie w toku" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "Przykład selektora peer-to-peer" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Źródła" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Wybierz źródło" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Wyniki" content-hub-1.1.1/po/ps.po000066400000000000000000000057411456121157600153570ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Pashto \n" "Language: ps\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/pt.po000066400000000000000000000067131456121157600153600ustar00rootroot00000000000000# Portuguese translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-31 14:42+0000\n" "Last-Translator: Ivo Xavier \n" "Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.16-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Transferência concluída" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Abrir" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Descartar" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "A transferência falhou" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Escolha de" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Abrir com" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Partilhar para" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplicações" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Atualmente não estão instaladas apps que consigam fornecer este tipo de " "conteúdo." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Atualmente não estão instaladas apps que consigam lidar com este tipo de " "conteúdo." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Dispositivos" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancelar" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferência em progresso" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "Exemplo de Selecionador de Pares" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Fontes" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Selecionar fonte" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Resultados" content-hub-1.1.1/po/pt_BR.po000066400000000000000000000065661456121157600157510ustar00rootroot00000000000000# Brazilian Portuguese translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-13 14:56+0000\n" "Last-Translator: Tiago Hillebrandt \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Download concluído" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Abrir" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Descartar" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Falha ao baixar" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Escolher de" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Abrir com" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Compartilhar para" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Apps" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Desculpe, não existem atualmente quaisquer aplicativos instalados que possam " "fornecer este tipo de conteúdo." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Desculpe, não existem atualmente quaisquer aplicativos instalados que podem " "lidar com este tipo de conteúdo." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Dispositivos" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancelar" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferência em andamento" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ro.po000066400000000000000000000064461456121157600153600ustar00rootroot00000000000000# Romanian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-10 09:06+0000\n" "Last-Translator: Marian Vasile \n" "Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Descărcare completă" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Deschide" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Renunță" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Descărcarea a eșuat" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Alegeți din" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Deschide cu" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Partajați către" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplicații" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Încă nu există aplicații instalate care să asigure acest tip de conținut." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Încă nu există aplicații instalate care să gestioneze acest tip de conținut." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Dispozitive" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Anulează" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transfer în desfășurare" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ru.po000066400000000000000000000074301456121157600153600ustar00rootroot00000000000000# Russian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-15 16:49+0000\n" "Last-Translator: Sergii Horichenko \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.15.1-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Загрузка завершена" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Открыть" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Отменить" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Ошибка загрузки" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Выбрать из" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Открыть с помощью" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Поделиться с" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Приложения" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Извините, но приложения, предоставляющие данный тип содержимого, не " "установлены." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Извините, но приложения, работающие с данным типом содержимого, не " "установлены." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Устройства" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Отмена" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Выполняется передача" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "Пример выбора пар" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Источники" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Выберите источник" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Результаты" content-hub-1.1.1/po/sa.po000066400000000000000000000060141456121157600153320ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-07-07 11:52+0000\n" "Last-Translator: \"Rudra Harsh V.Singh\" \n" "Language-Team: Sanskrit \n" "Language: sa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Generator: Weblate 5.0-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "निरसयतु" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/sc.po000066400000000000000000000054671456121157600153470ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: sc\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/sco.po000066400000000000000000000057421456121157600155220ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Scots \n" "Language: sco\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/sd.po000066400000000000000000000057411456121157600153430ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Sindhi \n" "Language: sd\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/sdh.po000066400000000000000000000057571456121157600155220ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Kurdish (Southern) \n" "Language: sdh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/se.po000066400000000000000000000054731456121157600153460ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/shn.po000066400000000000000000000057411456121157600155250ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Shan \n" "Language: shn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/si.po000066400000000000000000000061501456121157600153430ustar00rootroot00000000000000# Sinhalese translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-02-21 05:49+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Sinhalese \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "බාගත කිරීම සම්පූර්ණයි" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "සමග විවෘත කරන්න" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "උපාංග" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "අවලංගු කරන්න" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/sk.po000066400000000000000000000064661456121157600153570ustar00rootroot00000000000000# Slovak translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2016-02-29 10:23+0000\n" "Last-Translator: P_E_T_O \n" "Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Sťahovanie dokončené" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Otvoriť" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Zrušiť" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Sťahovanie neúspešné" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Vybrať z" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Otvoriť s" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Zdieľať" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Aplikácie" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Prepáčte, aktuálne nie sú nainštalované žiadne aplikácie, ktoré dokážu " "poskytovať tento typ obsahu." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Prepáčte, aktuálne nie sú nainštalované žiadne aplikácie, ktoré dokážu " "spracovať tento typ obsahu." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Zariadenia" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Zrušiť" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Prenos prebieha" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/sl.po000066400000000000000000000063331456121157600153510ustar00rootroot00000000000000# Slovenian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-09 11:56+0000\n" "Last-Translator: Damir Jerovšek \n" "Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Prejem je končan" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Odpri" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Opusti" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Prejem ni uspel" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Izberi med" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Odpri z" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Souporaba z" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Programi" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Trenutno ni nameščenih namenskih programov za ponudbo te vrste vsebine." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Trenutno ni nameščenih namenskih programov za obravnavo te vrste vsebine." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Naprave" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Prekliči" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Poteka prenos" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/sq.po000066400000000000000000000064471456121157600153640ustar00rootroot00000000000000# Albanian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-08 12:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Sharkimi Përfundoi" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Hape" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Anulloje" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Shkarkimi Dështoi" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Zgjidh nga" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Hap me" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Shpërndaje tek" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Programet" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Më vjen keq, për momentin nuk ka asnjë program të instaluar që mund të japë " "këtë lloj përmbajtjeje." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Më vjan keq, nuk ka asnjë program të instaluar që mund ta hapë këtë lloj " "përmbajtjeje." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Pajisjet" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Anulo" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferimi në progres" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/sr.po000066400000000000000000000070221456121157600153530ustar00rootroot00000000000000# Serbian translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-09-06 09:38+0000\n" "Last-Translator: Bojan Bogdanović \n" "Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Преузимање је завршено" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Отвори" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Одбаци" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Преузимање није успело" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Изабери између" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Отвори са" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Поделите са" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Програми" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Жао нам је, тренутно нема инсталираних програма који могу пружити ову врсту " "садржаја." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Жао нам је, тренутно нема инсталираних програма који могу радити са овом " "врстом садржаја." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Уређаји" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Откажи" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Пренос је у току" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/st.po000066400000000000000000000054731456121157600153650ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: st\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/sv.po000066400000000000000000000066471456121157600153730ustar00rootroot00000000000000# Swedish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-12-06 00:24+0000\n" "Last-Translator: bittin1ddc447d824349b2 \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.3-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Hämtning färdig" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Öppna" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Avvisa" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Hämtning misslyckades" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Välj från" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Öppna med" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Dela på" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Program" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Det finns tyvärr inga installerade program som kan tillhandahålla den här " "sortens innehåll." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Det finns tyvärr inga installerade program som kan hantera den här sortens " "innehåll." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Enheter" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Avbryt" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Överföring pågår" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "Jämlike väljare exempel" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Källor" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Välj källa" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Resultat" content-hub-1.1.1/po/sw.po000066400000000000000000000054731456121157600153700ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: sw\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/szl.po000066400000000000000000000054741456121157600155500ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: szl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ta.po000066400000000000000000000057151456121157600153420ustar00rootroot00000000000000# Tamil translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-06-30 10:48+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ta_LK.po000066400000000000000000000054761456121157600157340ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ta_LK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/te.po000066400000000000000000000057411456121157600153450ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Telugu \n" "Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/tet.po000066400000000000000000000057421456121157600155320ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Tetum \n" "Language: tet\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/tg.po000066400000000000000000000057331456121157600153500ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Tajik \n" "Language: tg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/th.po000066400000000000000000000057131456121157600153470ustar00rootroot00000000000000# Thai translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-08-15 10:48+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Thai \n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ti.po000066400000000000000000000054731456121157600153530ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ti\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/tk.po000066400000000000000000000057421456121157600153540ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 17:00+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Turkmen \n" "Language: tk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 #, fuzzy msgid "Cancel" msgstr "Cancel" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/tr.po000066400000000000000000000063721456121157600153630ustar00rootroot00000000000000# Turkish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-10 19:58+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "İndirme Tamamlandı" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Aç" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Reddet" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "İndirme Başarısız" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Buradan seç" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Birlikte aç" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Burada paylaş" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Uygulamalar" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "Üzgünüz, bu tip bir içeriği sağlayacak yüklenmiş bir uygulama yok." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Üzgünüz, şu anda bu içeriği oynatabilecek herhangi bir uygulama yüklü değil." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Aygıtlar" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "İptal" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Aktarım devam ediyor" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/tt.po000066400000000000000000000054731456121157600153660ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: tt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/ug.po000066400000000000000000000070761456121157600153530ustar00rootroot00000000000000# Uyghur translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-10-14 02:30+0000\n" "Last-Translator: Gheyret T.Kenji \n" "Language-Team: Uyghur \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "چۈشۈرۈش تاماملاندى" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "ئاچ" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "تاشلىۋەت" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "چۈشۈرۈش مەغلۇپ بولدى" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "بۇ يەردىن تاللاش" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "ئاچىدىغان پروگرامما" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "بۇنىڭ بىلەن ھەمبەھىرلەش" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "ئەپلەر" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "كەچۈرۈڭ، ھازىر بۇ خىلدىكى مەزمۇننى تەمىنلەيدىغان ھېچقانداق ئەپ تېخى " "ئورنىتىلماپتۇ." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "كەچۈرۈڭ، ھازىر بۇ خىلدىكى مەزمۇننى بىر تەرەپ قىلالايدىغان ھېچقانداق ئەپ تېخى " "ئورنىتىلماپتۇ." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "ئۈسكۈنىلەر" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "ئەمەلدىن قالدۇر" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "يوللاۋاتىدۇ" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/uk.po000066400000000000000000000074551456121157600153600ustar00rootroot00000000000000# Ukrainian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-02-22 14:41+0000\n" "Last-Translator: Sergii Horichenko \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.16-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "Отримання завершено" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "Відкрити" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "Відкинути" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "Помилка під час завантаження" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "Оберіть" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "Відкрити за допомогою" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "Поділитися з" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "Програми" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Вибачте, наразі жодна зі встановлених програм не може надати такий тип даних." #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Вибачте, наразі жодна зі встановлених програм не може обробити такий тип " "даних." #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "Пристрої" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Скасувати" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Передавання даних" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "Приклад вибору аналогів" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "Джерела" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "Вибрати джерело" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "Результати" content-hub-1.1.1/po/ur.po000066400000000000000000000057531456121157600153660ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-01-04 00:38+0000\n" "Last-Translator: Muhammad \n" "Language-Team: Urdu \n" "Language: ur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.15.1-dev\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "منسوخ کریں" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/uz.po000066400000000000000000000054731456121157600153750ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/vec.po000066400000000000000000000054741456121157600155150ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/vi.po000066400000000000000000000057271456121157600153570ustar00rootroot00000000000000# Vietnamese translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-01-26 03:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese \n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/wae.po000066400000000000000000000054741456121157600155140ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: wae\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/wo.po000066400000000000000000000054731456121157600153640ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: wo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/xh.po000066400000000000000000000054731456121157600153560ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: xh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/zh_CN.po000066400000000000000000000065441456121157600157400ustar00rootroot00000000000000# Chinese (Simplified) translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2023-04-22 21:43+0000\n" "Last-Translator: Lu Xu \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.18-dev\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "下载完成" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "打开" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "忽略" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "下载失败" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "选择自" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "打开以" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "分享到" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "应用" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "对不起,当前还没有安装任何可以提供此类内容的应用程序。" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "对不起,当前还没有安装任何可以处理此类内容的应用程序。" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "设备" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "取消" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "正在传输" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "来源" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "选择来源" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "结果" content-hub-1.1.1/po/zh_HK.po000066400000000000000000000063261456121157600157400ustar00rootroot00000000000000# Chinese (Hong Kong) translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2015-06-03 18:48+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Hong Kong) \n" "Language: zh_HK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "下載完成" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "開啟" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "放棄" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "下載失敗" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "選取自:" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "以此開啟:" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "分享至" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "應用程式" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "抱歉,目前未安裝能提供此類內容的應用程式。" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "抱歉,目前未安裝能處理此類內容的應用程式。" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "裝置" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "取消" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "傳送中" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/zh_LATN@pinyin.po000066400000000000000000000055071456121157600175230ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: zh_LATN@pinyin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/po/zh_TW.po000066400000000000000000000063101456121157600157610ustar00rootroot00000000000000# Chinese (Traditional) translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-01-05 15:40+0000\n" "PO-Revision-Date: 2014-11-19 14:48+0000\n" "Last-Translator: Walter Cheuk \n" "Language-Team: Chinese (Traditional) \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-01 04:56+0000\n" "X-Generator: Launchpad (build 18282)\n" #: src/com/lomiri/content/detail/service.cpp:238 msgid "Download Complete" msgstr "下載完畢" #: src/com/lomiri/content/detail/service.cpp:256 msgid "Open" msgstr "開啟" #: src/com/lomiri/content/detail/service.cpp:263 msgid "Dismiss" msgstr "解除" #: src/com/lomiri/content/detail/service.cpp:281 msgid "Download Failed" msgstr "下載失敗" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Choose from" msgstr "選取自:" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Open with" msgstr "以此開啟:" #: import/Lomiri/Content/ContentPeerPicker10.qml:50 #: import/Lomiri/Content/ContentPeerPicker13.qml:51 #: import/Lomiri/Content/ContentPeerPicker11.qml:51 msgid "Share to" msgstr "分享給:" #: import/Lomiri/Content/ContentPeerPicker10.qml:162 #: import/Lomiri/Content/ContentPeerPicker13.qml:170 #: import/Lomiri/Content/ContentPeerPicker11.qml:180 msgid "Apps" msgstr "程式" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "抱歉,目前未有能提供此類內容的程式。" #: import/Lomiri/Content/ContentPeerPicker10.qml:198 #: import/Lomiri/Content/ContentPeerPicker13.qml:207 #: import/Lomiri/Content/ContentPeerPicker11.qml:216 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "抱歉,目前未有能處理此類內容的程式。" #: import/Lomiri/Content/ContentPeerPicker10.qml:214 #: import/Lomiri/Content/ContentPeerPicker13.qml:223 #: import/Lomiri/Content/ContentPeerPicker11.qml:232 msgid "Devices" msgstr "裝置" #: import/Lomiri/Content/ContentPeerPicker10.qml:251 #: import/Lomiri/Content/ContentPeerPicker11.qml:59 #: import/Lomiri/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "取消" #: import/Lomiri/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "傳送中" #: examples/picker-qml/picker.qml:21 msgid "Peer Picker Example" msgstr "" #: examples/picker-qml/picker.qml:37 msgid "Sources" msgstr "" #: examples/picker-qml/picker.qml:39 msgid "Select source" msgstr "" #: examples/picker-qml/picker.qml:52 msgid "Results" msgstr "" content-hub-1.1.1/src/000077500000000000000000000000001456121157600145375ustar00rootroot00000000000000content-hub-1.1.1/src/CMakeLists.txt000066400000000000000000000012561456121157600173030ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss add_subdirectory(com)content-hub-1.1.1/src/com/000077500000000000000000000000001456121157600153155ustar00rootroot00000000000000content-hub-1.1.1/src/com/CMakeLists.txt000066400000000000000000000012621456121157600200560ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss add_subdirectory(lomiri) content-hub-1.1.1/src/com/lomiri/000077500000000000000000000000001456121157600166105ustar00rootroot00000000000000content-hub-1.1.1/src/com/lomiri/CMakeLists.txt000066400000000000000000000012621456121157600213510ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss add_subdirectory(content)content-hub-1.1.1/src/com/lomiri/applicationmanager/000077500000000000000000000000001456121157600224465ustar00rootroot00000000000000content-hub-1.1.1/src/com/lomiri/applicationmanager/application_manager.h000066400000000000000000000036361456121157600266240ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_APPLICATION_MANAGER_H_ #define COM_LOMIRI_APPLICATION_MANAGER_H_ #include #include namespace com { namespace lomiri { namespace ApplicationManager { class ApplicationManager { public: ApplicationManager() = default; ApplicationManager(const ApplicationManager&) = default; virtual ~ApplicationManager() = default; ApplicationManager& operator=(const ApplicationManager&) = default; /*! * \brief invoke_application starts an application, and brings it to foreground * \param app_id ID for the application (for example "gallery-app" - used for the desktop) */ virtual bool invoke_application(const std::string &app_id, gchar ** uris) = 0; /*! * \brief stop_application stops an application started by lomiri * \param app_id ID for the application (for example "gallery-app" - used for the desktop) */ virtual bool stop_application(const std::string &app_id) = 0; /*! * \brief is_application_started returns true, if the application s already started by lomiri * \param app_id ID for the application (for example "gallery-app" - used for the desktop) */ virtual bool is_application_started(const std::string &app_id) = 0; }; } } } #endif // COM_LOMIRI_APPLICATION_MANAGER_H_ content-hub-1.1.1/src/com/lomiri/content/000077500000000000000000000000001456121157600202625ustar00rootroot00000000000000content-hub-1.1.1/src/com/lomiri/content/CMakeLists.txt000066400000000000000000000151531456121157600230270ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss add_subdirectory(service) if(LIBERTINE_FOUND) add_definitions(-DWITH_LIBERTINE) endif() include_directories( ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/include ${LOMIRI_API_INCLUDE_DIRS} ${LOMIRI_LAUNCH_INCLUDE_DIRS} ${LIBERTINE_INCLUDE_DIRS} ${LOMIRI_DOWNLOAD_MANAGER_INCLUDE_DIRS} ${NOTIFY_INCLUDE_DIRS} ${APPARMOR_INCLUDE_DIRS} ${GLIB_INCLUDE_DIRS} ${GIO_INCLUDE_DIRS} ) qt5_add_dbus_interface( CONTENT_SERVICE_STUB ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.lomiri.content.Service.xml ContentServiceInterface) qt5_add_dbus_adaptor( CONTENT_SERVICE_SKELETON ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.lomiri.content.Service.xml detail/service.h com::lomiri::content::detail::Service) qt5_add_dbus_interface( CONTENT_TRANSFER_STUB ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.lomiri.content.Transfer.xml ContentTransferInterface) qt5_add_dbus_adaptor( CONTENT_TRANSFER_SKELETON ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.lomiri.content.Transfer.xml detail/transfer.h com::lomiri::content::detail::Transfer) qt5_add_dbus_interface( CONTENT_PASTE_STUB ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.lomiri.content.Paste.xml ContentPasteInterface) qt5_add_dbus_adaptor( CONTENT_PASTE_SKELETON ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.lomiri.content.Paste.xml detail/paste.h com::lomiri::content::detail::Paste) qt5_add_dbus_interface( CONTENT_HANDLER_STUB ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.lomiri.content.Handler.xml ContentHandlerInterface) qt5_add_dbus_adaptor( CONTENT_HANDLER_SKELETON ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.lomiri.content.Handler.xml detail/handler.h com::lomiri::content::detail::Handler) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/lomiri/content/hub.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/lomiri/content/import_export_handler.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/lomiri/content/item.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/lomiri/content/paste.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/lomiri/content/peer.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/lomiri/content/store.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/lomiri/content/transfer.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/lomiri/content/type.h) add_library( content-hub SHARED hub.cpp import_export_handler.cpp item.cpp paste.cpp peer.cpp store.cpp transfer.cpp type.cpp utils.cpp debug.cpp detail/app_manager.cpp detail/paste.cpp detail/service.cpp detail/transfer.cpp detail/handler.cpp detail/i18n.cpp ${CONTENT_HUB_MOCS} ${CONTENT_SERVICE_STUB} ${CONTENT_SERVICE_SKELETON} ${CONTENT_PASTE_STUB} ${CONTENT_PASTE_SKELETON} ${CONTENT_TRANSFER_STUB} ${CONTENT_TRANSFER_SKELETON} ${CONTENT_HANDLER_STUB} ${CONTENT_HANDLER_SKELETON} ) set_target_properties( content-hub PROPERTIES VERSION ${CONTENT_HUB_VERSION_MAJOR}.${CONTENT_HUB_VERSION_MINOR}.${CONTENT_HUB_VERSION_PATCH} SOVERSION ${CONTENT_HUB_VERSION_MAJOR} AUTOMOC TRUE ) target_link_libraries(content-hub Qt5::Core Qt5::DBus Qt5::Gui) target_link_libraries(content-hub ${LOMIRI_LAUNCH_LDFLAGS} ${LIBERTINE_LDFLAGS} ${LOMIRI_API_LIBRARIES} ${LOMIRI_DOWNLOAD_MANAGER_LIBRARIES} ${NOTIFY_LIBRARIES} ${APPARMOR_LDFLAGS} ) find_program( GDBUS_CODEGEN gdbus-codegen ) set( DBUS_XML ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.lomiri.content.Handler.xml ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.lomiri.content.Paste.xml ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.lomiri.content.Service.xml ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.lomiri.content.Transfer.xml ) # Make it so that include works the same way as after installed. configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/glib/content-hub-glib-compat.h ${CMAKE_CURRENT_BINARY_DIR}/glib/content-hub-glib-compat.h ) set( DBUS_ANNOTATIONS --annotate com.lomiri.content.dbus.Paste.Charge\(\)[mimeData] org.gtk.GDBus.C.ForceGVariant true --annotate com.lomiri.content.dbus.Paste.MimeData\(\)[mimeData] org.gtk.GDBus.C.ForceGVariant true --annotate com.lomiri.content.dbus.Service.CreatePaste\(\)[mimeData] org.gtk.GDBus.C.ForceGVariant true --annotate com.lomiri.content.dbus.Service.GetLatestPasteData\(\)[mimeData] org.gtk.GDBus.C.ForceGVariant true --annotate com.lomiri.content.dbus.Service.GetPasteData\(\)[mimeData] org.gtk.GDBus.C.ForceGVariant true --annotate com.lomiri.content.dbus.Transfer.Store\(\) org.gtk.GDBus.C.Name "store_with_scope_and_type" --annotate com.lomiri.content.dbus.Transfer.SetStore\(\) org.gtk.GDBus.C.Name "set_store_by_scope_and_type" ) add_custom_command( OUTPUT glib/content-hub-glib.h glib/content-hub-glib.c COMMAND ${CMAKE_COMMAND} -E make_directory glib COMMAND ${GDBUS_CODEGEN} --interface-prefix com.lomiri.content.dbus --generate-c-code glib/content-hub-glib --c-namespace ContentHub ${DBUS_ANNOTATIONS} ${DBUS_XML} COMMAND printf "\\n#include \"content-hub-glib-compat.h\"\\n" >> glib/content-hub-glib.h DEPENDS ${DBUS_XML} VERBATIM ) add_library( content-hub-glib SHARED ${CMAKE_CURRENT_BINARY_DIR}/glib/content-hub-glib.h ${CMAKE_CURRENT_BINARY_DIR}/glib/content-hub-glib.c ${CMAKE_CURRENT_BINARY_DIR}/glib/content-hub-glib-compat.h ${CMAKE_CURRENT_SOURCE_DIR}/glib/content-hub-glib-compat.c ) target_link_libraries( content-hub-glib ${GIO_LIBRARIES} ) set_target_properties( content-hub-glib PROPERTIES VERSION ${CONTENT_HUB_VERSION_MAJOR}.${CONTENT_HUB_VERSION_MINOR}.${CONTENT_HUB_VERSION_PATCH} SOVERSION ${CONTENT_HUB_VERSION_MAJOR} ) install( FILES ${CMAKE_CURRENT_BINARY_DIR}/glib/content-hub-glib.h ${CMAKE_CURRENT_SOURCE_DIR}/glib/content-hub-glib-compat.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/com/lomiri/content/glib ) install( TARGETS content-hub content-hub-glib LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) content-hub-1.1.1/src/com/lomiri/content/common.h000066400000000000000000000021331456121157600217220ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef COMMON_H #define COMMON_H #include const QLatin1String HUB_SERVICE_NAME = QLatin1String("com.lomiri.content.dbus.Service"); const QLatin1String HUB_SERVICE_PATH = QLatin1String("/"); const QLatin1String HANDLER_NAME_TEMPLATE = QLatin1String("com.lomiri.content.handler.%1"); const QLatin1String HANDLER_BASE_PATH = QLatin1String("/com/lomiri/content/handler"); #endif // COMMON_H content-hub-1.1.1/src/com/lomiri/content/debug.cpp000066400000000000000000000014071456121157600220560ustar00rootroot00000000000000/* * Copyright © 2014 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "debug.h" int appLoggingLevel = 1; // criticals void setLoggingLevel(int level) { appLoggingLevel = level; } content-hub-1.1.1/src/com/lomiri/content/debug.h000066400000000000000000000025221456121157600215220ustar00rootroot00000000000000/* * Copyright © 2014 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef DEBUG_H #define DEBUG_H #include /* 0 - fatal, 1 - critical(default), 2 - info/debug */ extern int appLoggingLevel; static inline bool debugEnabled() { return appLoggingLevel >= 2; } static inline bool criticalsEnabled() { return appLoggingLevel >= 1; } static inline int loggingLevel() { return appLoggingLevel; } void setLoggingLevel(int level); #ifdef DEBUG_ENABLED #define TRACE() \ if (debugEnabled()) qDebug() << __FILE__ << __LINE__ << __func__ #define BLAME() \ if (criticalsEnabled()) qCritical() << __FILE__ << __LINE__ << __func__ #else #define TRACE() while (0) qDebug() #define BLAME() while (0) qDebug() #endif #endif // DEBUG_H content-hub-1.1.1/src/com/lomiri/content/detail/000077500000000000000000000000001456121157600215245ustar00rootroot00000000000000content-hub-1.1.1/src/com/lomiri/content/detail/app_manager.cpp000066400000000000000000000027471456121157600245140ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "app_manager.h" #include "debug.h" #include namespace cucd = com::lomiri::content::detail; /*! * \reimp */ bool cucd::AppManager::invoke_application(const std::string &app_id, gchar ** uris) { TRACE() << Q_FUNC_INFO << "APP_ID:" << app_id.c_str(); gboolean ok = lomiri_app_launch_start_application(app_id.c_str(), (const gchar * const *)uris); return static_cast(ok); } /*! * \reimp */ bool cucd::AppManager::stop_application(const std::string &app_id) { TRACE() << Q_FUNC_INFO << "APP_ID:" << app_id.c_str(); gboolean ok = lomiri_app_launch_stop_application(app_id.c_str()); return static_cast(ok); } /*! * \reimp */ bool cucd::AppManager::is_application_started(const std::string &app_id) { GPid pid = lomiri_app_launch_get_primary_pid(app_id.c_str()); return pid != 0; } content-hub-1.1.1/src/com/lomiri/content/detail/app_manager.h000066400000000000000000000025421456121157600241520ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_LOMIRI_APP_MANAGER_H_ #define COM_LOMIRI_APP_MANAGER_H_ #include namespace com { namespace lomiri { namespace content { namespace detail { class AppManager: public com::lomiri::ApplicationManager::ApplicationManager { public: AppManager() = default; AppManager(const AppManager&) = default; virtual ~AppManager() = default; AppManager& operator=(const AppManager&) = default; virtual bool invoke_application(const std::string &app_id, gchar ** uris); virtual bool stop_application(const std::string &app_id); virtual bool is_application_started(const std::string &app_id); }; } } } } #endif // COM_LOMIRI_APPLICATION_MANAGER_H_ content-hub-1.1.1/src/com/lomiri/content/detail/com.lomiri.content.Handler.xml000066400000000000000000000005761456121157600273530ustar00rootroot00000000000000 content-hub-1.1.1/src/com/lomiri/content/detail/com.lomiri.content.Paste.xml000066400000000000000000000011651456121157600270450ustar00rootroot00000000000000 content-hub-1.1.1/src/com/lomiri/content/detail/com.lomiri.content.Service.xml000066400000000000000000000060271456121157600273730ustar00rootroot00000000000000 content-hub-1.1.1/src/com/lomiri/content/detail/com.lomiri.content.Transfer.xml000066400000000000000000000043201456121157600275510ustar00rootroot00000000000000 content-hub-1.1.1/src/com/lomiri/content/detail/handler.cpp000066400000000000000000000050061456121157600236460ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "transfer_p.h" #include "handler.h" #include "utils.cpp" #include "debug.h" #include namespace cucd = com::lomiri::content::detail; namespace cuc = com::lomiri::content; struct cucd::Handler::Private : public QObject { Private(QDBusConnection connection, const QString& peer_id, QObject* parent) : QObject(parent), connection(connection), peer_id(peer_id) { TRACE() << Q_FUNC_INFO; } QDBusConnection connection; const QString peer_id; }; cucd::Handler::Handler(QDBusConnection connection, const QString& peer_id, cuc::ImportExportHandler* handler) : d(new Private{connection, peer_id, this}) { TRACE() << Q_FUNC_INFO; m_handler = handler; } cucd::Handler::~Handler() { delete m_handler; } void cucd::Handler::HandleImport(const QDBusObjectPath& transfer) { TRACE() << Q_FUNC_INFO << transfer.path(); cuc::Transfer* t = cuc::Transfer::Private::make_transfer(transfer, this); TRACE() << Q_FUNC_INFO << "State:" << t->state(); if (t->state() == cuc::Transfer::charged) m_handler->handle_import(t); } void cucd::Handler::HandleExport(const QDBusObjectPath& transfer) { TRACE() << Q_FUNC_INFO << transfer.path(); cuc::Transfer* t = cuc::Transfer::Private::make_transfer(transfer, this); TRACE() << Q_FUNC_INFO << "State:" << t->state(); if (t->state() == cuc::Transfer::initiated) { t->d->handled(); m_handler->handle_export(t); } } void cucd::Handler::HandleShare(const QDBusObjectPath& transfer) { TRACE() << Q_FUNC_INFO; cuc::Transfer* t = cuc::Transfer::Private::make_transfer(transfer, this); TRACE() << Q_FUNC_INFO << "State:" << t->state(); if (t->state() == cuc::Transfer::charged) { m_handler->handle_share(t); } } content-hub-1.1.1/src/com/lomiri/content/detail/handler.h000066400000000000000000000031201456121157600233060ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef HANDLER_H_ #define HANDLER_H_ #include #include #include #include namespace com { namespace lomiri { namespace content { namespace detail { class Handler : public QObject { Q_OBJECT public: Handler(QDBusConnection connection, const QString& peer_id, com::lomiri::content::ImportExportHandler *handler = nullptr); Handler(const Handler&) = delete; ~Handler(); Handler& operator=(const Handler&) = delete; public Q_SLOTS: void HandleImport(const QDBusObjectPath &transfer); void HandleExport(const QDBusObjectPath &transfer); void HandleShare(const QDBusObjectPath &transfer); private: struct Private; QScopedPointer d; com::lomiri::content::ImportExportHandler *m_handler; }; } } } } #endif // HANDLER_H_ content-hub-1.1.1/src/com/lomiri/content/detail/i18n.cpp000066400000000000000000000020761456121157600230140ustar00rootroot00000000000000/* * Copyright © 2014 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #define NO_TR_OVERRIDE #include "i18n.h" #include namespace com { namespace lomiri { namespace content { namespace detail { void initTr(const char *domain, const char *localeDir) { bindtextdomain(domain, localeDir); textdomain(domain); } QString __(const char *text, const char *domain) { return QString::fromUtf8(dgettext(domain, text)); } } } } } content-hub-1.1.1/src/com/lomiri/content/detail/i18n.h000066400000000000000000000017141456121157600224570ustar00rootroot00000000000000/* * Copyright © 2014 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef I18N_H #define I18N_H #include namespace com { namespace lomiri { namespace content { namespace detail { void initTr(const char *domain, const char *localeDir); QString __(const char *text, const char *domain = 0); } } } } #endif // I18N_H content-hub-1.1.1/src/com/lomiri/content/detail/paste.cpp000066400000000000000000000061311456121157600233450ustar00rootroot00000000000000/* * Copyright © 2016 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "debug.h" #include "paste.h" #include "utils.cpp" #include #include #include #include #include #include namespace cuc = com::lomiri::content; namespace cucd = com::lomiri::content::detail; struct cucd::Paste::Private { Private(const int id, const QString& source): state(cuc::Paste::created), id(id), source(source) { } cuc::Paste::State state; const int id; const QString source; QString destination; QByteArray mimeData; }; cucd::Paste::Paste(const int id, const QString& source, QObject* parent) : QObject(parent), d(new Private(id, source)) { TRACE() << __PRETTY_FUNCTION__; } cucd::Paste::~Paste() { TRACE() << __PRETTY_FUNCTION__; } /* unique id of the paste */ int cucd::Paste::Id() { TRACE() << __PRETTY_FUNCTION__; return d->id; } /* returns the add_id of the source app */ QString cucd::Paste::source() { TRACE() << __PRETTY_FUNCTION__; return d->source; } /* returns the add_id of the destination app */ QString cucd::Paste::destination() { TRACE() << __PRETTY_FUNCTION__; if (d->destination.isEmpty()) return d->source; return d->destination; } void cucd::Paste::setDestination(QString& dest) { TRACE() << __PRETTY_FUNCTION__; d->destination = dest; } /* returns the object path for the paste */ QString cucd::Paste::path() { TRACE() << Q_FUNC_INFO << "destination:" << destination(); static const QString path_pattern{"/pastes/%1/%2"}; QString path = path_pattern .arg(sanitize_id(destination())) .arg(d->id); return path; } int cucd::Paste::State() { TRACE() << __PRETTY_FUNCTION__; return d->state; } void cucd::Paste::Charge(const QByteArray& mimeData) { TRACE() << __PRETTY_FUNCTION__ << "STATE:" << d->state; if (d->state == cuc::Paste::charged) return; d->mimeData = mimeData; d->state = cuc::Paste::charged; Q_EMIT(StateChanged(d->state)); } QByteArray cucd::Paste::MimeData() { TRACE() << __PRETTY_FUNCTION__; if (d->state != cuc::Paste::collected) { d->state = cuc::Paste::collected; Q_EMIT(StateChanged(d->state)); } return d->mimeData; } content-hub-1.1.1/src/com/lomiri/content/detail/paste.h000066400000000000000000000032201456121157600230060ustar00rootroot00000000000000/* * Copyright © 2016 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef PASTE_H_ #define PASTE_H_ #include #include #include #include #include namespace com { namespace lomiri { namespace content { namespace detail { class Paste : public QObject, protected QDBusContext { Q_OBJECT Q_PROPERTY(int State READ State NOTIFY StateChanged) Q_PROPERTY(int id READ Id) Q_PROPERTY(QString source READ source) public: Paste(const int, const QString&, QObject* parent = nullptr); Paste(const Paste&) = delete; virtual ~Paste(); Paste& operator=(const Paste&) = delete; Q_SIGNALS: void StateChanged(int State); public Q_SLOTS: int State(); void Charge(const QByteArray& mimeData); QByteArray MimeData(); int Id(); QString source(); QString destination(); void setDestination(QString&); QString path(); private: struct Private; QScopedPointer d; }; } } } } #endif // PASTE_H_ content-hub-1.1.1/src/com/lomiri/content/detail/peer_registry.h000066400000000000000000000037331456121157600245660ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef PEER_REGISTRY_H_ #define PEER_REGISTRY_H_ #include #include #include namespace com { namespace lomiri { namespace content { namespace detail { class PeerRegistry { public: PeerRegistry() = default; PeerRegistry(const PeerRegistry& registry) = delete; virtual ~PeerRegistry() = default; PeerRegistry& operator=(const PeerRegistry&) = delete; virtual Peer default_source_for_type(Type) = 0; virtual void enumerate_known_peers(const std::function& for_each) = 0; virtual void enumerate_known_sources_for_type(Type, const std::function& for_each) = 0; virtual void enumerate_known_destinations_for_type(Type, const std::function& for_each) = 0; virtual void enumerate_known_shares_for_type(Type, const std::function& for_each) = 0; virtual bool install_default_source_for_type(Type, Peer) = 0; virtual bool install_source_for_type(Type, Peer) = 0; virtual bool install_destination_for_type(Type, Peer) = 0; virtual bool install_share_for_type(Type, Peer) = 0; virtual bool remove_peer(Peer peer) = 0; virtual bool peer_is_legacy(QString type) = 0; }; } } } } #endif // PEER_REGISTRY_H_ content-hub-1.1.1/src/com/lomiri/content/detail/service.cpp000066400000000000000000000664721456121157600237070ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ // NEEDED for libnotify include #define QT_NO_KEYWORDS #include "debug.h" #include "service.h" #include "peer_registry.h" #include "i18n.h" #include "paste.h" #include "pasteadaptor.h" #include "transfer.h" #include "transferadaptor.h" #include "utils.cpp" #include "ContentHandlerInterface.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace cua = com::lomiri::ApplicationManager; namespace cucd = com::lomiri::content::detail; namespace cuc = com::lomiri::content; struct cucd::Service::RegHandler { RegHandler(QString id, QString service, cuc::dbus::Handler* handler) : id(id), service(service), handler(handler) { } QString id; QString service; cuc::dbus::Handler* handler; }; struct cucd::Service::Private : public QObject { Private(QDBusConnection connection, const QSharedPointer& registry, QSharedPointer& application_manager, QObject* parent) : QObject(parent), connection(connection), registry(registry), app_manager(application_manager) { shellFocus = new QDBusInterface("com.lomiri.Shell.FocusInfo" /* service */, "/com/lomiri/Shell/FocusInfo" /* object path */, "com.lomiri.Shell.FocusInfo" /* interface */, QDBusConnection::sessionBus(), this); } QDBusConnection connection; QSharedPointer registry; QSet active_transfers; QList active_pastes; QStringList pasteFormats; QSet handlers; QSharedPointer app_manager; QDBusInterface *shellFocus; const int maxActivePastes = 5; }; cucd::Service::Service(QDBusConnection connection, const QSharedPointer& peer_registry, QSharedPointer& application_manager, QObject* parent) : QObject(parent), m_watcher(new QDBusServiceWatcher()), d(new Private{connection, peer_registry, application_manager, this}) { assert(!peer_registry.isNull()); qDBusRegisterMetaType(); qDBusRegisterMetaType(); m_watcher->setWatchMode(QDBusServiceWatcher::WatchForUnregistration); m_watcher->setConnection(d->connection); QObject::connect(m_watcher, SIGNAL(serviceUnregistered(const QString&)), this, SLOT(handler_unregistered(const QString&))); } cucd::Service::~Service() { TRACE() << Q_FUNC_INFO; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { TRACE() << Q_FUNC_INFO << "Destroying transfer:" << t->Id(); delete t; } } void cucd::Service::Quit() { QCoreApplication::instance()->quit(); } QVariantList cucd::Service::KnownSourcesForType(const QString& type_id) { QVariantList result; d->registry->enumerate_known_sources_for_type( Type(type_id), [&result](const Peer& peer) { result.append(QVariant::fromValue(peer)); }); return result; } QVariantList cucd::Service::KnownDestinationsForType(const QString& type_id) { QVariantList result; d->registry->enumerate_known_destinations_for_type( Type(type_id), [&result](const Peer& peer) { result.append(QVariant::fromValue(peer)); }); return result; } QVariantList cucd::Service::KnownSharesForType(const QString& type_id) { QVariantList result; d->registry->enumerate_known_shares_for_type( Type(type_id), [&result](const Peer& peer) { result.append(QVariant::fromValue(peer)); }); return result; } QDBusVariant cucd::Service::DefaultSourceForType(const QString& type_id) { cuc::Peer peer = d->registry->default_source_for_type(Type(type_id)); return QDBusVariant(QVariant::fromValue(peer)); } QDBusVariant cucd::Service::PeerForId(const QString& app_id) { cuc::Peer peer = cuc::Peer{app_id}; return QDBusVariant(QVariant::fromValue(peer)); } QDBusObjectPath cucd::Service::CreateImportFromPeer(const QString& peer_id, const QString& app_id, const QString& type_id) { TRACE() << Q_FUNC_INFO; QString dest_id = app_id; QString aa_profile_id = aa_profile(this->message().service(), "unconfined"); if (dest_id.isEmpty()) { TRACE() << Q_FUNC_INFO << "APP_ID isnt' set, attempting to get it from AppArmor"; dest_id = aa_profile_id; } else if (aa_profile_id != "unconfined" && dest_id != aa_profile_id) { TRACE() << Q_FUNC_INFO << "App with profile '" << aa_profile_id << "' said their ID is '" << dest_id << "'"; sendErrorReply(QDBusError::AccessDenied, QStringLiteral("Supplied app ID doesn't match AppArmor profile.")); return QDBusObjectPath(); } return CreateTransfer(dest_id, peer_id, cuc::Transfer::Import, type_id); } bool cucd::Service::should_cancel (int st) { TRACE() << Q_FUNC_INFO << "State:" << st; return (st != cuc::Transfer::finalized && st != cuc::Transfer::collected && st != cuc::Transfer::downloaded && st != cuc::Transfer::downloading && st != cuc::Transfer::aborted); } void action_dismiss(NotifyNotification *notification, char *action, gpointer data) { TRACE() << Q_FUNC_INFO; Q_UNUSED(notification); Q_UNUSED(action); cucd::Transfer* t = (cucd::Transfer*)data; t->SetShouldBeStartedByContentHub(false); t->Charge(QVariantList()); } void action_accept(NotifyNotification *notification, char *action, gpointer data) { TRACE() << Q_FUNC_INFO; Q_UNUSED(notification); Q_UNUSED(action); cucd::Transfer* t = (cucd::Transfer*)data; t->Charge(QVariantList()); } void cucd::Service::download_notify (cucd::Transfer* t) { TRACE() << Q_FUNC_INFO; notify_init(t->source().toStdString().c_str()); NotifyNotification* notification; notification = notify_notification_new (__("Download Complete").toStdString().c_str(), "", "save"); notify_notification_set_hint_string(notification, "x-lomiri-snap-decisions", "true"); notify_notification_set_hint_string(notification, "x-lomiri-non-shaped-icon", "true"); notify_notification_set_hint_string(notification, "x-canonical-private-button-tint", "true"); notify_notification_add_action (notification, "action_accept", __("Open").toStdString().c_str(), action_accept, t, NULL); notify_notification_add_action (notification, "action_dismiss", __("Dismiss").toStdString().c_str(), action_dismiss, t, NULL); GError *error = NULL; if (!notify_notification_show(notification, &error)) { qWarning() << "Failed to show snap decision:" << error->message; g_error_free (error); } } void cucd::Service::DownloadManagerError(QString errorMessage) { notify_init("Download Manager"); NotifyNotification* notification; notification = notify_notification_new (__("Download Failed").toStdString().c_str(), errorMessage.toStdString().c_str(), "save"); GError *error = NULL; if (!notify_notification_show(notification, &error)) { qWarning() << "Failed to show download manager error:" << error->message; g_error_free (error); } } QDBusObjectPath cucd::Service::CreateExportToPeer(const QString& peer_id, const QString& app_id, const QString& type_id) { TRACE() << Q_FUNC_INFO; QString src_id = app_id; QString aa_profile_id = aa_profile(this->message().service(), "unconfined"); if (src_id.isEmpty()) { TRACE() << Q_FUNC_INFO << "APP_ID isnt' set, attempting to get it from AppArmor"; src_id = aa_profile_id; } else if (aa_profile_id != "unconfined" && src_id != aa_profile_id) { TRACE() << Q_FUNC_INFO << "App with profile '" << aa_profile_id << "' said their ID is '" << src_id << "'"; sendErrorReply(QDBusError::AccessDenied, QStringLiteral("Supplied app ID doesn't match AppArmor profile.")); return QDBusObjectPath(); } return CreateTransfer(peer_id, src_id, cuc::Transfer::Export, type_id); } QDBusObjectPath cucd::Service::CreateShareToPeer(const QString& peer_id, const QString& app_id, const QString& type_id) { TRACE() << Q_FUNC_INFO; QString src_id = app_id; QString aa_profile_id = aa_profile(this->message().service(), "unconfined"); if (src_id.isEmpty()) { TRACE() << Q_FUNC_INFO << "APP_ID isnt' set, attempting to get it from AppArmor"; src_id = aa_profile_id; } else if (aa_profile_id != "unconfined" && src_id != aa_profile_id) { TRACE() << Q_FUNC_INFO << "App with profile '" << aa_profile_id << "' said their ID is '" << src_id << "'"; sendErrorReply(QDBusError::AccessDenied, QStringLiteral("Supplied app ID doesn't match AppArmor profile.")); return QDBusObjectPath(); } return CreateTransfer(peer_id, src_id, cuc::Transfer::Share, type_id); } bool cucd::Service::CreatePaste(const QString& app_id, const QString& surfaceId, const QByteArray& mimeData, const QStringList& types) { TRACE() << Q_FUNC_INFO << app_id << types; if (!verifiedSurfaceIsFocused(surfaceId)) { return false; } static size_t import_counter{0}; import_counter++; pid_t pid = d->connection.interface()->servicePid(this->message().service()); qWarning() << Q_FUNC_INFO << "PID: " << pid; QString effective_app_id; if (app_id_matches(app_id, pid)) { effective_app_id = app_id; } else { qWarning() << "APP_ID" << app_id << "doesn't match requesting APP"; effective_app_id = "?"; } auto paste = new cucd::Paste(import_counter, effective_app_id, this); new PasteAdaptor(paste); d->active_pastes.append(paste); paste->Charge(mimeData); if (d->active_pastes.count() > d->maxActivePastes) { // get rid of the oldest one delete d->active_pastes.takeFirst(); } Q_EMIT(PasteboardChanged()); bool pendingPasteFormatsChangedSignal = false; Q_FOREACH (QString t, types) { TRACE() << Q_FUNC_INFO << "Type: " << t; if (!d->pasteFormats.contains(t)) { d->pasteFormats.append(t); pendingPasteFormatsChangedSignal = true; } } if (pendingPasteFormatsChangedSignal) { Q_EMIT(PasteFormatsChanged(d->pasteFormats)); } return true; } QByteArray cucd::Service::GetLatestPasteData(const QString& surfaceId) { TRACE() << Q_FUNC_INFO; if (d->active_pastes.isEmpty()) return QByteArray(); return getPasteData(surfaceId, d->active_pastes.last()->Id()); } QByteArray cucd::Service::GetPasteData(const QString& surfaceId, const QString& pasteId) { TRACE() << Q_FUNC_INFO << pasteId; if (d->active_pastes.isEmpty()) return QByteArray(); return getPasteData(surfaceId, pasteId.toInt()); } QByteArray cucd::Service::getPasteData(const QString &surfaceId, int pasteId) { if (!verifiedSurfaceIsFocused(surfaceId)) { qWarning().nospace() << "Surface isn't focused. Denying paste."; return QByteArray(); } Q_FOREACH (cucd::Paste *p, d->active_pastes) { if (p->Id() == pasteId) return p->MimeData(); } return QByteArray(); } QDBusObjectPath cucd::Service::CreateTransfer(const QString& dest_id, const QString& src_id, int dir, const QString& type_id) { TRACE() << Q_FUNC_INFO << "DEST:" << dest_id << "SRC:" << src_id << "DIRECTION:" << dir; static size_t import_counter{0}; import_counter++; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { if (t->destination() == dest_id || t->source() == src_id) { TRACE() << Q_FUNC_INFO << "Found transfer for peer_id:" << src_id; if (should_cancel(t->State())) { TRACE() << Q_FUNC_INFO << "Aborting active transfer:" << t->Id(); t->Abort(); } } } auto transfer = new cucd::Transfer(import_counter, src_id, dest_id, dir, type_id, this); new TransferAdaptor(transfer); d->active_transfers.insert(transfer); auto destination = transfer->import_path(); auto source = transfer->export_path(); if (not d->connection.registerObject(source, transfer)) TRACE() << "Problem registering object for path: " << source; d->connection.registerObject(destination, transfer); TRACE() << "Created transfer " << source << " -> " << destination; connect(transfer, SIGNAL(DownloadManagerError(QString)), this, SLOT(DownloadManagerError(QString))); // Content flow is different for import if (dir == cuc::Transfer::Import) { connect(transfer, SIGNAL(StateChanged(int)), this, SLOT(handle_imports(int))); return QDBusObjectPath{destination}; } connect(transfer, SIGNAL(StateChanged(int)), this, SLOT(handle_exports(int))); return QDBusObjectPath{source}; } void cucd::Service::handle_imports(int state) { TRACE() << Q_FUNC_INFO << state; cucd::Transfer *transfer = static_cast(sender()); TRACE() << Q_FUNC_INFO << "State: " << transfer->State() << "Id:" << transfer->Id(); if (state == cuc::Transfer::initiated) { TRACE() << Q_FUNC_INFO << "initiated"; if (d->app_manager->is_application_started(transfer->source().toStdString())) transfer->SetSourceStartedByContentHub(false); else transfer->SetSourceStartedByContentHub(true); Q_FOREACH (RegHandler *r, d->handlers) { TRACE() << Q_FUNC_INFO << "ID:" << r->id << "Handler: " << r->service << "Transfer: " << transfer->source(); if (r->id == transfer->source()) { TRACE() << Q_FUNC_INFO << "Found handler for initiated transfer" << r->id; if (r->handler->isValid()) r->handler->HandleExport(QDBusObjectPath{transfer->export_path()}); else TRACE() << Q_FUNC_INFO << "Handler invalid"; } } gchar ** uris = NULL; d->app_manager->invoke_application(transfer->source().toStdString(), uris); } if (state == cuc::Transfer::charged) { TRACE() << Q_FUNC_INFO << "Charged"; if (transfer->WasSourceStartedByContentHub()) d->app_manager->stop_application(transfer->source().toStdString()); gchar ** uris = NULL; if (d->registry->peer_is_legacy(transfer->destination())) { TRACE() << Q_FUNC_INFO << "Destination is a legacy app, collecting"; auto store_path = shared_dir_for_peer(transfer->destination()); transfer->setStoreInternal(Scope::app, Type::unknown().id(), store_path); auto items = transfer->Collect(); gchar* urls[2] = {0}; gint i = 0; Q_FOREACH (QVariant item, items) { QString s = copy_to_store( item.value().url().toString(), store_path, /* is_persistent */ true).split("/shared")[1]; QUrl u = QUrl::fromLocalFile(QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/shared" + s); urls[i] = g_str_to_ascii(u.toString().toStdString().c_str(), NULL); i++; } uris = (gchar **)urls; } if (transfer->ShouldBeStartedByContentHub()) d->app_manager->invoke_application(transfer->destination().toStdString(), uris); Q_FOREACH (RegHandler *r, d->handlers) { TRACE() << Q_FUNC_INFO << "ID:" << r->id << "Handler: " << r->service << "Transfer: " << transfer->destination(); if (r->id == transfer->destination()) { TRACE() << Q_FUNC_INFO << "Found handler for charged transfer" << r->id; if (r->handler->isValid()) r->handler->HandleImport(QDBusObjectPath{transfer->import_path()}); } } } if (state == cuc::Transfer::aborted) { if (transfer->WasSourceStartedByContentHub()) { bool shouldStop = true; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { if (t->Id() != transfer->Id()) { if ((t->source() == transfer->source()) && (t->State() == cuc::Transfer::in_progress)) { TRACE() << Q_FUNC_INFO << "Source has pending transfers:" << t->Id(); shouldStop = false; } if (t->destination() == transfer->destination()) { TRACE() << Q_FUNC_INFO << "Destination has pending transfers:" << t->Id(); if (should_cancel(t->State())) shouldStop = false; } } } if (shouldStop) d->app_manager->stop_application(transfer->source().toStdString()); } gchar ** uris = NULL; d->app_manager->invoke_application(transfer->destination().toStdString(), uris); } } void cucd::Service::handle_exports(int state) { TRACE() << Q_FUNC_INFO; cucd::Transfer *transfer = static_cast(sender()); TRACE() << Q_FUNC_INFO << "STATE:" << transfer->State(); if (state == cuc::Transfer::initiated) { TRACE() << Q_FUNC_INFO << "Initiated"; transfer->Handled(); } if (state == cuc::Transfer::downloaded) { TRACE() << Q_FUNC_INFO << "Downloaded"; download_notify(transfer); } if (state == cuc::Transfer::charged) { TRACE() << Q_FUNC_INFO << "Charged"; if (d->app_manager->is_application_started(transfer->destination().toStdString())) transfer->SetSourceStartedByContentHub(false); else transfer->SetSourceStartedByContentHub(true); gchar ** uris = NULL; if (d->registry->peer_is_legacy(transfer->destination())) { TRACE() << Q_FUNC_INFO << "Destination is a legacy app, collecting"; auto store_path = shared_dir_for_peer(transfer->destination()); transfer->setStoreInternal(Scope::app, Type::unknown().id(), store_path); auto items = transfer->Collect(); gchar* urls[2] = {0}; gint i = 0; Q_FOREACH (QVariant item, items) { QString s = copy_to_store( item.value().url().toString(), store_path, /* is_persistent */ true).split("/shared")[1]; QUrl u = QUrl::fromLocalFile(QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/shared" + s); urls[i] = g_str_to_ascii(u.toString().toStdString().c_str(), NULL); i++; } uris = (gchar **)urls; } if (transfer->ShouldBeStartedByContentHub()) d->app_manager->invoke_application(transfer->destination().toStdString(), uris); Q_FOREACH (RegHandler *r, d->handlers) { TRACE() << "Handler: " << r->service << "Transfer: " << transfer->destination(); if (r->id == transfer->destination()) { TRACE() << "Found handler for charged transfer" << r->id; if (transfer->Direction() == cuc::Transfer::Share && r->handler->isValid()) r->handler->HandleShare(QDBusObjectPath{transfer->import_path()}); else if (r->handler->isValid()) r->handler->HandleImport(QDBusObjectPath{transfer->import_path()}); } } } if (state == cuc::Transfer::aborted) { TRACE() << Q_FUNC_INFO << "Aborted"; if (transfer->WasSourceStartedByContentHub()) { bool shouldStop = true; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { if (t->Id() != transfer->Id()) { if ((t->source() == transfer->source()) && (t->State() == cuc::Transfer::in_progress)) { TRACE() << Q_FUNC_INFO << "Source has pending transfers:" << t->Id(); shouldStop = false; } if (t->destination() == transfer->destination()) { TRACE() << Q_FUNC_INFO << "Destination has pending transfers:" << t->Id(); if (should_cancel(t->State())) shouldStop = false; } } } if (shouldStop) d->app_manager->stop_application(transfer->destination().toStdString()); } gchar ** uris = NULL; d->app_manager->invoke_application(transfer->source().toStdString(), uris); } } void cucd::Service::handler_unregistered(const QString& s) { TRACE() << Q_FUNC_INFO << s; if (d->handlers.isEmpty()) return; Q_FOREACH (RegHandler *r, d->handlers) { TRACE() << "Handler: " << r->id; if (r->service == s) { TRACE() << "Found match for " << r->id; d->handlers.remove(r); m_watcher->removeWatchedService(s); delete r; } } } void cucd::Service::RegisterImportExportHandler(const QString& peer_id, const QDBusObjectPath& handler) { TRACE() << Q_FUNC_INFO << peer_id; bool exists = false; RegHandler* r; Q_FOREACH (RegHandler *rh, d->handlers) { TRACE() << "Handler: " << rh->id; if (rh->id == peer_id) { TRACE() << "Found existing handler for " << rh->id; exists = true; r = rh; } } if (!exists) { r = new RegHandler{peer_id, this->message().service(), new cuc::dbus::Handler( this->message().service(), handler.path(), QDBusConnection::sessionBus(), 0)}; d->handlers.insert(r); m_watcher->addWatchedService(r->service); } TRACE() << Q_FUNC_INFO << r->id; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { TRACE() << Q_FUNC_INFO << "SOURCE: " << t->source() << "DEST:" << t->destination() << "STATE:" << t->State(); if ((t->source() == peer_id) && (t->State() == cuc::Transfer::initiated)) { TRACE() << Q_FUNC_INFO << "Found source:" << peer_id << "Direction:" << t->Direction(); if (t->Direction() == cuc::Transfer::Import) { if (r->handler->isValid()) r->handler->HandleExport(QDBusObjectPath{t->export_path()}); } } else if ((t->destination() == peer_id) && (t->State() == cuc::Transfer::charged)) { TRACE() << Q_FUNC_INFO << "Found destination:" << peer_id << "Direction:" << t->Direction(); if (t->Direction() == cuc::Transfer::Export) { TRACE() << Q_FUNC_INFO << "Found import, calling HandleImport"; if (r->handler->isValid()) r->handler->HandleImport(QDBusObjectPath{t->import_path()}); } else if (t->Direction() == cuc::Transfer::Share) { TRACE() << Q_FUNC_INFO << "Found share, calling HandleShare"; if (r->handler->isValid()) r->handler->HandleShare(QDBusObjectPath{t->import_path()}); } } else if ((t->destination() == peer_id) && (t->State() == cuc::Transfer::downloaded)) { TRACE() << Q_FUNC_INFO << "Found destination:" << peer_id << "Direction:" << t->Direction(); if (t->Direction() == cuc::Transfer::Export) { TRACE() << Q_FUNC_INFO << "Found downloaded import, charging"; if (r->handler->isValid()) t->Charge(QVariantList()); } } } } void cucd::Service::HandlerActive(const QString& peer_id) { TRACE() << Q_FUNC_INFO << peer_id; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { if ((t->destination() == peer_id) && (t->State() == cuc::Transfer::downloaded)) { TRACE() << Q_FUNC_INFO << "Found destination:" << peer_id << "Direction:" << t->Direction(); if (t->Direction() == cuc::Transfer::Export) { TRACE() << Q_FUNC_INFO << "Found downloaded import, charging"; t->Charge(QVariantList()); } } } } bool cucd::Service::HasPending(const QString& peer_id) { TRACE() << Q_FUNC_INFO << peer_id; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { TRACE() << Q_FUNC_INFO << "SOURCE: " << t->source() << "DEST:" << t->destination() << "STATE:" << t->State(); if (((t->source() == peer_id) || (t->destination() == peer_id)) && (t->State() == cuc::Transfer::initiated)) { TRACE() << Q_FUNC_INFO << "Has pending:" << peer_id; return true; } } return false; } QStringList cucd::Service::PasteFormats() { TRACE() << Q_FUNC_INFO; return d->pasteFormats; } bool cucd::Service::verifiedSurfaceIsFocused(const QString &surfaceId) { /* Only verify focus when not running under testing */ if (!qgetenv("CONTENT_HUB_TESTING").isNull()) return true; return d->shellFocus->call("isSurfaceFocused", surfaceId).arguments().at(0).toBool(); } content-hub-1.1.1/src/com/lomiri/content/detail/service.h000066400000000000000000000064251456121157600233440ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef SERVICE_H_ #define SERVICE_H_ #include #include #include #include #include #include #include #include #include "handler.h" #include "transfer.h" namespace com { namespace lomiri { namespace content { namespace detail { class PeerRegistry; class Service : public QObject, protected QDBusContext { Q_OBJECT public: Service(QDBusConnection connection, const QSharedPointer& registry, QSharedPointer& application_manager, QObject* parent = nullptr); Service(const Service&) = delete; ~Service(); Service& operator=(const Service&) = delete; public Q_SLOTS: QDBusVariant DefaultSourceForType(const QString &type_id); QVariantList KnownSourcesForType(const QString &type_id); QVariantList KnownDestinationsForType(const QString &type_id); QVariantList KnownSharesForType(const QString &type_id); QDBusObjectPath CreateImportFromPeer(const QString&, const QString&, const QString&); QDBusObjectPath CreateExportToPeer(const QString&, const QString&, const QString&); QDBusObjectPath CreateShareToPeer(const QString&, const QString&, const QString&); bool CreatePaste(const QString&, const QString&, const QByteArray&, const QStringList&); QByteArray GetLatestPasteData(const QString& surfaceId); QByteArray GetPasteData(const QString& surfaceId, const QString& pasteId); QStringList PasteFormats(); void RegisterImportExportHandler(const QString&, const QDBusObjectPath& handler); void HandlerActive(const QString&); void Quit(); void DownloadManagerError(QString); bool HasPending(const QString&); QDBusVariant PeerForId(const QString&); private: QByteArray getPasteData(const QString &surfaceId, int pasteId); bool should_cancel(int); bool verifiedSurfaceIsFocused(const QString &surfaceId); struct Private; struct RegHandler; QDBusServiceWatcher* m_watcher; QScopedPointer d; Q_SIGNALS: void PasteFormatsChanged(const QStringList &formats); void PasteboardChanged(); private Q_SLOTS: void handle_imports(int); void handle_exports(int); void handler_unregistered(const QString&); QDBusObjectPath CreateTransfer(const QString&, const QString&, int, const QString&); void download_notify(com::lomiri::content::detail::Transfer*); }; } } } } #endif // SERVICE_H_ content-hub-1.1.1/src/com/lomiri/content/detail/transfer.cpp000066400000000000000000000352521456121157600240630ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include "debug.h" #include "transfer.h" #include "utils.cpp" #include #include #include #include #include #include namespace cuc = com::lomiri::content; namespace cucd = com::lomiri::content::detail; struct cucd::Transfer::Private { Private(const int id, const QString& source, const QString& destination, const int direction, const QString& content_type): state(cuc::Transfer::created), id(id), source(source), destination(destination), direction(direction), store_scope(Scope::transient), store_type(Type::unknown().id()), selection_type(cuc::Transfer::single), source_started_by_content_hub(false), should_be_started_by_content_hub(true), content_type(content_type) { } cuc::Transfer::State state; const int id; const QString source; const QString destination; int direction; Scope store_scope; QString store_type; QString store_path; int selection_type; QVariantList items; bool source_started_by_content_hub; bool should_be_started_by_content_hub; QString download_id; const QString content_type; }; cucd::Transfer::Transfer(const int id, const QString& source, const QString& destination, const int direction, const QString& content_type, QObject* parent) : QObject(parent), d(new Private(id, source, destination, direction, content_type)) { TRACE() << __PRETTY_FUNCTION__; d->store_path = calculateStorePath(d->store_scope, d->store_type); } cucd::Transfer::~Transfer() { TRACE() << __PRETTY_FUNCTION__; if (d->store_scope == Scope::transient) purge_store_cache(d->store_path); } /* unique id of the transfer */ int cucd::Transfer::Id() { TRACE() << __PRETTY_FUNCTION__; return d->id; } /* returns the peer_id of the requested export handler */ QString cucd::Transfer::source() { TRACE() << __PRETTY_FUNCTION__; return d->source; } /* returns the peer_id of the application requesting the import */ QString cucd::Transfer::destination() { TRACE() << __PRETTY_FUNCTION__; return d->destination; } int cucd::Transfer::Direction() { TRACE() << __PRETTY_FUNCTION__; return d->direction; } int cucd::Transfer::State() { TRACE() << __PRETTY_FUNCTION__; return d->state; } void cucd::Transfer::Abort() { TRACE() << __PRETTY_FUNCTION__; if (d->state == cuc::Transfer::aborted) return; if (d->store_scope == Scope::transient) purge_store_cache(d->store_path); d->items.clear(); d->state = cuc::Transfer::aborted; Q_EMIT(StateChanged(d->state)); } void cucd::Transfer::Start() { TRACE() << __PRETTY_FUNCTION__; if (d->state == cuc::Transfer::initiated) return; d->state = cuc::Transfer::initiated; Q_EMIT(StateChanged(d->state)); } void cucd::Transfer::Handled() { TRACE() << __PRETTY_FUNCTION__; if (d->state == cuc::Transfer::in_progress) return; d->state = cuc::Transfer::in_progress; Q_EMIT(StateChanged(d->state)); } void cucd::Transfer::Charge(const QVariantList& items) { TRACE() << __PRETTY_FUNCTION__; if (d->state == cuc::Transfer::charged) return; if (d->state == cuc::Transfer::downloading) { qWarning() << "Unable to charge, download still in progress."; return; } if (d->state == cuc::Transfer::downloaded) { d->state = cuc::Transfer::charged; Q_EMIT(StateChanged(d->state)); return; } QString profile = aa_profile(message().service()); TRACE() << Q_FUNC_INFO << "PROFILE:" << profile; QVariantList ret; Q_FOREACH(QVariant iv, items) { cuc::Item item = qdbus_cast(iv); if (item.url().isEmpty()) { ret.append(QVariant::fromValue(item)); } else { TRACE() << Q_FUNC_INFO; if (profile.toStdString() != QString("unconfined").toStdString() && item.url().isLocalFile()) { TRACE() << Q_FUNC_INFO << "IS LOCAL FILE"; QString file(item.url().toLocalFile()); TRACE() << Q_FUNC_INFO << "FILE:" << file; // Verify app has read access to local file before transfer if (not check_profile_read(profile, file)) { // If failed to access file, abort ret.clear(); goto abort; } } QString newUrl = copy_to_store( item.url().toString(), d->store_path, d->store_scope != Scope::transient); if (!newUrl.isEmpty()) { item.setUrl(QUrl(newUrl)); TRACE() << Q_FUNC_INFO << "Item:" << item.url(); ret.append(QVariant::fromValue(item)); } else { ret.clear(); goto abort; } } } abort: if (ret.count() <= 0) { qWarning() << "Failed to charge items, aborting"; d->state = cuc::Transfer::aborted; } else { d->items = ret; d->state = cuc::Transfer::charged; } Q_EMIT(StateChanged(d->state)); } void cucd::Transfer::Download() { TRACE() << __PRETTY_FUNCTION__; if(d->download_id.isEmpty()) { return; } Manager *downloadManager = Manager::createSessionManager(); auto download = downloadManager->getDownloadForId(d->download_id); if (download == nullptr) { TRACE() << downloadManager->lastError(); } else { QDir dir; dir.mkpath(d->store_path); download->setDestinationDir(d->store_path); connect(download, SIGNAL(finished(QString)), this, SLOT(DownloadComplete(QString))); connect(download, SIGNAL(error(Lomiri::DownloadManager::Error*)), this, SLOT(DownloadError(Lomiri::DownloadManager::Error*))); QVariantMap metadata = download->metadata(); metadata["app-id"] = d->destination; download->setMetadata(metadata); download->start(); d->state = cuc::Transfer::downloading; Q_EMIT(StateChanged(d->state)); } } void cucd::Transfer::AddItemsFromDir(QDir dir) { QFileInfoList files = dir.entryInfoList(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files); Q_FOREACH(const QFileInfo &fileInfo, files) { QString path = fileInfo.absoluteFilePath(); if(fileInfo.isDir()) { AddItemsFromDir(QDir(path)); } else { cuc::Item item = cuc::Item{QUrl::fromLocalFile(path).toString()}; d->items.append(QVariant::fromValue(item)); } } } void cucd::Transfer::DownloadComplete(QString destFilePath) { TRACE() << __PRETTY_FUNCTION__; QFileInfo fileInfo(destFilePath); if(fileInfo.isDir()) { // When downloading and deflating zip files, download manager may // send us the path of the directory that multiple files have been // unpacked into. AddItemsFromDir(QDir(destFilePath)); } else { cuc::Item item = cuc::Item{QUrl::fromLocalFile(destFilePath).toString()}; d->items.append(QVariant::fromValue(item)); } d->state = cuc::Transfer::downloaded; Q_EMIT(StateChanged(d->state)); } void cucd::Transfer::DownloadError(Lomiri::DownloadManager::Error* error) { TRACE() << __PRETTY_FUNCTION__; qWarning() << "Download manager error: " << error->errorString(); d->state = cuc::Transfer::aborted; Q_EMIT(DownloadManagerError(error->errorString())); Q_EMIT(StateChanged(d->state)); } QVariantList cucd::Transfer::Collect() { TRACE() << __PRETTY_FUNCTION__; if (d->state != cuc::Transfer::collected) { d->state = cuc::Transfer::collected; Q_EMIT(StateChanged(d->state)); } return d->items; } void cucd::Transfer::Finalize() { TRACE() << __PRETTY_FUNCTION__; if (d->state == cuc::Transfer::finalized) return; if (d->store_scope == Scope::transient) purge_store_cache(d->store_path); d->items.clear(); d->state = cuc::Transfer::finalized; Q_EMIT(StateChanged(d->state)); } int cucd::Transfer::Store(QString &out_type_id, QString &out_uri) { TRACE() << __PRETTY_FUNCTION__; out_type_id = d->store_type; out_uri = d->store_path; return d->store_scope; } QString cucd::Transfer::SetStore(int scope, const QString &type_id) { TRACE() << Q_FUNC_INFO; if (d->store_scope == scope && d->store_type == type_id) return d->store_path; switch (scope) { case Scope::transient: case Scope::app: case Scope::system: case Scope::user: break; default: sendErrorReply(QDBusError::InvalidArgs, QStringLiteral("Invalid scope value %1.").arg(scope)); return QString(); } if (type_id != Type::unknown().id() && type_id != Type::Known::documents().id() && type_id != Type::Known::pictures().id() && type_id != Type::Known::music().id() && type_id != Type::Known::contacts().id() && type_id != Type::Known::videos().id() && type_id != Type::Known::links().id() && type_id != Type::Known::ebooks().id() && type_id != Type::Known::text().id() && type_id != Type::Known::events().id()) { sendErrorReply(QDBusError::InvalidArgs, QStringLiteral("Invalid type ID %1.").arg(type_id)); return QString(); } setStoreInternal( static_cast(scope), type_id, calculateStorePath(static_cast(scope), type_id)); return d->store_path; } QString cucd::Transfer::calculateStorePath(Scope scope, const QString & type_id) { if (scope == Scope::transient) { return QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + QDir::separator() + d->destination.split('_')[0] + QStringLiteral("/HubIncoming/") + QString::number(d->id, /* base */ 10); } else if (scope == Scope::user) { if (type_id == Type::Known::pictures().id()) return QStandardPaths::writableLocation(QStandardPaths::PicturesLocation); else if (type_id == Type::Known::music().id()) return QStandardPaths::writableLocation(QStandardPaths::MusicLocation); else if (type_id == Type::Known::documents().id()) return QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); else // This isn't exactly right, but I guess it's the best we can do. return QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); } else { auto prefix = scope == Scope::system ? QStringLiteral("/content") : QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); auto app_pkg = scope == Scope::app ? QStringLiteral("/") + d->destination.split('_')[0] : QString(); auto suffix = type_id == Type::Known::pictures().id() ? QStringLiteral("/Pictures") : type_id == Type::Known::music().id() ? QStringLiteral("/Music") : type_id == Type::Known::documents().id() ? QStringLiteral("/Documents") : QStringLiteral("/Contents"); return prefix + app_pkg + suffix; } } void cucd::Transfer::setStoreInternal(Scope scope, const QString &type_id, const QString & store) { d->store_scope = scope; d->store_type = type_id; d->store_path = store; Q_EMIT(StoreChanged()); } int cucd::Transfer::SelectionType() { TRACE() << __PRETTY_FUNCTION__; return d->selection_type; } void cucd::Transfer::SetSelectionType(int type) { TRACE() << Q_FUNC_INFO; if (d->state != cuc::Transfer::created) return; if (d->selection_type == type) return; d->selection_type = type; Q_EMIT(SelectionTypeChanged(d->selection_type)); } QString cucd::Transfer::DownloadId() { TRACE() << Q_FUNC_INFO; return d->download_id; } void cucd::Transfer::SetDownloadId(QString DownloadId) { TRACE() << Q_FUNC_INFO; if (d->download_id == DownloadId) return; d->download_id = DownloadId; Q_EMIT(DownloadIdChanged(d->download_id)); } /* returns the object path for the export */ QString cucd::Transfer::export_path() { TRACE() << Q_FUNC_INFO << "source:" << d->source; static const QString exporter_path_pattern{"/transfers/%1/export/%2"}; QString source = exporter_path_pattern .arg(sanitize_id(d->source)) .arg(d->id); return source; } /* returns the object path for the import */ QString cucd::Transfer::import_path() { TRACE() << Q_FUNC_INFO << "destination:" << d->destination; static const QString importer_path_pattern{"/transfers/%1/import/%2"}; QString destination = importer_path_pattern .arg(sanitize_id(d->destination)) .arg(d->id); return destination; } /* sets, if the source app is freshly started by the content hub */ void cucd::Transfer::SetSourceStartedByContentHub(bool started) { d->source_started_by_content_hub = started; } /* returns if the source app was started by the content hub */ bool com::lomiri::content::detail::Transfer::WasSourceStartedByContentHub() const { return d->source_started_by_content_hub; } /* sets, if the dest app should be invoked by the content hub */ void cucd::Transfer::SetShouldBeStartedByContentHub(bool start) { d->should_be_started_by_content_hub = start; } /* returns if the dest app should be invoked by the content hub */ bool com::lomiri::content::detail::Transfer::ShouldBeStartedByContentHub() const { return d->should_be_started_by_content_hub; } QString cucd::Transfer::ContentType() { TRACE() << __PRETTY_FUNCTION__; return d->content_type; } content-hub-1.1.1/src/com/lomiri/content/detail/transfer.h000066400000000000000000000052471456121157600235310ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef TRANSFER_H_ #define TRANSFER_H_ #include #include #include #include #include #include #include namespace com { namespace lomiri { namespace content { namespace detail { class Transfer : public QObject, protected QDBusContext { Q_OBJECT public: Transfer(const int, const QString&, const QString&, const int, const QString&, QObject* parent = nullptr); Transfer(const Transfer&) = delete; virtual ~Transfer(); Transfer& operator=(const Transfer&) = delete; void SetSourceStartedByContentHub(bool started); bool WasSourceStartedByContentHub() const; void SetShouldBeStartedByContentHub(bool start); bool ShouldBeStartedByContentHub() const; Q_SIGNALS: void StateChanged(int State); void StoreChanged(); void SelectionTypeChanged(int SelectionType); void DownloadIdChanged(QString DownloadId); void DownloadManagerError(QString ErrorMessage); public Q_SLOTS: int State(); void Start(); void Handled(); void Charge(const QVariantList&); QVariantList Collect(); void Abort(); void Finalize(); int Store(QString &, QString &); QString SetStore(int, const QString &); int SelectionType(); void SetSelectionType(int); int Id(); int Direction(); QString source(); QString destination(); QString export_path(); QString import_path(); QString DownloadId(); void SetDownloadId(QString DownloadId); void DownloadComplete(QString destFilePath); void Download(); void DownloadError(Lomiri::DownloadManager::Error* error); QString ContentType(); void AddItemsFromDir(QDir dir); private: struct Private; QScopedPointer d; QString calculateStorePath(Scope, const QString &); friend class Service; void setStoreInternal(Scope, const QString &, const QString &); }; } } } } #endif // TRANSFER_H_ content-hub-1.1.1/src/com/lomiri/content/glib/000077500000000000000000000000001456121157600211775ustar00rootroot00000000000000content-hub-1.1.1/src/com/lomiri/content/glib/content-hub-glib-compat.c000066400000000000000000000074141456121157600257730ustar00rootroot00000000000000/* * Copyright © 2023 UBports Foundation. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "glib/content-hub-glib.h" void content_hub_transfer_call_store ( ContentHubTransfer *proxy, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) { content_hub_transfer_call_store_with_scope_and_type( proxy, cancellable, callback, user_data); } gboolean content_hub_transfer_call_store_finish ( ContentHubTransfer *proxy, gchar **out_uri, GAsyncResult *res, GError **error) { return content_hub_transfer_call_store_with_scope_and_type_finish( proxy, /* out_scope */ NULL, /* out_type_id */ NULL, out_uri, res, error); } gboolean content_hub_transfer_call_store_sync ( ContentHubTransfer *proxy, gchar **out_uri, GCancellable *cancellable, GError **error) { return content_hub_transfer_call_store_with_scope_and_type_sync( proxy, /* out_scope */ NULL, /* out_type_id */ NULL, out_uri, cancellable, error); } void content_hub_transfer_call_set_store ( ContentHubTransfer *proxy, const gchar *arg_uri, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) { g_warning ("Setting store by path directly is no longer supported. " "To avoid surprise, this transfer will be aborted."); content_hub_transfer_call_abort( proxy, cancellable, callback, user_data); } gboolean content_hub_transfer_call_set_store_finish ( ContentHubTransfer *proxy, GAsyncResult *res, GError **error) { if (!content_hub_transfer_call_abort_finish ( proxy, res, /* error */ NULL)) { g_warning ("The abort call fails. The further state of transfer is unknown."); } /* Whether the abort fails or not, return FALSE for set_store operation. */ g_dbus_error_set_dbus_error( error, "org.freedesktop.DBus.Error.NotSupported", "Setting store by path directly is no longer supported.", NULL); return FALSE; } gboolean content_hub_transfer_call_set_store_sync ( ContentHubTransfer *proxy, const gchar *arg_uri, GCancellable *cancellable, GError **error) { g_warning ("Setting store by path directly is no longer supported. " "To avoid surprise, this transfer will be aborted."); if (!content_hub_transfer_call_abort_sync ( proxy, cancellable, /* error */ NULL)) { g_warning ("The abort call fails. The further state of transfer is unknown."); } /* Whether the abort fails or not, return FALSE for set_store operation. */ g_dbus_error_set_dbus_error( error, "org.freedesktop.DBus.Error.NotSupported", "Setting store by path directly is no longer supported.", NULL); return FALSE; } void content_hub_transfer_complete_set_store ( ContentHubTransfer *object, GDBusMethodInvocation *invocation) { g_dbus_method_invocation_return_value (invocation, g_variant_new ("()")); } void content_hub_transfer_complete_store ( ContentHubTransfer *object, GDBusMethodInvocation *invocation, const gchar *uri) { g_dbus_method_invocation_return_value (invocation, g_variant_new ("(s)", uri)); } content-hub-1.1.1/src/com/lomiri/content/glib/content-hub-glib-compat.h000066400000000000000000000040711456121157600257740ustar00rootroot00000000000000/* Copied from the original content-hub-glib.h pre-DBus interface change */ #ifndef __GLIB_CONTENT_HUB_GLIB_COMPAT_H__ #define __GLIB_CONTENT_HUB_GLIB_COMPAT_H__ #include G_BEGIN_DECLS typedef struct _ContentHubTransfer ContentHubTransfer; G_GNUC_DEPRECATED_FOR("Use content_hub_transfer_call_store_with_scope_and_type()") void content_hub_transfer_call_store ( ContentHubTransfer *proxy, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); G_GNUC_DEPRECATED_FOR("Use content_hub_transfer_call_store_with_scope_and_type()") gboolean content_hub_transfer_call_store_finish ( ContentHubTransfer *proxy, gchar **out_uri, GAsyncResult *res, GError **error); G_GNUC_DEPRECATED_FOR("Use content_hub_transfer_call_store_with_scope_and_type_sync()") gboolean content_hub_transfer_call_store_sync ( ContentHubTransfer *proxy, gchar **out_uri, GCancellable *cancellable, GError **error); G_GNUC_DEPRECATED_FOR("Use content_hub_transfer_call_set_store_by_scope_and_type()") void content_hub_transfer_call_set_store ( ContentHubTransfer *proxy, const gchar *arg_uri, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); G_GNUC_DEPRECATED_FOR("Use content_hub_transfer_call_set_store_by_scope_and_type()") gboolean content_hub_transfer_call_set_store_finish ( ContentHubTransfer *proxy, GAsyncResult *res, GError **error); G_GNUC_DEPRECATED_FOR("Use content_hub_transfer_call_set_store_by_scope_and_type_sync()") gboolean content_hub_transfer_call_set_store_sync ( ContentHubTransfer *proxy, const gchar *arg_uri, GCancellable *cancellable, GError **error); G_GNUC_DEPRECATED_FOR("Why do you call this function?") void content_hub_transfer_complete_set_store ( ContentHubTransfer *object, GDBusMethodInvocation *invocation); G_GNUC_DEPRECATED_FOR("Why do you call this function?") void content_hub_transfer_complete_store ( ContentHubTransfer *object, GDBusMethodInvocation *invocation, const gchar *uri); G_END_DECLS #endif content-hub-1.1.1/src/com/lomiri/content/hub.cpp000066400000000000000000000321561456121157600215530ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include "common.h" #include "debug.h" #include "ContentServiceInterface.h" #include "ContentHandlerInterface.h" #include "handleradaptor.h" #include "paste_p.h" #include "transfer_p.h" #include "utils.cpp" #include #include #include #include #include #include #ifdef WITH_LIBERTINE #include #endif #include #include #include #include #include #include namespace cuc = com::lomiri::content; struct cuc::Hub::Private { Private(QObject* parent) : service( new com::lomiri::content::dbus::Service( HUB_SERVICE_NAME, HUB_SERVICE_PATH, QDBusConnection::sessionBus(), parent)) { } com::lomiri::content::dbus::Service* service; QStringList pasteFormats; }; cuc::Hub::Hub(QObject* parent) : QObject(parent), d{new cuc::Hub::Private{this}} { /* read environment variables */ QProcessEnvironment environment = QProcessEnvironment::systemEnvironment(); if (environment.contains(QLatin1String("CONTENT_HUB_LOGGING_LEVEL"))) { bool isOk; int value = environment.value( QLatin1String("CONTENT_HUB_LOGGING_LEVEL")).toInt(&isOk); if (isOk) setLoggingLevel(value); } qDBusRegisterMetaType(); if (qApp) qApp->installEventFilter(this); #ifdef WITH_LIBERTINE /* Append icon paths from the libertine containers */ QStringList iconPaths = QIcon::themeSearchPaths(); gchar ** containers = libertine_list_containers(); for (int i = 0; containers[i]; i++) { QString path = libertine_container_path(containers[i]); iconPaths << QString(path + "/usr/share/icons/"); } QIcon::setThemeSearchPaths(iconPaths); #endif QObject::connect(d->service, &com::lomiri::content::dbus::Service::PasteFormatsChanged, this, &cuc::Hub::Hub::onPasteFormatsChanged); requestPasteFormats(); QObject::connect(d->service, SIGNAL(PasteboardChanged()), this, SIGNAL(pasteboardChanged())); } cuc::Hub::~Hub() { } cuc::Hub* cuc::Hub::Client::instance() { static cuc::Hub* hub = new cuc::Hub(nullptr); return hub; } void cuc::Hub::requestPasteFormats() { auto reply = d->service->PasteFormats(); auto replyWatcher = new QDBusPendingCallWatcher(reply, this); connect(replyWatcher, &QDBusPendingCallWatcher::finished, this, [this, replyWatcher]() { QDBusPendingReply reply = *replyWatcher; replyWatcher->deleteLater(); if (!reply.isError()) { d->pasteFormats = reply.value(); Q_EMIT(pasteFormatsChanged()); } else { qWarning() << "Dbus error: " << reply.error(); } }); } void cuc::Hub::onPasteFormatsChanged(const QStringList &formats) { TRACE() << Q_FUNC_INFO; d->pasteFormats = formats; TRACE() << Q_FUNC_INFO << d->pasteFormats; Q_EMIT(pasteFormatsChanged()); } bool cuc::Hub::eventFilter(QObject *obj, QEvent *event) { if (event->type() == QEvent::ApplicationActivate) { QString id = app_id(); if (!id.isEmpty()) { TRACE() << Q_FUNC_INFO << id << "Activated"; d->service->HandlerActive(id); } else { qWarning() << "APP_ID isn't set, the handler ignored"; } } return QObject::eventFilter(obj, event); } void cuc::Hub::register_import_export_handler(cuc::ImportExportHandler* handler) { TRACE() << Q_FUNC_INFO; QString id = app_id(); if (id.isEmpty()) { qWarning() << "APP_ID isn't set, the handler can not be registered"; return; } auto c = QDBusConnection::sessionBus(); auto h = new cuc::detail::Handler(c, id, handler); new HandlerAdaptor(h); if (not c.registerObject(handler_path(id), h)) { qWarning() << Q_FUNC_INFO << "Failed to register object for:" << id; return; } d->service->RegisterImportExportHandler( id, QDBusObjectPath{handler_path(id)}); } const cuc::Store* cuc::Hub::store_for_scope_and_type(cuc::Scope scope, cuc::Type type) { #define ENTRY(scope, type, path) \ {{scope, type}, new cuc::Store{scope, type, path, this}} static const std::map, cuc::Store*> lut = { ENTRY(cuc::system, cuc::Type::Known::pictures(), QStringLiteral("/content/Pictures")), ENTRY(cuc::system, cuc::Type::Known::music(), QStringLiteral("/content/Music")), ENTRY(cuc::system, cuc::Type::Known::documents(), QStringLiteral("/content/Documents")), ENTRY(cuc::user, cuc::Type::Known::pictures(), QStandardPaths::writableLocation(QStandardPaths::PicturesLocation)), ENTRY(cuc::user, cuc::Type::Known::music(), QStandardPaths::writableLocation(QStandardPaths::MusicLocation)), ENTRY(cuc::user, cuc::Type::Known::documents(), QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation)), ENTRY(cuc::app, cuc::Type::Known::pictures(), QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + "/Pictures"), ENTRY(cuc::app, cuc::Type::Known::music(), QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + "/Music"), ENTRY(cuc::app, cuc::Type::Known::documents(), QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + "/Documents"), }; #undef ENTRY auto it = lut.find(std::make_pair(scope, type)); if (it == lut.end()) return nullptr; return it->second; } cuc::Peer cuc::Hub::default_source_for_type(cuc::Type t) { TRACE() << Q_FUNC_INFO; auto reply = d->service->DefaultSourceForType(t.id()); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return cuc::Peer::unknown(); } auto peer = reply.value(); return qdbus_cast(peer.variant()); } QVector cuc::Hub::known_sources_for_type(cuc::Type t) { QVector result; auto reply = d->service->KnownSourcesForType(t.id()); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return result; } auto peers = reply.value(); QString id = app_id(); Q_FOREACH(const QVariant& p, peers) { auto peer = qdbus_cast(p); if (peer.id() != id) result << peer; } return result; } QVector cuc::Hub::known_destinations_for_type(cuc::Type t) { QVector result; auto reply = d->service->KnownDestinationsForType(t.id()); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return result; } auto peers = reply.value(); QString id = app_id(); Q_FOREACH(const QVariant& p, peers) { auto peer = qdbus_cast(p); if (peer.id() != id) result << peer; } return result; } QVector cuc::Hub::known_shares_for_type(cuc::Type t) { QVector result; auto reply = d->service->KnownSharesForType(t.id()); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return result; } auto peers = reply.value(); QString id = app_id(); Q_FOREACH(const QVariant& p, peers) { auto peer = qdbus_cast(p); if (peer.id() != id) result << peer; } return result; } cuc::Transfer* cuc::Hub::create_import_from_peer(cuc::Peer peer) { return this->create_import_from_peer_for_type(peer, cuc::Type::unknown()); } cuc::Transfer* cuc::Hub::create_import_from_peer_for_type(cuc::Peer peer, cuc::Type type) { /* This needs to be replaced with a better way to get the APP_ID */ QString id = app_id(); auto reply = d->service->CreateImportFromPeer(peer.id(), id, type.id()); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return nullptr; } cuc::Transfer *transfer = cuc::Transfer::Private::make_transfer(reply.value(), this); return transfer; } cuc::Transfer* cuc::Hub::create_export_to_peer(cuc::Peer peer) { return this->create_export_to_peer_for_type(peer, cuc::Type::unknown()); } cuc::Transfer* cuc::Hub::create_export_to_peer_for_type(cuc::Peer peer, cuc::Type type) { /* This needs to be replaced with a better way to get the APP_ID */ QString id = app_id(); auto reply = d->service->CreateExportToPeer(peer.id(), id, type.id()); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return nullptr; } cuc::Transfer *transfer = cuc::Transfer::Private::make_transfer(reply.value(), this); QString peerName = peer.id().split("_")[0]; TRACE() << Q_FUNC_INFO << "peerName: " << peerName; transfer->start(); return transfer; } cuc::Transfer* cuc::Hub::create_share_to_peer(cuc::Peer peer) { return this->create_share_to_peer_for_type(peer, cuc::Type::unknown()); } cuc::Transfer* cuc::Hub::create_share_to_peer_for_type(cuc::Peer peer, cuc::Type type) { /* This needs to be replaced with a better way to get the APP_ID */ QString id = app_id(); auto reply = d->service->CreateShareToPeer(peer.id(), id, type.id()); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return nullptr; } cuc::Transfer *transfer = cuc::Transfer::Private::make_transfer(reply.value(), this); QString peerName = peer.id().split("_")[0]; TRACE() << Q_FUNC_INFO << "peerName: " << peerName; transfer->start(); return transfer; } void cuc::Hub::quit() { d->service->Quit().waitForFinished(); } bool cuc::Hub::has_pending(QString peer_id) { auto reply = d->service->HasPending(peer_id); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return false; } return reply.value(); } cuc::Peer cuc::Hub::peer_for_app_id(QString app_id) { auto reply = d->service->PeerForId(app_id); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return cuc::Peer::unknown(); } auto peer = reply.value(); return qdbus_cast(peer.variant()); } QDBusPendingCall cuc::Hub::createPaste(const QString &surfaceId, const QMimeData& mimeData) { /* This needs to be replaced with a better way to get the APP_ID */ QString appId = app_id(); TRACE() << Q_FUNC_INFO << appId; auto serializedMimeData = serializeMimeData(mimeData); if (serializedMimeData.isEmpty()) { return QDBusPendingCall::fromCompletedCall( QDBusMessage::createError("Data serialization failed","Could not serialize mimeData")); } return d->service->CreatePaste(appId, surfaceId, serializedMimeData, mimeData.formats()); } bool cuc::Hub::createPasteSync(const QString &surfaceId, const QMimeData& data) { QDBusPendingCall reply = createPaste(surfaceId, data); reply.waitForFinished(); return !reply.isError(); } QDBusPendingCall cuc::Hub::requestLatestPaste(const QString &surfaceId) { TRACE() << Q_FUNC_INFO; return d->service->GetLatestPasteData(surfaceId); } QDBusPendingCall cuc::Hub::requestPasteById(const QString &surfaceId, int pasteId) { TRACE() << Q_FUNC_INFO; return d->service->GetPasteData(surfaceId, QString::number(pasteId)); } QMimeData* cuc::Hub::paste(QDBusPendingCall pendingCall) { auto reply = QDBusPendingReply(pendingCall); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return nullptr; } QByteArray serializedMimeData = qdbus_cast(reply.value()); return deserializeMimeData(serializedMimeData); } QMimeData* cuc::Hub::latestPaste(const QString &surfaceId) { return paste(requestLatestPaste(surfaceId)); } QMimeData* cuc::Hub::pasteById(const QString &surfaceId, int pasteId) { return paste(requestPasteById(surfaceId, pasteId)); } QStringList cuc::Hub::pasteFormats() { TRACE() << Q_FUNC_INFO; return d->pasteFormats; } content-hub-1.1.1/src/com/lomiri/content/import_export_handler.cpp000066400000000000000000000014741456121157600254040ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include namespace cuc = com::lomiri::content; cuc::ImportExportHandler::ImportExportHandler(QObject* parent) : QObject(parent) { } content-hub-1.1.1/src/com/lomiri/content/item.cpp000066400000000000000000000065511456121157600217330ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include #include #include "debug.h" namespace cuc = com::lomiri::content; struct cuc::Item::Private { QUrl url; QString name; QByteArray stream; QString streamType; bool operator==(const Private& rhs) const { return url == rhs.url && name == rhs.name && stream == rhs.stream && streamType == rhs.streamType; } }; cuc::Item::Item(const QUrl& url, QObject* parent) : QObject(parent), d{new cuc::Item::Private{url, QString(), QByteArray(), QString()}} { } cuc::Item::Item(const cuc::Item& rhs) : QObject(rhs.parent()), d(rhs.d) { } cuc::Item& cuc::Item::operator=(const cuc::Item& rhs) { d = rhs.d; return *this; } bool cuc::Item::operator==(const cuc::Item& rhs) const { if (d == rhs.d) return true; return *d == *rhs.d; } cuc::Item::~Item() { } const QUrl& cuc::Item::url() const { return d->url; } void cuc::Item::setUrl(const QUrl& newUrl) const { if (newUrl == d->url) return; d->url = newUrl; } const QString& cuc::Item::name() const { return d->name; } void cuc::Item::setName(const QString& newName) const { if (newName != d->name) d->name = newName; } const QString cuc::Item::text() const { if (d->streamType == "plain/text") return QString(d->stream); return QString(); } void cuc::Item::setText(const QString& text) const { if (text == QString(d->stream)) return; setStream(QByteArray::fromStdString(text.toStdString())); d->streamType = QString("plain/text"); } const QByteArray& cuc::Item::stream() const { return d->stream; } void cuc::Item::setStream(const QByteArray& newStream) const { if (newStream != d->stream) d->stream = newStream; } const QString& cuc::Item::streamType() const { return d->streamType; } void cuc::Item::setStreamType(const QString& newStreamType) const { if (newStreamType != d->streamType) d->streamType = newStreamType; } QDBusArgument &operator<<(QDBusArgument &argument, const cuc::Item& item) { argument.beginStructure(); argument << item.streamType() << item.stream() << item.name() << item.url().toDisplayString(); argument.endStructure(); return argument; } const QDBusArgument &operator>>(const QDBusArgument &argument, cuc::Item &item) { TRACE() << Q_FUNC_INFO; QString name; QString urlString; QByteArray stream; QString streamType; argument.beginStructure(); argument >> streamType >> stream >> name >> urlString; argument.endStructure(); item = cuc::Item{QUrl(urlString)}; item.setName(name); item.setStream(stream); item.setStreamType(streamType); return argument; } content-hub-1.1.1/src/com/lomiri/content/paste.cpp000066400000000000000000000022741456121157600221070ustar00rootroot00000000000000/* * Copyright © 2016 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include "paste_p.h" #include "utils.cpp" namespace cuc = com::lomiri::content; cuc::Paste::Paste(const QSharedPointer& d, QObject* parent) : QObject(parent), d(d) { } cuc::Paste::~Paste() { TRACE() << Q_FUNC_INFO; } int cuc::Paste::id() const { return d->id(); } QMimeData* cuc::Paste::mimeData() { return deserializeMimeData(d->mimeData()); } QString cuc::Paste::source() const { return d->source(); } content-hub-1.1.1/src/com/lomiri/content/paste_p.h000066400000000000000000000047531456121157600220770ustar00rootroot00000000000000/* * Copyright © 2016 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef COM_LOMIRI_CONTENT_PASTE_P_H_ #define COM_LOMIRI_CONTENT_PASTE_P_H_ #include "common.h" #include "ContentPasteInterface.h" #include #include #include #include #include namespace com { namespace lomiri { namespace content { class Paste::Private : public QObject { Q_OBJECT public: static Paste* make_paste(const QDBusObjectPath& paste, QObject* parent) { QSharedPointer d{new Private{paste, parent}}; return new Paste{d, parent}; } Private(const QDBusObjectPath& paste, QObject* parent) : QObject(parent), remote_paste( new com::lomiri::content::dbus::Paste( HUB_SERVICE_NAME, paste.path(), QDBusConnection::sessionBus(), this)) { } int id() { auto reply = remote_paste->Id(); reply.waitForFinished(); return reply.value(); } State state() { auto reply = remote_paste->State(); reply.waitForFinished(); return static_cast(reply.value()); } QByteArray mimeData() { auto reply = remote_paste->MimeData(); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return nullptr; } QByteArray serializedMimeData = qdbus_cast(reply.value()); return serializedMimeData; } QString source() { auto reply = remote_paste->source(); reply.waitForFinished(); return static_cast(reply.value()); } com::lomiri::content::dbus::Paste* remote_paste; }; } } } #endif // COM_LOMIRI_CONTENT_PASTE_P_H_ content-hub-1.1.1/src/com/lomiri/content/peer.cpp000066400000000000000000000101441456121157600217210ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include #include #include "debug.h" #include "utils.cpp" namespace cuc = com::lomiri::content; namespace ual = lomiri::app_launch; struct cuc::Peer::Private { Private (QString id, bool isDefaultPeer) : id(id), isDefaultPeer(isDefaultPeer) { TRACE() << Q_FUNC_INFO << id; if (not id.isEmpty()) { TRACE() << Q_FUNC_INFO << "Getting appinfo for" << id; auto info = info_for_app_id(id); TRACE() << Q_FUNC_INFO << "name:" << info["name"]; TRACE() << Q_FUNC_INFO << "iconPath:" << info["iconPath"]; name = info["name"]; if (QFile::exists(info["iconPath"])) { QFile iconFile(info["iconPath"]); if(iconFile.open(QIODevice::ReadOnly)) { iconData = iconFile.readAll(); iconFile.close(); } } } } Private (QString id, QString name, QByteArray iconData, QString iconName, bool isDefaultPeer) : id(id), name(name), iconData(iconData), iconName(iconName), isDefaultPeer(isDefaultPeer) { TRACE() << Q_FUNC_INFO << id; } QString id; QString name; QByteArray iconData; QString iconName; bool isDefaultPeer; }; const cuc::Peer& cuc::Peer::unknown() { static cuc::Peer peer; return peer; } cuc::Peer::Peer(const QString& id, bool isDefaultPeer, QObject* parent) : QObject(parent), d(new cuc::Peer::Private{id, isDefaultPeer}) { TRACE() << Q_FUNC_INFO; } cuc::Peer::Peer(const QString& id, const QString& name, QByteArray& iconData, const QString& iconName, bool isDefaultPeer, QObject* parent) : QObject(parent), d(new cuc::Peer::Private{id, name, iconData, iconName, isDefaultPeer}) { TRACE() << Q_FUNC_INFO; } cuc::Peer::Peer(const cuc::Peer& rhs) : QObject(rhs.parent()), d(rhs.d) { } cuc::Peer::~Peer() { } cuc::Peer& cuc::Peer::operator=(const cuc::Peer& rhs) { d = rhs.d; return *this; } bool cuc::Peer::operator==(const cuc::Peer& rhs) const { if (d == rhs.d) return true; return d->id == rhs.d->id; } const QString& cuc::Peer::id() const { return d->id; } QString cuc::Peer::name() const { return d->name; } void cuc::Peer::setName(const QString& name) { if (name != d->name) d->name = name; } QByteArray cuc::Peer::iconData() const { return d->iconData; } void cuc::Peer::setIconData(const QByteArray& iconData) { if (iconData != d->iconData) d->iconData = iconData; } QString cuc::Peer::iconName() const { return d->iconName; } void cuc::Peer::setIconName(const QString& iconName) { if (iconName != d->iconName) d->iconName = iconName; } bool cuc::Peer::isDefaultPeer() const { return d->isDefaultPeer; } QDBusArgument &operator<<(QDBusArgument &argument, const cuc::Peer& peer) { argument.beginStructure(); argument << peer.id() << peer.name() << peer.iconData() << peer.iconName() << peer.isDefaultPeer(); argument.endStructure(); return argument; } const QDBusArgument &operator>>(const QDBusArgument &argument, cuc::Peer &peer) { TRACE() << Q_FUNC_INFO; QString id; QString name; QByteArray ic; QString iconName; bool isDefaultPeer; argument.beginStructure(); argument >> id >> name >> ic >> iconName >> isDefaultPeer; argument.endStructure(); peer = cuc::Peer{id, name, ic, iconName, isDefaultPeer}; return argument; } content-hub-1.1.1/src/com/lomiri/content/service/000077500000000000000000000000001456121157600217225ustar00rootroot00000000000000content-hub-1.1.1/src/com/lomiri/content/service/CMakeLists.txt000066400000000000000000000040321456121157600244610ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss add_definitions(-DQT_NO_KEYWORDS) if(LIBERTINE_FOUND) add_definitions(-DWITH_LIBERTINE) endif() include_directories(${CMAKE_CURRENT_BINARY_DIR}) qt5_add_dbus_adaptor( CONTENT_SERVICE_SKELETON ${CMAKE_SOURCE_DIR}/src/com/lomiri/content/detail/com.lomiri.content.Service.xml detail/service.h com::lomiri::content::detail::Service) include_directories( ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/src/com/lomiri/content ${GIO_INCLUDE_DIRS} ${GSETTINGS_INCLUDE_DIRS} ${LOMIRI_LAUNCH_INCLUDE_DIRS} ${LIBERTINE_INCLUDE_DIRS} ) add_executable( content-hub-service main.cpp registry.cpp registry-updater.cpp ../debug.cpp ../utils.cpp ${CONTENT_SERVICE_SKELETON} ) set_target_properties( content-hub-service PROPERTIES AUTOMOC TRUE ) target_link_libraries(content-hub-service Qt5::Core Qt5::DBus Qt5::Gui) target_link_libraries( content-hub-service content-hub ${GIO_LDFLAGS} ${GSETTINGS_LDFLAGS} ${LOMIRI_LAUNCH_LDFLAGS} ${LIBERTINE_LDFLAGS} ) install( TARGETS content-hub-service RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) install( FILES com.lomiri.content.dbus.Service.service DESTINATION ${CMAKE_INSTALL_DATADIR}/dbus-1/services ) ########################### # GSettings ########################### add_schema ("com.lomiri.content.hub.gschema.xml") install( FILES xorg.png DESTINATION ${CMAKE_INSTALL_DATADIR}/content-hub/icons/ ) content-hub-1.1.1/src/com/lomiri/content/service/com.lomiri.content.dbus.Service.service000066400000000000000000000001671456121157600313640ustar00rootroot00000000000000[D-BUS Service] Name=com.lomiri.content.dbus.Service Exec=/usr/bin/content-hub-service AssumedAppArmorLabel=unconfined content-hub-1.1.1/src/com/lomiri/content/service/com.lomiri.content.hub.gschema.xml000066400000000000000000000064541456121157600303610ustar00rootroot00000000000000 ["gallery.ubports", "gallery", "current-user-version"] [] [] ["address-book-app", "", ""] ["gallery.ubports", "gallery", "current-user-version"] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] content-hub-1.1.1/src/com/lomiri/content/service/main.cpp000066400000000000000000000056461456121157600233650ustar00rootroot00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include #include #include "detail/app_manager.h" #include "debug.h" #include "common.h" #include "registry.h" #include "registry-updater.h" #include "detail/i18n.h" #include "detail/service.h" #include "detail/peer_registry.h" #include "serviceadaptor.h" namespace cuca = com::lomiri::ApplicationManager; namespace cucd = com::lomiri::content::detail; namespace cuc = com::lomiri::content; namespace { void shutdown(int sig) { TRACE() << Q_FUNC_INFO << sig; QCoreApplication::instance()->quit(); } } int main(int argc, char** argv) { int ret = 0; QCoreApplication *app = new QCoreApplication(argc, argv); cucd::initTr(I18N_DOMAIN, NULL); /* read environment variables */ QProcessEnvironment environment = QProcessEnvironment::systemEnvironment(); if (environment.contains(QLatin1String("CONTENT_HUB_LOGGING_LEVEL"))) { bool isOk; int value = environment.value( QLatin1String("CONTENT_HUB_LOGGING_LEVEL")).toInt(&isOk); if (isOk) setLoggingLevel(value); } auto connection = QDBusConnection::sessionBus(); auto registry = QSharedPointer(new Registry()); new cuc::detail::RegistryUpdater(registry); auto app_manager = QSharedPointer(new cucd::AppManager()); auto server = new cucd::Service(connection, registry, app_manager, app->parent()); new ServiceAdaptor(server); if (not connection.registerService(HUB_SERVICE_NAME)) { qWarning() << "Failed to register" << HUB_SERVICE_NAME; ret = 1; } if (not connection.registerObject(HUB_SERVICE_PATH, server, QDBusConnection::ExportAdaptors)) { qWarning() << "Failed to register object on" << HUB_SERVICE_PATH; ret = 1; } std::signal(SIGTERM, shutdown); std::signal(SIGHUP, shutdown); std::signal(SIGKILL, shutdown); std::signal(SIGINT, shutdown); if (ret == 1) app->exit(ret); else ret = app->exec(); TRACE() << "Server exiting, cleaning up"; delete server; return ret; } content-hub-1.1.1/src/com/lomiri/content/service/registry-updater.cpp000066400000000000000000000141141456121157600257410ustar00rootroot00000000000000/* * Copyright (C) 2013-2017 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include #include #include #include #include #include #include #include #include "debug.h" #include "registry-updater.h" namespace cuc = com::lomiri::content; namespace cucd = com::lomiri::content::detail; cucd::RegistryUpdater::RegistryUpdater(const QSharedPointer& registry, QObject *parent) : QObject(parent), registry(registry), watcher(new QFileSystemWatcher) { /* Looks for files installed packages that define peer registration. * These files are JSON, for example: * * { * "source": [ * "pictures", * "music" * ] * } * * The updater also iterates known peers and removes them if there is * no JSON file installed in this path. */ contentDirs.append(QDir( QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QString("/") + QString("content-hub"))); contentDirs.append(QDir("/usr/share/content-hub/peers/")); contentDirs.append(QDir("/usr/share/local/content-hub/peers/")); contentDirs.append(QDir("/var/cache/content-hub/peers/")); QStringList dirs; Q_FOREACH(QDir d, contentDirs) { if (d.exists()) dirs << d.path(); } watcher->addPaths(dirs); connect(watcher.data(), SIGNAL(directoryChanged(const QString&)), SLOT(refresh(const QString&))); QTimer::singleShot(200, this, SLOT(run())); } cucd::RegistryUpdater::~RegistryUpdater() { TRACE() << Q_FUNC_INFO; } void cucd::RegistryUpdater::refresh(const QString& dir) { TRACE() << Q_FUNC_INFO << dir; bool shouldRefresh = true; /* Don't update the registry for temp files */ Q_FOREACH(QFileInfo f, QDir(dir).entryInfoList(QDir::Files)) { if (f.completeSuffix().contains("dpkg-")) shouldRefresh = false; } if (shouldRefresh) run(); } void cucd::RegistryUpdater::run() { TRACE() << Q_FUNC_INFO; QStringList all_peers; registry->enumerate_known_peers([&all_peers](const cuc::Peer& peer) { all_peers.append(peer.id()); }); Q_FOREACH(QString p, all_peers) { TRACE() << Q_FUNC_INFO << "Looking for" << p; bool foundPeer = false; Q_FOREACH(QDir contentDir, contentDirs) { QStringList pp = contentDir.entryList(QStringList("*"+ p)); if (!pp.isEmpty()) { foundPeer = true; } } if(!foundPeer) { registry->remove_peer(cuc::Peer{p}); } } bool peerDirsExist = false; Q_FOREACH(QDir contentDir, contentDirs) { if (contentDir.exists()) { peerDirsExist = true; Q_FOREACH(QFileInfo f, contentDir.entryInfoList(QDir::Files)) { add_peer(f); } } } if(!peerDirsExist) return_error("No peer setting directories exist."); } bool cucd::RegistryUpdater::add_peer(QFileInfo result) { TRACE() << Q_FUNC_INFO << "RegistryUpdater:" << result.filePath(); QStringList knownTypes; knownTypes << "all" << "pictures" << "music" << "contacts" << "documents" << "videos" << "links" << "ebooks" << "text" << "events"; QString app_id = result.fileName(); auto peer = cuc::Peer(app_id); QFile contentJson(result.absoluteFilePath()); if (!contentJson.open(QIODevice::ReadOnly | QIODevice::Text)) return_error("couldn't open " + result.absoluteFilePath()); QJsonParseError *e = new QJsonParseError(); QJsonDocument contentDoc = QJsonDocument::fromJson(contentJson.readAll(), e); if (e->error != 0) return return_error(e->errorString()); if (not contentDoc.isObject()) return return_error("invalid JSON object"); QJsonObject contentObj = contentDoc.object(); QVariant sources = contentObj.toVariantMap()["source"]; Q_FOREACH(QString k, sources.toStringList()) { if (knownTypes.contains(k)) { if (registry->install_source_for_type(cuc::Type{k}, peer)) TRACE() << "Installed source:" << peer.id() << "for type:" << k; } else qWarning() << "Failed to install" << peer.id() << "unknown type:" << k; } QVariant dests = contentObj.toVariantMap()["destination"]; Q_FOREACH(QString k, dests.toStringList()) { if (knownTypes.contains(k)) { if (registry->install_destination_for_type(cuc::Type{k}, peer)) TRACE() << "Installed destination:" << peer.id() << "for type:" << k; } else qWarning() << "Failed to install" << peer.id() << "unknown type:" << k; } QVariant shares = contentObj.toVariantMap()["share"]; Q_FOREACH(QString k, shares.toStringList()) { if (knownTypes.contains(k)) { if (registry->install_share_for_type(cuc::Type{k}, peer)) TRACE() << "Installed share:" << peer.id() << "for type:" << k; } else qWarning() << "Failed to install" << peer.id() << "unknown type:" << k; } return true; } bool cucd::RegistryUpdater::return_error(QString err) { qWarning() << "Failed to install peer" << err; return false; } content-hub-1.1.1/src/com/lomiri/content/service/registry-updater.h000066400000000000000000000027121456121157600254070ustar00rootroot00000000000000/* * Copyright (C) 2013-2017 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef REGISTRY_UPDATER_H #define REGISTRY_UPDATER_H #include #include #include #include "registry.h" namespace com { namespace lomiri { namespace content { namespace detail { class RegistryUpdater : public QObject { Q_OBJECT public: RegistryUpdater(const QSharedPointer& registry, QObject *parent = 0); ~RegistryUpdater(); public Q_SLOTS: bool return_error(QString err = ""); void refresh(const QString&); void run(); bool add_peer(QFileInfo); private: const QSharedPointer& registry; QVector contentDirs; QScopedPointer watcher; }; } } } } #endif // REGISTRY_UPDATER_H content-hub-1.1.1/src/com/lomiri/content/service/registry.cpp000066400000000000000000000332101456121157600242750ustar00rootroot00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "debug.h" #include "registry.h" #include "utils.cpp" #include #include #include #include #include #ifdef WITH_LIBERTINE #include #endif // Begin anonymous namespace namespace { cuc::Type mime_to_wellknown_type (const char * type) { TRACE() << Q_FUNC_INFO << "TYPE:" << type; if (QString(type).contains("document")) return cuc::Type::Known::documents(); else if (g_str_has_prefix (type, "x-scheme-handler/http")) return cuc::Type::Known::links(); else if (g_str_has_prefix (type, "audio")) return cuc::Type::Known::music(); else if (g_str_has_prefix (type, "image")) return cuc::Type::Known::pictures(); else if (g_str_has_prefix (type, "video")) return cuc::Type::Known::videos(); return cuc::Type::unknown(); } #ifdef WITH_LIBERTINE QMap> libertine_apps() { TRACE() << Q_FUNC_INFO; QStringList containers; QStringList appIds; char * dir = nullptr; char * file = nullptr; bool ret; gchar ** raw_containers = libertine_list_containers(); for (int i = 0; raw_containers[i]; i++) { containers << raw_containers[i]; } g_strfreev(raw_containers); gchar ** app_ids = NULL; Q_FOREACH(QString container, containers) { gchar ** app_ids = libertine_list_apps_for_container(container.toStdString().c_str()); for (int i = 0; app_ids[i]; i++) { appIds << app_ids[i]; } } g_strfreev(app_ids); QMap> appMap; Q_FOREACH(QString app, appIds) { ret = lomiri_app_launch_application_info(app.toStdString().c_str(), &dir, &file); if (ret) { GKeyFile *key_file = g_key_file_new(); GError *error = NULL; if (!g_key_file_load_from_file(key_file, g_strjoin("/", dir, file, NULL), G_KEY_FILE_NONE, &error)) { qWarning() << "ERROR:" <message; } else { /* FIXME: we should hide NoDisplay and honor ShownIn if (g_desktop_app_info_get_nodisplay (appInfo)) continue; if (not g_app_info_should_show (G_APP_INFO(appInfo))) continue; */ gchar ** types = g_key_file_get_locale_string_list(key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_MIME_TYPE, NULL, NULL, &error); if (types == NULL) continue; cuc::Type type = cuc::Type::unknown(); for (int i = 0; types[i]; i++) { type = mime_to_wellknown_type(types[i]); if (type != cuc::Type::unknown()) { QVector t; t << type.id(); if (not appMap.keys().contains(app)) { appMap.insert(app, t); } else if (not appMap.value(app).contains(type.id())){ t << appMap.value(app); appMap.insert(app, t); } } } } } } g_free(dir); g_free(file); return appMap; } QStringList libertine_app_ids(QString type) { TRACE() << Q_FUNC_INFO << "TYPE:" << type; QStringList results; auto appMap = libertine_apps(); Q_FOREACH (QString a, appMap.keys()) { if (appMap.value(a).contains(type) || type == "all") results << a; } return results; } #endif } // End anonymous namespace Registry::Registry() : m_defaultSources(new QGSettings("com.lomiri.content.hub.default", "/com/lomiri/content/hub/peers/")), m_sources(new QGSettings("com.lomiri.content.hub.source", "/com/lomiri/content/hub/source/")), m_dests(new QGSettings("com.lomiri.content.hub.destination", "/com/lomiri/content/hub/destination/")), m_shares(new QGSettings("com.lomiri.content.hub.share", "/com/lomiri/content/hub/share/")) { /* ensure all default sources are registered as available sources */ QList types = known_types(); Q_FOREACH (cuc::Type type, types) { if (m_defaultSources->keys().contains(type.id())) { QVariant peer_v = m_defaultSources->get(type.id()); // If default isn't a StringList, attempt to reset if (peer_v.type() != QVariant::StringList) { TRACE() << Q_FUNC_INFO << "Default type for" << type.id() << "is incorrect, resetting"; m_defaultSources->reset(type.id()); // After reset, lets get a new QVariant peer_v = m_defaultSources->get(type.id()); } /* Only assume the default is correct if the type is a StringList * The reset above should have ensured it was reset, lets double * check anyway to prevent crashes */ if (peer_v.type() == QVariant::StringList) { QStringList as(peer_v.toStringList()); if (!as.isEmpty()) { std::string pkg = as[0].toStdString(); std::string app = as[1].toStdString(); std::string ver = as[2].toStdString(); cuc::Peer peer; if (app.empty() || ver.empty()) peer = QString::fromStdString(pkg); else peer = QString::fromLocal8Bit(lomiri_app_launch_triplet_to_app_id(pkg.c_str(), app.c_str(), ver.c_str())); install_source_for_type(type, cuc::Peer{peer.id(), true}); } } } } } Registry::~Registry() { TRACE() << Q_FUNC_INFO; } cuc::Peer Registry::default_source_for_type(cuc::Type type) { TRACE() << Q_FUNC_INFO << type.id(); if (m_defaultSources->keys().contains(type.id())) { QVariant peer_v = m_defaultSources->get(type.id()); if (peer_v.type() != QVariant::StringList) return cuc::Peer(peer_v.toString()); QStringList as(peer_v.toStringList()); if (!as.isEmpty()) { std::string pkg = as[0].toStdString(); std::string app = as[1].toStdString(); std::string ver = as[2].toStdString(); if (app.empty() || ver.empty()) return cuc::Peer(QString::fromStdString(pkg)); return cuc::Peer(QString::fromLocal8Bit(lomiri_app_launch_triplet_to_app_id(pkg.c_str(), app.c_str(), ver.c_str())), true); } } return cuc::Peer(); } void Registry::enumerate_known_peers(const std::function&for_each) { TRACE() << Q_FUNC_INFO; Q_FOREACH (QString type_id, m_sources->keys()) { TRACE() << Q_FUNC_INFO << type_id; Q_FOREACH (QString k, m_sources->get(type_id).toStringList()) { TRACE() << Q_FUNC_INFO << k; for_each(cuc::Peer{k}); } } Q_FOREACH (QString type_id, m_dests->keys()) { TRACE() << Q_FUNC_INFO << type_id; Q_FOREACH (QString k, m_dests->get(type_id).toStringList()) { TRACE() << Q_FUNC_INFO << k; for_each(cuc::Peer{k}); } } Q_FOREACH (QString type_id, m_shares->keys()) { TRACE() << Q_FUNC_INFO << type_id; Q_FOREACH (QString k, m_shares->get(type_id).toStringList()) { TRACE() << Q_FUNC_INFO << k; for_each(cuc::Peer{k}); } } } void Registry::enumerate_known_sources_for_type(cuc::Type type, const std::function&for_each) { TRACE() << Q_FUNC_INFO << type.id(); QStringList peers; peers << m_sources->get("all").toStringList(); if (type != cuc::Type::unknown() && valid_type(type)) peers << m_sources->get(type.id()).toStringList(); Q_FOREACH (QString k, peers) { TRACE() << Q_FUNC_INFO << k; bool defaultPeer = false; QVariant peer_v; if (type != cuc::Type::unknown()) peer_v = m_defaultSources->get(type.id()); if (peer_v.type() == QVariant::StringList) { QStringList as(peer_v.toStringList()); if (!as.isEmpty()) { std::string pkg = as[0].toStdString(); std::string app = as[1].toStdString(); std::string ver = as[2].toStdString(); if (app.empty() || ver.empty()) defaultPeer = QString::fromStdString(pkg) == k; else defaultPeer = QString::fromLocal8Bit(lomiri_app_launch_triplet_to_app_id(pkg.c_str(), app.c_str(), ver.c_str())) == k; } } for_each(cuc::Peer{k, defaultPeer}); } } void Registry::enumerate_known_destinations_for_type(cuc::Type type, const std::function&for_each) { TRACE() << Q_FUNC_INFO << type.id(); QStringList peers; peers << m_dests->get("all").toStringList(); if (type != cuc::Type::unknown() && valid_type(type)) peers << m_dests->get(type.id()).toStringList(); #ifdef WITH_LIBERTINE peers << libertine_app_ids(type.id()); #endif Q_FOREACH (QString k, peers) { TRACE() << Q_FUNC_INFO << k; for_each(cuc::Peer{k}); } } void Registry::enumerate_known_shares_for_type(cuc::Type type, const std::function&for_each) { TRACE() << Q_FUNC_INFO << type.id(); if (type == cuc::Type::unknown() || !valid_type(type)) return; QStringList peers; peers << m_shares->get(type.id()).toStringList(); #ifdef WITH_LIBERTINE peers << libertine_app_ids(type.id()); #endif Q_FOREACH (QString k, peers) { TRACE() << Q_FUNC_INFO << k; for_each(cuc::Peer{k}); } } bool Registry::install_default_source_for_type(cuc::Type type, cuc::Peer peer) { TRACE() << Q_FUNC_INFO << "type:" << type.id() << "peer:" << peer.id(); if (m_defaultSources->keys().contains(type.id())) { TRACE() << Q_FUNC_INFO << "Default peer for" << type.id() << "already installed."; return false; } this->install_source_for_type(type, peer); return m_defaultSources->trySet(type.id(), QVariant(peer.id())); } bool Registry::install_source_for_type(cuc::Type type, cuc::Peer peer) { TRACE() << Q_FUNC_INFO << "type:" << type.id() << "peer:" << peer.id(); QStringList l = m_sources->get(type.id()).toStringList(); if (not l.contains(peer.id())) { l.append(peer.id()); return m_sources->trySet(type.id(), QVariant(l)); } return false; } bool Registry::install_destination_for_type(cuc::Type type, cuc::Peer peer) { TRACE() << Q_FUNC_INFO << "type:" << type.id() << "peer:" << peer.id(); QStringList l = m_dests->get(type.id()).toStringList(); if (not l.contains(peer.id())) { l.append(peer.id()); return m_dests->trySet(type.id(), QVariant(l)); } return false; } bool Registry::install_share_for_type(cuc::Type type, cuc::Peer peer) { TRACE() << Q_FUNC_INFO << "type:" << type.id() << "peer:" << peer.id(); QStringList l = m_shares->get(type.id()).toStringList(); if (not l.contains(peer.id())) { l.append(peer.id()); return m_shares->trySet(type.id(), QVariant(l)); } return false; } bool Registry::remove_peer(cuc::Peer peer) { TRACE() << Q_FUNC_INFO << "peer:" << peer.id(); bool ret = false; Q_FOREACH (QString type_id, m_sources->keys()) { QStringList l = m_sources->get(type_id).toStringList(); if (l.contains(peer.id())) { l.removeAll(peer.id()); ret = m_sources->trySet(type_id, QVariant(l)); } } Q_FOREACH (QString type_id, m_dests->keys()) { QStringList l = m_dests->get(type_id).toStringList(); if (l.contains(peer.id())) { l.removeAll(peer.id()); ret = m_dests->trySet(type_id, QVariant(l)); } } Q_FOREACH (QString type_id, m_shares->keys()) { QStringList l = m_shares->get(type_id).toStringList(); if (l.contains(peer.id())) { l.removeAll(peer.id()); ret = m_shares->trySet(type_id, QVariant(l)); } } return ret; } bool Registry::peer_is_legacy(QString peer_id) { #ifdef WITH_LIBERTINE return libertine_app_ids("all").contains(peer_id); #else Q_UNUSED(peer_id); return false; #endif } content-hub-1.1.1/src/com/lomiri/content/service/registry.h000066400000000000000000000040631456121157600237460ustar00rootroot00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef REGISTRY_H #define REGISTRY_H #include #include #include #include "detail/peer_registry.h" namespace cucd = com::lomiri::content::detail; namespace cuc = com::lomiri::content; class Registry : public cucd::PeerRegistry { public: Registry(); ~Registry(); cuc::Peer default_source_for_type(cuc::Type type); void enumerate_known_peers(const std::function& for_each); void enumerate_known_sources_for_type(cuc::Type type, const std::function& for_each); void enumerate_known_destinations_for_type(cuc::Type type, const std::function& for_each); void enumerate_known_shares_for_type(cuc::Type type, const std::function& for_each); bool install_default_source_for_type(cuc::Type type, cuc::Peer peer); bool install_source_for_type(cuc::Type type, cuc::Peer peer); bool install_destination_for_type(cuc::Type type, cuc::Peer peer); bool install_share_for_type(cuc::Type type, cuc::Peer peer); bool remove_peer(cuc::Peer peer); bool peer_is_legacy(QString type); private: QScopedPointer m_defaultSources; QScopedPointer m_sources; QScopedPointer m_dests; QScopedPointer m_shares; }; #endif // REGISTRY_H content-hub-1.1.1/src/com/lomiri/content/service/xorg.png000066400000000000000000000140521456121157600234110ustar00rootroot00000000000000PNG  IHDR\rfbKGD pHYs B(xtIME bIDATxmhTiJ*Κ5(I NpHO A wuvq زf7q֎-a"NڍHӣ$~tbJ}g ˔缧 sʕ$D?hii9zfk`; }FD/755i@!Qw? ?.w}'n[+}nM?junoj`ݔK@_Y~˲'?fwFg=c|fOOq]~ohh2$aӟ{`Kh\reeY=Z$ׯ_/x陰4{f&ֆ>ĻKo.K4s sֈ>-/]JjjV^%|ͯ.Ք~!5֊>> hoo/үL3{5׌>^oFFF|v{<v$֥_VOOO5sy@G@wuuu]!K\G埘EiJ &֒>oeYH3M)} ~J޽G@] .hf9NX_'?k%ZPu MH%KheɉkM@.eY;hکM@ष%@ g2d';}}ʟx.g}69dFFF]D]###.hJX z6!֯_CvW=+"jfҏ>> /v/˥nafs=cʌGZOz_~K.LU}} Ä۰afV~|g1/K͌4p(I(.\Д~n~̙3G+^e^Y~ifb[%}yYoӦMYm)}yLHj \{J@0Ws =&D+q(~999ZPݥ\`0eBXBsϷsw"?Ų+&_ee^pw?݄;t>7HD.1_e `w>> rK,]ȼy4:֛>> r-귻^WVZ;YkoLӬ4}}@DD9_`"?666ڿgodÇo/}}@[5aw}>^Zsv˟+"&o۶Msΰ˟""&1}jɺD~v횤j֔>> r… &`=+J@%"bOx~)))ܗ&}}@HW۷k9.֒>>`󭩩܇YGol̷YҴ`RV>> Șooo,ZHSm`"Șui~V>> rEdīΝ;53J?76{i͵`+G@0u޼yS222x@F@`dٳgdlb"Șo Ruf"Șݻ52dV>>`=sZa.1VZ1+X%olw``@ 4_%+D@`d7 5C@F|EDݫf ~olܹsr֪>`{dggk۬ }}76;88(K.\*ք>> MI 6hփ>> r߿_sMY ol>`w̙3GkVSؘi6ր>>`,K6mڤye }@`jWDZHe }>˗%99Y~{,d }>o[[hݧ@ N&|dŊ1'S`jײ,ԼƛD8o6":yooB(**q{ohhД~1ք>`֭[m+ww̛7OSc }KxJN3„>>ȑ#5 Ɨ8466ֺg0>>u+pzzjkͨm۶i^F8;vLZd2>>ڵkuM KB@# .Ժ$pRRRy-{EBP}vk8sGAA777KZZy,e}#%%E+-Ҕ~9B`8q ߺu4ϻQ#;v;wj3J?B`Xf|>}Za}cѣ߼yS222; "իW3Ydy-)B`8~xXjQ"-[P޽[$3J>rJx+aommLX MWLJ~VP($ׯ6oBw^6PGqqLLLܹsr `#B sΕ߽{W6A IIIR__VAYt湫 B`8| ߆ 4{q  ,+~6p3 >|r +5F,NN޽{2g?sŋa"!!v +eYi& 6nƍ զʶl2+˗%99>hٳg˝;w&999#A@]Zs\rٰ򏍍Ɋ+2@@72RPUVV:m,>$$GJU^^.`0p!'~(>$ UXX(CCCaohh0)y[&4%n +ww̛7M@@➹kI{<YjU|5}[kg߾}/ZXnB*NYY o~XzrwT/_=ϗ766( qr#EȐ?x@b'H̓]$N +իWo~ gϞJm۶ӯV1JKK%رcq$V٨%/^,}}}av횤> k!==]nܸVYpa> E'O +x.?} \>*]^(oߞ V׮]+a審IR  ȓ'O,iii FSRR)@@ Qd'NT&>8Bi|ǎ[&C>cV׬Y#>/`||Ο 9eZo#.oߖYfbիWe E+ǏW>>sJ+[lׁ>>G++W# }}ѡ@@#)3}}YЧV-2! =zT4 3In޼Y4 .pĄhC@@^&5B9w\ /O4˜$b'dh ÇoߖT?}!9Š ,K єLO·|r1Un{~O#t999nc"Rs>"<Ғ~/^4U~KD*_p^BV<(y?}o H+d7n4)Ή+ʽfV-[&æ*"yK@ٳΝ;LD ^b\r\rYSH+}It^c]HBpT+D M\gV ehhؘ-oNVVܺu c3};%2;S! @VX1ߙ>> n82}uy*Xϗ~'$4h###CZZZ>K@h ũSbe̗>> !E@ٳ'|ZA(--@ c F-xb1_gaOOO7n/}}@2[3'O1_S ߵkW6zڵ299ocqC9/X@> f(Ӓ~ϗG%/}}Я%^c%@?~cֆmٲcff\R^c~51_P I1_&>q1_=zc֦l޼̯xX718K@`;6X</}}m0 sΕN/}}-,Dc񓒒c%@>|c֢WTTeY&c3O{2>>n{8Qi,rNN &|̗>>`F/8K@`wUkq<1_֢nܸш l̗>>آ˖-3"&''$/}}KGc!gϞ-mmm? '/}}Щ.K?0AD Qk}8ZV^^nD>> :Јx<78K@Lh,TVV(/|3x~~1_$Z_&>'̈5;I@ ƂؘcY`Dc!222޽{&1_hZO?{qLO]Zw}ħBnw1"FFF~Dg[xLLL^5,0qF&os̗>> :57Ĥ | ?7a~-v>> :nlݺu l}i;E@rAZ`vuuD@BC7"8K@,n?===O9K@0=W8|Dgօ>cgS%x x<߼y}N>~-m{[[[/'Тu8K@0=Ni]{g{{{{=]]]o٣uq?m~)В~^1+W+@@7i\Ǐʕ+IpCB?^o9K@0=pR"m/{{׳B:cۥ`O>y'}Z']xLNN};xqdS9R4i쫯.]je }@t#%+?wuÇko;ϝWRn5iIENDB`content-hub-1.1.1/src/com/lomiri/content/store.cpp000066400000000000000000000035241456121157600221260ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include #include #include #include namespace cuc = com::lomiri::content; struct cuc::Store::Private { cuc::Scope scope; cuc::Type type; QString uri; }; cuc::Store::Store(const QString& uri, QObject* parent) : QObject(parent), d(new cuc::Store::Private{Scope::unknown, Type::unknown(), uri}) { qWarning() << "Directly specifying store path is no longer supported " "and will result in your transfer being aborted. " "Please fix the application."; } cuc::Store::Store(Scope scope, const Type & type, const QString& uri, QObject* parent) : QObject(parent), d(new cuc::Store::Private{scope, type, uri}) { } cuc::Store::Store(const cuc::Store& rhs) : QObject(rhs.parent()), d(rhs.d) { } cuc::Store& cuc::Store::operator=(const cuc::Store& rhs) { d = rhs.d; return *this; } cuc::Store::~Store() { } cuc::Scope cuc::Store::scope() const { return d->scope; } const cuc::Type& cuc::Store::type() const { return d->type; } const QString& cuc::Store::uri() const { return d->uri; } content-hub-1.1.1/src/com/lomiri/content/transfer.cpp000066400000000000000000000115701456121157600226160ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include #include "transfer_p.h" #include "utils.cpp" namespace cuc = com::lomiri::content; cuc::Transfer::Transfer(const QSharedPointer& d, QObject* parent) : QObject(parent), d(d) { QObject::connect(d->remote_transfer, SIGNAL (StateChanged(int)), this, SIGNAL (stateChanged())); QObject::connect(d->remote_transfer, SIGNAL (StoreChanged()), this, SIGNAL (storeChanged())); QObject::connect(d->remote_transfer, SIGNAL (SelectionTypeChanged(int)), this, SIGNAL (selectionTypeChanged())); } cuc::Transfer::~Transfer() { TRACE() << Q_FUNC_INFO; auto s = store(); if (s.scope() == Scope::transient) purge_store_cache(s.uri()); } int cuc::Transfer::id() const { return d->id(); } cuc::Transfer::State cuc::Transfer::state() const { return d->state(); } bool cuc::Transfer::start() { return d->start(); } bool cuc::Transfer::abort() { return d->abort(); } bool cuc::Transfer::charge(const QVector& items) { return d->charge(items); } QVector cuc::Transfer::collect() { return d->collect(); } bool cuc::Transfer::finalize() { return d->finalize(); } cuc::Store cuc::Transfer::store() const { auto result = d->store(); return cuc::Store{ static_cast(std::get<0>(result)), Type(std::get<1>(result)), std::get<2>(result) }; } bool cuc::Transfer::setStore(const cuc::Store* store) { if (store->scope() == Scope::unknown) { /* * This means old code has created a Store object directly from path. * Returning `false` should tell the caller that it will not have the * requested store on the transfer, but in practice people seem to not * check this function's return code. * * To prevent surprise later on, let's pretend that the transfer has * been aborted due to error. */ abort(); return false; } auto store_path = d->setStore(store->scope(), store->type().id()); if (store_path.isNull()) return false; /* If needed and possible, create or migrate the store to where the application expects. */ if (store->uri() == store_path) return true; if (not QFile::exists(store->uri())) { // :shrug:️ return true; } if (QFile::symLinkTarget(store->uri()) == store_path) { /* Probably the migration has already happened. */ return true; } QDir store_dir(store_path); if (store_dir.exists()) { if (not store_dir.isEmpty()) { /* We have to merge the content of dirs, which I reckon isn't worth * coding up. But return true nonetheless since the migration is best-effort. */ return true; } store_dir.removeRecursively(); } QFile::rename(store->uri(), store_path); /* Create absolute path, because :shrug:. Don't check the error, as if * application can't create the symlink, there shouldn't be any content * in it anyway. */ QFile::link(store_path, store->uri()); return true; } /*! * \returns the new store path as seen by the service, or a null QString(). */ QString cuc::Transfer::setStore(Scope scope, const QString & type) { return d->setStore(scope, type); } cuc::Transfer::SelectionType cuc::Transfer::selectionType() const { return d->selection_type(); } bool cuc::Transfer::setSelectionType(const cuc::Transfer::SelectionType& type) { return d->setSelectionType(type); } cuc::Transfer::Direction cuc::Transfer::direction() const { return d->direction(); } QString cuc::Transfer::downloadId() const { return d->downloadId(); } bool cuc::Transfer::setDownloadId(QString downloadId) { return d->setDownloadId(downloadId); } bool cuc::Transfer::download() { return d->download(); } QString cuc::Transfer::contentType() const { return d->contentType(); } QString cuc::Transfer::source() const { return d->source(); } QString cuc::Transfer::destination() const { return d->destination(); } content-hub-1.1.1/src/com/lomiri/content/transfer_p.h000066400000000000000000000157661456121157600226150ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_LOMIRI_CONTENT_TRANSFER_P_H_ #define COM_LOMIRI_CONTENT_TRANSFER_P_H_ #include "common.h" #include "ContentTransferInterface.h" #include #include #include #include namespace com { namespace lomiri { namespace content { class Transfer::Private : public QObject { Q_OBJECT public: static Transfer* make_transfer(const QDBusObjectPath& transfer, QObject* parent) { QSharedPointer d{new Private{transfer, parent}}; return new Transfer{d, parent}; } Private(const QDBusObjectPath& transfer, QObject* parent) : QObject(parent), remote_transfer( new com::lomiri::content::dbus::Transfer( HUB_SERVICE_NAME, transfer.path(), QDBusConnection::sessionBus(), this)) { } int id() { auto reply = remote_transfer->Id(); reply.waitForFinished(); return reply.value(); } State state() { auto reply = remote_transfer->State(); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return Transfer::aborted; } return static_cast(reply.value()); } bool start() { auto reply = remote_transfer->Start(); reply.waitForFinished(); return not reply.isError(); } bool handled() { auto reply = remote_transfer->Handled(); reply.waitForFinished(); return not reply.isError(); } bool abort() { auto reply = remote_transfer->Abort(); reply.waitForFinished(); return not reply.isError(); } bool finalize() { auto reply = remote_transfer->Finalize(); reply.waitForFinished(); return not reply.isError(); } bool charge(const QVector& items) { QVariantList itemVariants; Q_FOREACH(const Item& item, items) { itemVariants << QVariant::fromValue(item); } auto reply = remote_transfer->Charge(itemVariants); reply.waitForFinished(); return not reply.isError(); } QVector collect() { QVector result; auto reply = remote_transfer->Collect(); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return result; } auto items = reply.value(); Q_FOREACH(const QVariant& itemVariant, items) { result << qdbus_cast(itemVariant); } return result; } auto store() { auto reply = remote_transfer->Store(); reply.waitForFinished(); /* FIXME: Return something if it fails */ /* if (reply.isError()) return new cuc::Store{""}; */ //return new Store{reply.value()}; return std::make_tuple( reply.argumentAt<0>(), reply.argumentAt<1>(), reply.argumentAt<2>() ); } QString setStore(Scope scope, const QString& type_id) { if (scope == Scope::unknown) return QString(); if (type_id != Type::unknown().id() && type_id != Type::Known::documents().id() && type_id != Type::Known::pictures().id() && type_id != Type::Known::music().id() && type_id != Type::Known::contacts().id() && type_id != Type::Known::videos().id() && type_id != Type::Known::links().id() && type_id != Type::Known::ebooks().id() && type_id != Type::Known::text().id() && type_id != Type::Known::events().id()) return QString(); auto reply = remote_transfer->SetStore(scope, type_id); reply.waitForFinished(); if (reply.isError()) { return QString(); }; return reply.value(); } SelectionType selection_type() { auto reply = remote_transfer->SelectionType(); reply.waitForFinished(); /* if SelectionType fails, default to single */ if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return Transfer::SelectionType::single; } return static_cast(reply.value()); } bool setSelectionType(int type) { auto reply = remote_transfer->SetSelectionType(type); reply.waitForFinished(); return not reply.isError(); } Direction direction() { auto reply = remote_transfer->Direction(); reply.waitForFinished(); /* if Direction fails, default to import */ if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return Transfer::Direction::Import; } return static_cast(reply.value()); } QString downloadId() { auto reply = remote_transfer->DownloadId(); reply.waitForFinished(); if (reply.isError()) { qWarning() << "Dbus error: " << reply.error(); return QString(); } return static_cast(reply.value()); } bool setDownloadId(QString downloadId) { auto reply = remote_transfer->SetDownloadId(downloadId); reply.waitForFinished(); return not reply.isError(); } bool download() { auto reply = remote_transfer->Download(); reply.waitForFinished(); return not reply.isError(); } QString contentType() { auto reply = remote_transfer->ContentType(); reply.waitForFinished(); return static_cast(reply.value()); } QString source() { auto reply = remote_transfer->source(); reply.waitForFinished(); return static_cast(reply.value()); } QString destination() { auto reply = remote_transfer->destination(); reply.waitForFinished(); return static_cast(reply.value()); } com::lomiri::content::dbus::Transfer* remote_transfer; }; } } } #endif // COM_LOMIRI_CONTENT_TRANSFER_P_H_ content-hub-1.1.1/src/com/lomiri/content/type.cpp000066400000000000000000000052371456121157600217560ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include #include namespace cuc = com::lomiri::content; struct cuc::Type::Private { QString id; }; cuc::Type::Type(const QString& id, QObject* parent) : QObject(parent), d(new Private{id}) { } cuc::Type::Type(const cuc::Type& rhs) : QObject(rhs.parent()), d(rhs.d) { } cuc::Type::~Type() { } cuc::Type& cuc::Type::operator=(const cuc::Type& rhs) { d = rhs.d; return *this; } bool cuc::Type::operator==(const cuc::Type& rhs) const { if (d == rhs.d) return true; return d->id == rhs.d->id; } bool cuc::Type::operator!=(const cuc::Type& rhs) const { if (d == rhs.d) return false; return d->id != rhs.d->id; } bool cuc::Type::operator<(const cuc::Type& rhs) const { return d->id < rhs.d->id; } const QString& cuc::Type::id() const { return d->id; } const cuc::Type& cuc::Type::unknown() { static cuc::Type t("unknown", nullptr); return t; } const cuc::Type& cuc::Type::all() { static cuc::Type t("all", nullptr); return t; } const cuc::Type& cuc::Type::Known::documents() { static cuc::Type t("documents", nullptr); return t; } const cuc::Type& cuc::Type::Known::pictures() { static cuc::Type t("pictures", nullptr); return t; } const cuc::Type& cuc::Type::Known::music() { static cuc::Type t("music", nullptr); return t; } const cuc::Type& cuc::Type::Known::contacts() { static cuc::Type t("contacts", nullptr); return t; } const cuc::Type& cuc::Type::Known::videos() { static cuc::Type t("videos", nullptr); return t; } const cuc::Type& cuc::Type::Known::links() { static cuc::Type t("links", nullptr); return t; } const cuc::Type& cuc::Type::Known::ebooks() { static cuc::Type t("ebooks", nullptr); return t; } const cuc::Type& cuc::Type::Known::text() { static cuc::Type t("text", nullptr); return t; } const cuc::Type& cuc::Type::Known::events() { static cuc::Type t("events", nullptr); return t; } content-hub-1.1.1/src/com/lomiri/content/utils.cpp000066400000000000000000000305031456121157600221270ustar00rootroot00000000000000/* * Copyright © 2013-2016 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include #include #include #include #include #include #include #include #include #include #include "common.h" #include "debug.h" #include "com/lomiri/content/type.h" #include #include #include #include #ifdef WITH_LIBERTINE #include #endif #include /* need to be exposed in libapparmor but for now ... */ #define AA_CLASS_FILE 2 #define AA_MAY_READ (1 << 2) namespace cuc = com::lomiri::content; namespace ual = lomiri::app_launch; namespace { /* Used for pasteboard */ const int maxFormatsCount = 16; const int maxBufferSize = 4 * 1024 * 1024; // 4 Mb /* Data format: number of mime types (sizeof(int)) data layout ((4 * sizeof(int)) * number of mime types) mime type string offset (sizeof(int)) mime type string size (sizeof(int)) data offset (sizeof(int)) data size (sizeof(int)) data (n bytes) */ QByteArray serializeMimeData(const QMimeData &mimeData) { const QStringList formats = mimeData.formats(); const int formatCount = qMin(formats.size(), maxFormatsCount); const int headerSize = sizeof(int) + (formatCount * 4 * sizeof(int)); int bufferSize = headerSize; for (int i = 0; i < formatCount; i++) bufferSize += formats[i].size() + mimeData.data(formats[i]).size(); QByteArray serializedMimeData; if (bufferSize <= maxBufferSize) { // Serialize data. serializedMimeData.resize(bufferSize); { char *buffer = serializedMimeData.data(); int* header = reinterpret_cast(serializedMimeData.data()); int offset = headerSize; header[0] = formatCount; for (int i = 0; i < formatCount; i++) { const QByteArray data = mimeData.data(formats[i]); const int formatOffset = offset; const int formatSize = formats[i].size(); const int dataOffset = offset + formatSize; const int dataSize = data.size(); memcpy(&buffer[formatOffset], formats[i].toLatin1().data(), formatSize); memcpy(&buffer[dataOffset], data.data(), dataSize); header[i*4+1] = formatOffset; header[i*4+2] = formatSize; header[i*4+3] = dataOffset; header[i*4+4] = dataSize; offset += formatSize + dataSize; } } } else { qWarning("Not sending contents (%d bytes) to the global clipboard as it's" " bigger than the maximum allowed size of %d bytes", bufferSize, maxBufferSize); } return serializedMimeData; } QMimeData *deserializeMimeData(const QByteArray &serializedMimeData) { if (static_cast(serializedMimeData.size()) < sizeof(int)) { // Data is invalid return nullptr; } QMimeData *mimeData = new QMimeData; const char* const buffer = serializedMimeData.constData(); const int* const header = reinterpret_cast(serializedMimeData.constData()); const int count = qMin(header[0], maxFormatsCount); for (int i = 0; i < count; i++) { const int formatOffset = header[i*4+1]; const int formatSize = header[i*4+2]; const int dataOffset = header[i*4+3]; const int dataSize = header[i*4+4]; if (formatOffset + formatSize <= serializedMimeData.size() && dataOffset + dataSize <= serializedMimeData.size()) { QString mimeType = QString::fromLatin1(&buffer[formatOffset], formatSize); QByteArray mimeDataBytes(&buffer[dataOffset], dataSize); mimeData->setData(mimeType, mimeDataBytes); } } return mimeData; } QList known_types() { QList types; types << cuc::Type::Known::pictures(); types << cuc::Type::Known::music(); types << cuc::Type::Known::documents(); types << cuc::Type::Known::contacts(); types << cuc::Type::Known::videos(); types << cuc::Type::Known::links(); types << cuc::Type::Known::ebooks(); types << cuc::Type::Known::text(); types << cuc::Type::Known::events(); return types; } bool valid_type(cuc::Type type) { Q_FOREACH (cuc::Type t, known_types()) { TRACE() << Q_FUNC_INFO << t.id(); if (t.id() == type.id()) return true; } return false; } /* sanitize the dbus names */ QString sanitize_id(const QString& appId) { TRACE() << Q_FUNC_INFO; return QString::fromStdString(lomiri::util::dbus_sanitized_path("", appId.toStdString())).remove(0, 1); } /* define a bus_name based on our namespace and the app_id */ QString handler_address(QString app_id) { return QString(HANDLER_NAME_TEMPLATE).arg(sanitize_id(app_id)); } QString handler_path(QString app_id) { return QString::fromStdString(lomiri::util::dbus_sanitized_path(HANDLER_BASE_PATH.data(), app_id.toStdString())); } QString app_id() { /* FIXME: rely on APP_ID from env for now, * but we'll use this function as a place to * later use the application manager */ return QString(qgetenv("APP_ID")); } bool app_id_matches(QString id, pid_t pid) { TRACE() << Q_FUNC_INFO << id << pid; /* Don't verify app_id while testing */ if (!qgetenv("CONTENT_HUB_TESTING").isNull()) return true; std::shared_ptr reg = ual::Registry::getDefault(); auto app_id = ual::AppID::find(id.toStdString()); if (app_id.empty()) return false; try { auto app = ual::Application::create(app_id, reg); if (!app.get()->hasInstances()) return false; Q_FOREACH (std::shared_ptr instance, app.get()->instances()) { if (instance.get()->hasPid(pid)) return true; } } catch (...) { qWarning() << Q_FUNC_INFO << "Failed to create Application for" << id; } return false; } QMap info_for_app_id(QString id) { QMap map; map["name"] = id; map["iconPath"] = QString(); if (!qgetenv("CONTENT_HUB_TESTING").isNull()) return map; std::shared_ptr reg = ual::Registry::getDefault(); auto app_id = ual::AppID::find(id.toStdString()); if (app_id.empty()) { qWarning() << Q_FUNC_INFO << "Invalid APP_ID:" << id; } else { try { auto app = ual::Application::create(app_id, reg); map["name"] = QString::fromStdString(app.get()->info()->name()); map["iconPath"] = QString::fromStdString(app.get()->info()->iconPath()); } catch (...) { qWarning() << Q_FUNC_INFO << "Failed to create Application for" << id; } } return map; } QString aa_profile(QString uniqueConnectionId, QString returnValueOnError = QString()) { TRACE() << Q_FUNC_INFO << uniqueConnectionId; QDBusMessage msg = QDBusMessage::createMethodCall("org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", "GetConnectionAppArmorSecurityContext"); QString aaProfile; QVariantList args; args << uniqueConnectionId; msg.setArguments(args); QDBusMessage reply = QDBusConnection::sessionBus().call(msg, QDBus::Block); if (reply.type() == QDBusMessage::ReplyMessage) { aaProfile = reply.arguments().value(0, QString()).toString(); TRACE() << "AppArmor Profile:" << aaProfile; } else { qWarning() << "Error getting app ID:" << reply.errorName() << reply.errorMessage(); return returnValueOnError; } return aaProfile; } QString copy_to_store(const QString& src, const QString& store, bool is_persistent) { TRACE() << Q_FUNC_INFO; QUrl srcUrl(src); if (not srcUrl.isLocalFile()) return srcUrl.url(); QFileInfo fi(srcUrl.toLocalFile()); QDir st(store); if (not st.exists()) st.mkpath(st.absolutePath()); QString suffix = fi.completeSuffix(); QString filename = fi.fileName(); QString filenameWithoutSuffix = filename.left(filename.size() - suffix.size()); QString destFilePath = store + QDir::separator() + filenameWithoutSuffix + suffix; // Avoid filename collision by automatically inserting an incremented // number into the filename if the original name already exists. if (QFile::exists(destFilePath)) { qWarning() << "Destination file already exists, attempt to resolve:" << destFilePath; int append = 1; do { destFilePath = QString("%1%2.%3").arg(store + QDir::separator() + filenameWithoutSuffix, QString::number(append), suffix); append++; } while (QFile::exists(destFilePath)); } TRACE() << Q_FUNC_INFO << destFilePath; bool copy_failed = true; if (not is_persistent) { if (link( fi.absoluteFilePath().toStdString().c_str(), destFilePath.toStdString().c_str() ) < 0) { qWarning() << "Can't create hard link to Store:" << store; } else copy_failed = false; } if (copy_failed) { if (not QFile::copy(fi.filePath(), destFilePath)) qWarning() << "Failed to copy to Store:" << store; } return QUrl::fromLocalFile(destFilePath).toString(); } bool purge_store_cache(QString store) { TRACE() << Q_FUNC_INFO << "Store:" << store; QDir st(store); if (st.exists()) { TRACE() << Q_FUNC_INFO << store << "isn't persistent, purging"; return st.removeRecursively(); } return false; } int query_file(const char *label, const char *path, int *allowed) { int rc, audited; char *query; /* + 1 for null separator and then + 1 AA_CLASS_FILE */ int label_size = strlen(label); int size = label_size + 1 + strlen(path) + AA_QUERY_CMD_LABEL_SIZE + 1; /* +1 for null terminator used by strcpy, yes we could drop this * using memcpy */ query = (char*)malloc(size + 1); if (!query) return -1; /* we want the null terminator here */ strcpy(query + AA_QUERY_CMD_LABEL_SIZE, label); query[AA_QUERY_CMD_LABEL_SIZE + label_size + 1] = AA_CLASS_FILE; strcpy(query + AA_QUERY_CMD_LABEL_SIZE + label_size + 2, path); rc = aa_query_label(AA_MAY_READ, query, size , allowed, &audited); free(query); return rc; } bool check_profile_read(QString profile, QString path) { TRACE() << Q_FUNC_INFO << "PROFILE:" << profile; int allowed; if (query_file(profile.toStdString().c_str(), path.toStdString().c_str(), &allowed) == -1) { qWarning() << "error:" << strerror(errno) << path; return false; } if (allowed) { TRACE() << "ALLOWED:" << QString::number(allowed); return true; } TRACE() << "NOT ALLOWED:" << QString::number(allowed); return false; } QString shared_dir_for_peer(QString peer) { TRACE() << Q_FUNC_INFO << "PEER:" << peer; #ifdef WITH_LIBERTINE QString container = peer.split("_")[0]; if (container.isEmpty()) return QString(); QString home_path = libertine_container_home_path(container.toStdString().c_str()); if (home_path.isEmpty()) return QString(); QString path = home_path + "/shared"; return path; #else return QString(); #endif } } content-hub-1.1.1/tests/000077500000000000000000000000001456121157600151125ustar00rootroot00000000000000content-hub-1.1.1/tests/CMakeLists.txt000066400000000000000000000022201456121157600176460ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss find_package(GMock REQUIRED) add_definitions(-DQT_NO_KEYWORDS) include_directories ( ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/src/com/lomiri/content ${GIO_INCLUDE_DIRS} ${LIBERTINE_INCLUDE_DIRS} ${LOMIRI_LAUNCH_INCLUDE_DIRS} ${CMAKE_BINARY_DIR}/src ${CMAKE_BINARY_DIR}/src/com/lomiri/content ${GMOCK_INCLUDE_DIR} ) add_subdirectory(acceptance-tests) add_subdirectory(qml-tests) add_subdirectory(peers) if (ENABLE_UBUNTU_COMPAT) add_subdirectory(qml-tests-ubuntu-compat) endif() content-hub-1.1.1/tests/acceptance-tests/000077500000000000000000000000001456121157600203405ustar00rootroot00000000000000content-hub-1.1.1/tests/acceptance-tests/CMakeLists.txt000066400000000000000000000051151456121157600231020ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss project(test CXX C) qt5_wrap_cpp(MOCS test_harness.h) set(TESTS app_hub_communication_default_source app_hub_communication_known_sources app_hub_communication_stores app_hub_communication_store_migration app_hub_communication_transfer app_hub_communication_paste app_hub_communication_handler test_utils test_types mimedata_test glib_test ) set(TEST_LIBS ${GMOCK_LIBRARIES} ${GTEST_BOTH_LIBRARIES} content-hub ) foreach(test ${TESTS}) # set the sources per test set(${test}_SOURCES ${test}.cpp ${MOCS} transfer_files ) endforeach(test) foreach(test ${TESTS}) # set targets, linked libs and test add_executable(${test} ${${test}_SOURCES} ) find_package(Qt5Test REQUIRED) target_link_libraries(${test} Qt5::Core Qt5::Gui Qt5::DBus Qt5::Test) target_link_libraries(${test} ${TEST_LIBS} ) add_test(NAME ${test} COMMAND dbus-test-runner --task ${CMAKE_CURRENT_BINARY_DIR}/${test}) SET_TESTS_PROPERTIES(${test} PROPERTIES ENVIRONMENT "CONTENT_HUB_TESTING=1") endforeach(test) add_executable( test_registry_updater test_registry_updater.cpp ${MOCS} ${CMAKE_SOURCE_DIR}/src/com/lomiri/content/service/registry-updater.cpp ${CMAKE_SOURCE_DIR}/src/com/lomiri/content/service/registry.cpp good.json bad.json source_all.json ) target_link_libraries(test_registry_updater Qt5::Core Qt5::Gui Qt5::DBus Qt5::Test) target_link_libraries(test_registry_updater ${TEST_LIBS} ${GSETTINGS_LDFLAGS}) add_test(NAME test_registry_updater COMMAND dbus-test-runner --task ${CMAKE_CURRENT_BINARY_DIR}/test_registry_updater) SET_TESTS_PROPERTIES(test_registry_updater PROPERTIES ENVIRONMENT "CONTENT_HUB_TESTING=1") set_target_properties( test_registry_updater PROPERTIES AUTOMOC TRUE ) file(COPY good.json bad.json source_all.json DESTINATION .) target_link_libraries(glib_test content-hub-glib) add_custom_command( OUTPUT transfer_files COMMAND cmake -E touch file1 file2 file3 ) content-hub-1.1.1/tests/acceptance-tests/app_hub_communication_default_source.cpp000066400000000000000000000116241456121157600304770ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include #include #include "com/lomiri/content/serviceadaptor.h" #include "com/lomiri/content/detail/peer_registry.h" #include "com/lomiri/content/detail/service.h" #include #include #include #include #include #include #include namespace cua = com::lomiri::ApplicationManager; namespace cuc = com::lomiri::content; namespace cucd = com::lomiri::content::detail; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { QString service_name{"com.lomiri.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; } TEST(Hub, querying_default_peer_returns_correct_value) { using namespace ::testing; test::CrossProcessSync sync; QString default_peer_id{"com.does.not.exist.anywhere.application"}; auto parent = [&sync, default_peer_id]() { int argc = 0; QCoreApplication app{argc, nullptr}; QDBusConnection connection = QDBusConnection::sessionBus(); auto mock = new MockedPeerRegistry{}; EXPECT_CALL(*mock, default_source_for_type(_)). Times(Exactly(1)). WillRepeatedly(Return(cuc::Peer{default_peer_id})); QSharedPointer registry{mock}; auto app_manager = QSharedPointer(new MockedAppManager()); auto implementation = new cucd::Service(connection, registry, app_manager, &app); new ServiceAdaptor(implementation); connection.registerService(service_name); connection.registerObject("/", implementation); QObject::connect(&app, &QCoreApplication::aboutToQuit, [&](){ connection.unregisterObject("/"); connection.unregisterService(service_name); }); // Make sure we signal readiness after the event loop has started. QTimer::singleShot(0 /* msec */, [&sync]() { sync.signal_ready(); }); app.exec(); }; auto child = [&sync, default_peer_id]() { sync.wait_for_signal_ready(); int argc = 0; QCoreApplication app(argc, nullptr); auto hub = cuc::Hub::Client::instance(); test::TestHarness harness; harness.add_test_case([hub, default_peer_id]() { EXPECT_EQ(default_peer_id, hub->default_source_for_type(cuc::Type::Known::documents()).id()); }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); hub->quit(); return testing::Test::HasFailure(); }; EXPECT_TRUE(test::fork_and_run(child, parent) != EXIT_FAILURE); } content-hub-1.1.1/tests/acceptance-tests/app_hub_communication_handler.cpp000066400000000000000000000141441456121157600271100ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include #include #include #include #include "com/lomiri/content/utils.cpp" #include "com/lomiri/content/detail/peer_registry.h" #include "com/lomiri/content/detail/service.h" #include "com/lomiri/content/serviceadaptor.h" #include #include #include #include #include #include #include namespace cua = com::lomiri::ApplicationManager; namespace cuc = com::lomiri::content; namespace cucd = com::lomiri::content::detail; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { QString service_name{"com.lomiri.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; struct MockedHandler : public cuc::ImportExportHandler { MockedHandler() : cuc::ImportExportHandler() { using namespace ::testing; ON_CALL(*this, handle_import(_)).WillByDefault(Return()); ON_CALL(*this, handle_export(_)).WillByDefault(Return()); ON_CALL(*this, handle_share(_)).WillByDefault(Return()); } MOCK_METHOD1(handle_import, void(cuc::Transfer*)); MOCK_METHOD1(handle_export, void(cuc::Transfer*)); MOCK_METHOD1(handle_share, void(cuc::Transfer*)); }; } TEST(Handler, handler_on_bus) { using namespace ::testing; QString default_peer_id{"com.does.not.exist.anywhere.application"}; QString default_dest_peer_id{"com.also.does.not.exist.anywhere.application"}; test::CrossProcessSync sync; auto parent = [&sync, default_peer_id]() { int argc = 0; QCoreApplication app{argc, nullptr}; QDBusConnection connection = QDBusConnection::sessionBus(); QSharedPointer registry{new MockedPeerRegistry{}}; auto app_manager = QSharedPointer(new MockedAppManager()); cucd::Service implementation(connection, registry, app_manager, &app); new ServiceAdaptor(std::addressof(implementation)); connection.registerService(service_name); connection.registerObject("/", (std::addressof(implementation))); QObject::connect(&app, &QCoreApplication::aboutToQuit, [&](){ connection.unregisterObject("/"); connection.unregisterService(service_name); }); // Make sure we signal readiness after the event loop has started. QTimer::singleShot(0 /* msec */, [&sync]() { sync.signal_ready(); }); app.exec(); }; auto child = [&sync, default_peer_id, default_dest_peer_id]() { sync.wait_for_signal_ready(); int argc = 0; QCoreApplication app(argc, nullptr); test::TestHarness harness; harness.add_test_case([default_peer_id, default_dest_peer_id]() { QVector source_items; /* register handler on the service */ auto mock_handler = new MockedHandler{}; // FIX ME, find out why handle_export has not been called //EXPECT_CALL(*mock_handler, handle_export(_)).Times(Exactly(1)); qputenv("APP_ID", default_peer_id.toLatin1()); auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(mock_handler); qputenv("APP_ID", default_dest_peer_id.toLatin1()); hub = cuc::Hub::Client::instance(); auto transfer = hub->create_import_from_peer(cuc::Peer(default_peer_id)); ASSERT_TRUE(transfer != nullptr); EXPECT_TRUE(transfer->start()); // After start it should be in a initiated state EXPECT_EQ(cuc::Transfer::initiated, transfer->state()); // Since sourceitem is empty, it should be in a aborted state EXPECT_TRUE(transfer->charge(source_items)); EXPECT_EQ(cuc::Transfer::aborted, transfer->state()); hub->quit(); delete mock_handler; }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); return testing::Test::HasFailure(); }; EXPECT_TRUE(test::fork_and_run(child, parent) != EXIT_FAILURE); } content-hub-1.1.1/tests/acceptance-tests/app_hub_communication_known_sources.cpp000066400000000000000000000135661456121157600304010ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include #include #include "com/lomiri/content/detail/peer_registry.h" #include "com/lomiri/content/detail/service.h" #include "com/lomiri/content/serviceadaptor.h" #include #include #include #include #include #include #include namespace cua = com::lomiri::ApplicationManager; namespace cuc = com::lomiri::content; namespace cucd = com::lomiri::content::detail; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { QString service_name{"com.lomiri.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; } TEST(Hub, querying_known_peers_returns_correct_value) { using namespace ::testing; test::CrossProcessSync sync; QVector default_peers; default_peers << cuc::Peer("com.does.not.exist.anywhere.application1"); default_peers << cuc::Peer("com.does.not.exist.anywhere.application2"); default_peers << cuc::Peer("com.does.not.exist.anywhere.application3"); QVector expected_peers; expected_peers << default_peers[1]; expected_peers << default_peers[2]; auto parent = [&sync, default_peers]() { int argc = 0; QCoreApplication app{argc, nullptr}; QDBusConnection connection = QDBusConnection::sessionBus(); auto enumerate = [default_peers](cuc::Type, const std::function& f) { Q_FOREACH(const cuc::Peer& peer, default_peers) { f(peer); } }; auto mock = new MockedPeerRegistry{}; EXPECT_CALL(*mock, enumerate_known_sources_for_type(_, _)). Times(Exactly(1)). WillRepeatedly(Invoke(enumerate)); EXPECT_CALL(*mock, install_source_for_type(_, _)). Times(Exactly(1)). WillRepeatedly(Return(true)); ASSERT_TRUE(mock->install_source_for_type(cuc::Type::Known::documents(), cuc::Peer("com.does.not.exist.anywhere.application4"))); QSharedPointer registry{mock}; auto app_manager = QSharedPointer(new MockedAppManager()); cucd::Service implementation(connection, registry, app_manager, &app); new ServiceAdaptor(std::addressof(implementation)); connection.registerService(service_name); connection.registerObject("/", std::addressof(implementation)); QObject::connect(&app, &QCoreApplication::aboutToQuit, [&](){ connection.unregisterObject("/"); connection.unregisterService(service_name); }); // Make sure we signal readiness after the event loop has started. QTimer::singleShot(0 /* msec */, [&sync]() { sync.signal_ready(); }); app.exec(); }; auto child = [&sync, default_peers, expected_peers]() { sync.wait_for_signal_ready(); int argc = 0; QCoreApplication app(argc, nullptr); test::TestHarness harness; QString appId = default_peers[0].id(); qputenv("APP_ID", appId.toLatin1()); auto hub = cuc::Hub::Client::instance(); harness.add_test_case([hub, expected_peers]() { auto peers = hub->known_sources_for_type(cuc::Type::Known::documents()); ASSERT_EQ(expected_peers, peers); }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); hub->quit(); return testing::Test::HasFailure(); }; EXPECT_TRUE(test::fork_and_run(child, parent) != EXIT_FAILURE); } content-hub-1.1.1/tests/acceptance-tests/app_hub_communication_paste.cpp000066400000000000000000000116341456121157600266100ustar00rootroot00000000000000/* * Copyright © 2016 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include "com/lomiri/content/detail/peer_registry.h" #include "com/lomiri/content/detail/service.h" #include "com/lomiri/content/serviceadaptor.h" #include #include #include #include #include #include #include #include namespace cua = com::lomiri::ApplicationManager; namespace cuc = com::lomiri::content; namespace cucd = com::lomiri::content::detail; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { QString service_name{"com.lomiri.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; } TEST(Hub, transfer_creation_and_states_work) { using namespace ::testing; test::CrossProcessSync sync; auto parent = [&sync]() { int argc = 0; QCoreApplication app{argc, nullptr}; QDBusConnection connection = QDBusConnection::sessionBus(); auto mock = new ::testing::NiceMock{}; QSharedPointer registry{mock}; auto app_manager = QSharedPointer(new MockedAppManager()); cucd::Service implementation(connection, registry, app_manager, &app); new ServiceAdaptor(std::addressof(implementation)); connection.registerService(service_name); connection.registerObject("/", std::addressof(implementation)); QObject::connect(&app, &QCoreApplication::aboutToQuit, [&](){ connection.unregisterObject("/"); connection.unregisterService(service_name); }); // Make sure we signal readiness after the event loop has started. QTimer::singleShot(0 /* msec */, [&sync]() { sync.signal_ready(); }); app.exec(); }; auto child = [&sync]() { int argc = 0; QCoreApplication app(argc, nullptr); sync.wait_for_signal_ready(); test::TestHarness harness; harness.add_test_case([]() { qputenv("APP_ID", "some-app"); QMimeData data; data.setText("some text"); auto hub = cuc::Hub::Client::instance(); QString surfaceId("some-bogus-fake-surface-id"); bool ok = hub->createPasteSync(surfaceId, const_cast(data)); ASSERT_TRUE(ok); EXPECT_EQ(QString(data.text()), QString(hub->latestPaste(surfaceId)->text())); EXPECT_EQ(QString(data.text()), QString(hub->pasteById(surfaceId, 1)->text())); hub->quit(); }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); return testing::Test::HasFailure(); }; EXPECT_EQ(EXIT_SUCCESS, test::fork_and_run(child, parent)); } content-hub-1.1.1/tests/acceptance-tests/app_hub_communication_store_migration.cpp000066400000000000000000000166141456121157600307040ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * Copyright © 2023 UBports Foundation. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include #include #include #include #include "com/lomiri/content/detail/peer_registry.h" #include "com/lomiri/content/detail/service.h" #include "com/lomiri/content/serviceadaptor.h" #include #include #include #include #include #include #include #include namespace cua = com::lomiri::ApplicationManager; namespace cuc = com::lomiri::content; namespace cucd = com::lomiri::content::detail; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { QString service_name{"com.lomiri.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; } TEST(Hub, transfer_legacy_store_migration) { using namespace ::testing; test::CrossProcessSync sync; QTemporaryDir home_dir; QString home_path = home_dir.path(); qputenv("HOME", home_path.toLocal8Bit()); auto parent = [&sync]() { int argc = 0; QCoreApplication app{argc, nullptr}; QString default_peer_id{"com.does.not.exist.anywhere.application"}; QDBusConnection connection = QDBusConnection::sessionBus(); auto mock = new ::testing::NiceMock{}; EXPECT_CALL(*mock, default_source_for_type(_)). Times(AtLeast(1)). WillRepeatedly(Return(cuc::Peer{default_peer_id})); QSharedPointer registry{mock}; auto app_manager = QSharedPointer(new MockedAppManager()); cucd::Service implementation(connection, registry, app_manager, &app); new ServiceAdaptor(std::addressof(implementation)); connection.registerService(service_name); connection.registerObject("/", std::addressof(implementation)); QObject::connect(&app, &QCoreApplication::aboutToQuit, [&](){ connection.unregisterObject("/"); connection.unregisterService(service_name); }); // Make sure we signal readiness after the event loop has started. QTimer::singleShot(0 /* msec */, [&sync]() { sync.signal_ready(); }); app.exec(); }; auto child = [&sync]() { int argc = 0; QCoreApplication app(argc, nullptr); auto app_pkg = QStringLiteral("somepkg.contenthub"); auto app_name = QStringLiteral("application"); app.setOrganizationName(app_pkg); app.setApplicationName(app_name); qputenv("APP_ID", QStringLiteral("%1_%2_0.1") .arg(app_pkg) .arg(app_name) .toLocal8Bit()); sync.wait_for_signal_ready(); test::TestHarness harness; harness.add_test_case([]() { auto hub = cuc::Hub::Client::instance(); /* [Test aborting hand-crafted store] */ { auto transfer = hub->create_import_from_peer( hub->default_source_for_type(cuc::Type::Known::pictures())); #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" cuc::Store handcrafted_store("/nonexistent"); transfer->setStore(&handcrafted_store); #pragma GCC diagnostic pop EXPECT_EQ(transfer->state(), cuc::Transfer::aborted); // Just in case transfer->abort(); delete transfer; } /* [Test store path migration] */ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" auto store_app = hub->store_for_scope_and_type( cuc::Scope::app, cuc::Type::Known::pictures()); #pragma GCC diagnostic pop QDir store_app_dir(store_app->uri()); store_app_dir.mkpath("."); QFile test_file(store_app_dir.filePath("testMigration")); test_file.open(QIODevice::WriteOnly); test_file.close(); ASSERT_TRUE(test_file.exists()); // Test twice for idempotency. for (int i = 0; i < 2; i++) { auto transfer = hub->create_import_from_peer( hub->default_source_for_type(cuc::Type::Known::pictures())); #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" transfer->setStore(store_app); #pragma GCC diagnostic pop auto store_service = transfer->store(); EXPECT_NE(store_app->uri(), store_service.uri()); // QFile::symLinkTarget() "returns an empty string if the fileName // does not correspond to a symbolic link". EXPECT_EQ(QFile::symLinkTarget(store_app->uri()), store_service.uri()); EXPECT_TRUE(test_file.exists()); EXPECT_TRUE(QFile::exists(store_service.uri() + "/testMigration")); transfer->abort(); delete transfer; } hub->quit(); }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); return testing::Test::HasFailure(); }; EXPECT_EQ(EXIT_SUCCESS, test::fork_and_run(child, parent)); } content-hub-1.1.1/tests/acceptance-tests/app_hub_communication_stores.cpp000066400000000000000000000154271456121157600270170ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include #include #include "com/lomiri/content/detail/peer_registry.h" #include "com/lomiri/content/detail/service.h" #include "com/lomiri/content/serviceadaptor.h" #include #include #include #include #include #include #include namespace cua = com::lomiri::ApplicationManager; namespace cuc = com::lomiri::content; namespace cucd = com::lomiri::content::detail; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { QString service_name{"com.lomiri.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; } TEST(Hub, stores_are_reported_correctly_to_clients) { test::CrossProcessSync sync; auto parent = [&sync]() { int argc = 0; QCoreApplication app{argc, nullptr}; QDBusConnection connection = QDBusConnection::sessionBus(); QSharedPointer registry{new MockedPeerRegistry{}}; auto app_manager = QSharedPointer(new MockedAppManager()); cucd::Service implementation(connection, registry, app_manager, &app); new ServiceAdaptor(std::addressof(implementation)); connection.registerService(service_name); connection.registerObject("/", std::addressof(implementation)); QObject::connect(&app, &QCoreApplication::aboutToQuit, [&](){ connection.unregisterObject("/"); connection.unregisterService(service_name); }); // Make sure we signal readiness after the event loop has started. QTimer::singleShot(0 /* msec */, [&sync]() { sync.signal_ready(); }); app.exec(); }; auto child = [&sync]() { sync.wait_for_signal_ready(); test::TestHarness harness; harness.add_test_case([]() { auto hub = cuc::Hub::Client::instance(); // Directly testing deprecated functionality. #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" auto system_wide_pictures_store = hub->store_for_scope_and_type(cuc::Scope::system, cuc::Type::Known::pictures()); auto system_wide_music_store = hub->store_for_scope_and_type(cuc::Scope::system, cuc::Type::Known::music()); auto system_wide_documents_store = hub->store_for_scope_and_type(cuc::Scope::system, cuc::Type::Known::documents()); auto users_pictures_store = hub->store_for_scope_and_type(cuc::Scope::user, cuc::Type::Known::pictures()); auto users_music_store = hub->store_for_scope_and_type(cuc::Scope::user, cuc::Type::Known::music()); auto users_documents_store = hub->store_for_scope_and_type(cuc::Scope::user, cuc::Type::Known::documents()); auto apps_pictures_store = hub->store_for_scope_and_type(cuc::Scope::app, cuc::Type::Known::pictures()); auto apps_music_store = hub->store_for_scope_and_type(cuc::Scope::app, cuc::Type::Known::music()); auto apps_documents_store = hub->store_for_scope_and_type(cuc::Scope::app, cuc::Type::Known::documents()); #pragma GCC diagnostic pop EXPECT_EQ(system_wide_pictures_store->uri(), "/content/Pictures"); EXPECT_EQ(system_wide_music_store->uri(), "/content/Music"); EXPECT_EQ(system_wide_documents_store->uri(), "/content/Documents"); auto ups = QStandardPaths::writableLocation(QStandardPaths::PicturesLocation); auto ums = QStandardPaths::writableLocation(QStandardPaths::MusicLocation); auto uds = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); EXPECT_EQ(users_pictures_store->uri(), ups); EXPECT_EQ(users_music_store->uri(), ums); EXPECT_EQ(users_documents_store->uri(), uds); auto aps = QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + "/Pictures"; auto ams = QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + "/Music"; auto ads = QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + "/Documents"; EXPECT_EQ(apps_pictures_store->uri(), aps); EXPECT_EQ(apps_music_store->uri(), ams); EXPECT_EQ(apps_documents_store->uri(), ads); hub->quit(); }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); return testing::Test::HasFailure(); }; EXPECT_EQ(EXIT_SUCCESS, test::fork_and_run(child, parent)); } content-hub-1.1.1/tests/acceptance-tests/app_hub_communication_transfer.cpp000066400000000000000000000247341456121157600273250ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include #include #include #include #include "com/lomiri/content/detail/peer_registry.h" #include "com/lomiri/content/detail/service.h" #include "com/lomiri/content/serviceadaptor.h" #include #include #include #include #include #include #include #include namespace cua = com::lomiri::ApplicationManager; namespace cuc = com::lomiri::content; namespace cucd = com::lomiri::content::detail; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { QString service_name{"com.lomiri.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; } TEST(Hub, transfer_creation_and_states_work) { using namespace ::testing; test::CrossProcessSync sync; QTemporaryDir home_dir; QString home_path = home_dir.path(); qputenv("HOME", home_path.toLocal8Bit()); auto parent = [&sync]() { int argc = 0; QCoreApplication app{argc, nullptr}; QString default_peer_id{"com.does.not.exist.anywhere.application"}; QDBusConnection connection = QDBusConnection::sessionBus(); auto mock = new ::testing::NiceMock{}; EXPECT_CALL(*mock, default_source_for_type(_)). Times(AtLeast(1)). WillRepeatedly(Return(cuc::Peer{default_peer_id})); QSharedPointer registry{mock}; auto app_manager = QSharedPointer(new MockedAppManager()); cucd::Service implementation(connection, registry, app_manager, &app); new ServiceAdaptor(std::addressof(implementation)); connection.registerService(service_name); connection.registerObject("/", std::addressof(implementation)); QObject::connect(&app, &QCoreApplication::aboutToQuit, [&](){ connection.unregisterObject("/"); connection.unregisterService(service_name); }); // Make sure we signal readiness after the event loop has started. QTimer::singleShot(0 /* msec */, [&sync]() { sync.signal_ready(); }); app.exec(); }; auto child = [&sync, home_path]() { int argc = 0; QCoreApplication app(argc, nullptr); auto app_name = QStringLiteral("com.some.test.app"); app.setApplicationName(app_name); qputenv("APP_ID", app_name.toLocal8Bit()); sync.wait_for_signal_ready(); test::TestHarness harness; harness.add_test_case([&home_path, &app_name]() { QVector source_items; source_items << cuc::Item(); source_items[0].setName("name3"); source_items[0].setText("data3"); /* Work around issue of charging the transfer when run under sbuild */ if (qgetenv("CONTENT_HUB_TESTING").isEmpty()) { source_items << cuc::Item(QUrl::fromLocalFile(QFileInfo("file1").absoluteFilePath())); source_items[1].setName("name1"); source_items << cuc::Item(QUrl::fromLocalFile(QFileInfo("file2").absoluteFilePath())); source_items[2].setName("name2"); } QVector expected_items; expected_items << cuc::Item(); expected_items[0].setName("name3"); expected_items[0].setText("data3"); /* Work around issue of charging the transfer when run under sbuild */ if (qgetenv("CONTENT_HUB_TESTING").isEmpty()) { expected_items << cuc::Item(QUrl("file://" + home_path + "/.local/share/" + app_name + "/Pictures/file1")); expected_items[1].setName("name1"); expected_items << cuc::Item(QUrl("file://" + home_path + "/.local/share/" + app_name + "/Pictures/file2")); expected_items[2].setName("name2"); } /** [Importing pictures] */ auto hub = cuc::Hub::Client::instance(); auto transfer = hub->create_import_from_peer( hub->default_source_for_type(cuc::Type::Known::pictures())); ASSERT_TRUE(transfer != nullptr); EXPECT_EQ(cuc::Transfer::created, transfer->state()); ASSERT_FALSE(hub->has_pending(transfer->destination())); EXPECT_TRUE(transfer->setSelectionType(cuc::Transfer::SelectionType::multiple)); ASSERT_EQ(cuc::Transfer::SelectionType::multiple, transfer->selectionType()); transfer->setStore(cuc::Scope::app, cuc::Type::Known::pictures().id()); EXPECT_TRUE(transfer->start()); EXPECT_EQ(cuc::Transfer::initiated, transfer->state()); ASSERT_TRUE(hub->has_pending(transfer->destination())); EXPECT_TRUE(transfer->setSelectionType(cuc::Transfer::SelectionType::single)); ASSERT_EQ(cuc::Transfer::SelectionType::multiple, transfer->selectionType()); EXPECT_TRUE(transfer->charge(source_items)); EXPECT_EQ(cuc::Transfer::charged, transfer->state()); EXPECT_EQ(expected_items, transfer->collect()); /** [Importing pictures] */ /** Test that the transfer aborts when destination file exists */ auto dupe_transfer = hub->create_import_from_peer( hub->default_source_for_type(cuc::Type::Known::pictures())); ASSERT_TRUE(dupe_transfer != nullptr); EXPECT_EQ(cuc::Transfer::created, dupe_transfer->state()); EXPECT_TRUE(dupe_transfer->setSelectionType(cuc::Transfer::SelectionType::multiple)); ASSERT_EQ(cuc::Transfer::SelectionType::multiple, dupe_transfer->selectionType()); dupe_transfer->setStore(cuc::Scope::app, cuc::Type::Known::pictures().id()); EXPECT_TRUE(dupe_transfer->start()); EXPECT_EQ(cuc::Transfer::initiated, dupe_transfer->state()); EXPECT_TRUE(dupe_transfer->charge(source_items)); // FIX ME: Figure out why it does not abort //EXPECT_EQ(cuc::Transfer::aborted, dupe_transfer->state()); /* end dest exists test */ /* Test that only a single transfer exists for the same peer */ auto single_transfer = hub->create_import_from_peer( hub->default_source_for_type(cuc::Type::Known::pictures())); ASSERT_TRUE(single_transfer != nullptr); EXPECT_EQ(cuc::Transfer::created, single_transfer->state()); EXPECT_TRUE(single_transfer->start()); EXPECT_EQ(cuc::Transfer::initiated, single_transfer->state()); auto second_transfer = hub->create_import_from_peer( hub->default_source_for_type(cuc::Type::Known::pictures())); ASSERT_TRUE(second_transfer != nullptr); EXPECT_EQ(cuc::Transfer::created, second_transfer->state()); /* Now that a second transfer was created, the previous * transfer should have been aborted */ EXPECT_EQ(cuc::Transfer::aborted, single_transfer->state()); /* end single transfer test */ /* Test create_import_from_peer_for_type */ auto type_transfer = hub->create_import_from_peer_for_type( hub->default_source_for_type(cuc::Type::Known::pictures()), cuc::Type::Known::pictures()); ASSERT_TRUE(type_transfer != nullptr); EXPECT_EQ(cuc::Transfer::created, type_transfer->state()); EXPECT_TRUE(transfer->setSelectionType(cuc::Transfer::SelectionType::multiple)); ASSERT_EQ(cuc::Transfer::SelectionType::multiple, transfer->selectionType()); EXPECT_TRUE(type_transfer->start()); EXPECT_EQ(cuc::Transfer::initiated, type_transfer->state()); ASSERT_EQ(cuc::Type::Known::pictures().id(), type_transfer->contentType()); EXPECT_TRUE(type_transfer->abort()); EXPECT_EQ(cuc::Transfer::aborted, type_transfer->state()); /* end create_import_from_peer_for_type test */ hub->quit(); }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); return testing::Test::HasFailure(); }; EXPECT_EQ(EXIT_SUCCESS, test::fork_and_run(child, parent)); } content-hub-1.1.1/tests/acceptance-tests/app_manager_mock.h000066400000000000000000000026201456121157600237740ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "com/lomiri/applicationmanager/application_manager.h" #include #include namespace cua = com::lomiri::ApplicationManager; namespace { struct MockedAppManager : public cua::ApplicationManager { MockedAppManager() : cua::ApplicationManager() { using namespace ::testing; ON_CALL(*this, invoke_application(_,_)).WillByDefault(Return(true)); ON_CALL(*this, stop_application(_)).WillByDefault(Return(true)); ON_CALL(*this, is_application_started(_)).WillByDefault(Return(true)); } MOCK_METHOD2(invoke_application, bool(const std::string &, gchar ** uris)); MOCK_METHOD1(stop_application, bool(const std::string &)); MOCK_METHOD1(is_application_started, bool(const std::string &)); }; } content-hub-1.1.1/tests/acceptance-tests/bad.json000066400000000000000000000000771456121157600217650ustar00rootroot00000000000000{ "source": [ "pictures", "music", ] } content-hub-1.1.1/tests/acceptance-tests/glib_test.cpp000066400000000000000000000206111456121157600230200ustar00rootroot00000000000000/* * Copyright © 2016 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: William Hua */ /* modified from app_hub_communication_paste.cpp */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include "com/lomiri/content/detail/peer_registry.h" #include "com/lomiri/content/detail/service.h" #include "com/lomiri/content/serviceadaptor.h" #include #include #include #include #include #include #include #include #include #include #include "glib/content-hub-glib.h" namespace cua = com::lomiri::ApplicationManager; namespace cuc = com::lomiri::content; namespace cucd = com::lomiri::content::detail; QString service_name{"com.lomiri.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; static const gchar *SERVICE_NAME = "com.lomiri.content.dbus.Service"; static const gchar *SERVICE_PATH = "/"; static const gchar *APPLICATION_ID = "com.lomiri.content.glib_test"; static const gchar *HANDLER_PATH = "/com/lomiri/content/handler"; static const gchar *SURFACE_ID = "01234567-0123-0123-0123-0123456789ab"; static const gchar * const PASTE_FORMATS[] = { "text/plain", "text/html", NULL }; static const gint N_PASTE_FORMATS = sizeof (PASTE_FORMATS) / sizeof (PASTE_FORMATS[0]) - 1; static const gchar PASTE_DATA[] = "text/plain" "plain text" "text/html" "

html text

"; static const gint N_PASTE_DATA = sizeof (PASTE_DATA) / sizeof (PASTE_DATA[0]) - 1; static gboolean pasteboard_changed; static void pasteboard_changed_cb (ContentHubService* /* service */, gpointer user_data) { GMainLoop *main_loop = (GMainLoop *) user_data; pasteboard_changed = TRUE; g_main_loop_quit (main_loop); } static gboolean timed_out_cb (gpointer user_data) { GMainLoop *main_loop = (GMainLoop *) user_data; g_main_loop_quit (main_loop); return G_SOURCE_CONTINUE; } static void set_paste (ContentHubService *service) { GMainLoop *main_loop; guint timeout_id; g_assert_false (pasteboard_changed); main_loop = g_main_loop_new (NULL, FALSE); timeout_id = g_timeout_add (1000, timed_out_cb, main_loop); g_signal_connect ( service, "pasteboard-changed", G_CALLBACK (pasteboard_changed_cb), main_loop); g_assert_true ( content_hub_service_call_create_paste_sync ( service, APPLICATION_ID, SURFACE_ID, g_variant_new_fixed_array (G_VARIANT_TYPE_BYTE, PASTE_DATA, sizeof (PASTE_DATA) - 1, sizeof (guchar)), PASTE_FORMATS, NULL, NULL, NULL)); g_main_loop_run (main_loop); g_source_remove (timeout_id); g_clear_pointer (&main_loop, g_main_loop_unref); g_assert_true (pasteboard_changed); pasteboard_changed = FALSE; } static void get_paste (ContentHubService *service) { gchar **formats; GVariant *variant; gconstpointer data; gsize size; gint i; g_assert_true ( content_hub_service_call_paste_formats_sync ( service, &formats, NULL, NULL)); g_assert_cmpint (g_strv_length (formats), ==, N_PASTE_FORMATS); for (i = 0; i < N_PASTE_FORMATS; i++) g_assert_cmpstr (formats[i], ==, PASTE_FORMATS[i]); g_strfreev (formats); g_assert_true ( content_hub_service_call_get_latest_paste_data_sync ( service, SURFACE_ID, &variant, NULL, NULL)); data = g_variant_get_fixed_array (variant, &size, sizeof (guchar)); g_assert_cmpint (size, ==, N_PASTE_DATA); g_assert_cmpint (memcmp (data, PASTE_DATA, N_PASTE_DATA), ==, 0); } int glib_test (int /* argc */, char *[] /* argv */) { GDBusConnection *session; ContentHubService *service; ContentHubHandler *handler; session = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL); service = content_hub_service_proxy_new_sync ( session, G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES, SERVICE_NAME, SERVICE_PATH, NULL, NULL); g_assert_nonnull (service); handler = content_hub_handler_skeleton_new (); g_assert_true ( g_dbus_interface_skeleton_export ( G_DBUS_INTERFACE_SKELETON (handler), session, HANDLER_PATH, NULL)); g_object_unref (session); g_assert_true ( content_hub_service_call_register_import_export_handler_sync ( service, APPLICATION_ID, HANDLER_PATH, NULL, NULL)); g_assert_true ( content_hub_service_call_handler_active_sync ( service, APPLICATION_ID, NULL, NULL)); set_paste (service); get_paste (service); g_assert_true ( content_hub_service_call_quit_sync ( service, NULL, NULL)); g_dbus_interface_skeleton_unexport (G_DBUS_INTERFACE_SKELETON (handler)); g_object_unref (handler); g_object_unref (service); return 0; } /* modified from app_hub_communication_paste.cpp */ TEST(GLib, glib_test) { using namespace ::testing; test::CrossProcessSync sync; auto parent = [&sync]() { int argc = 0; QCoreApplication app{argc, nullptr}; QDBusConnection connection = QDBusConnection::sessionBus(); auto mock = new ::testing::NiceMock{}; QSharedPointer registry{mock}; auto app_manager = QSharedPointer(new MockedAppManager()); cucd::Service implementation(connection, registry, app_manager, &app); new ServiceAdaptor(std::addressof(implementation)); ASSERT_TRUE(connection.registerService(service_name)); ASSERT_TRUE(connection.registerObject("/", std::addressof(implementation))); // Make sure we signal readiness after the event loop has started. QTimer::singleShot(0 /* msec */, [&sync]() { sync.signal_ready(); }); app.exec(); connection.unregisterObject("/"); connection.unregisterService(service_name); }; auto child = [&sync]() { int argc = 0; QCoreApplication app(argc, nullptr); sync.wait_for_signal_ready(); test::TestHarness harness; harness.add_test_case([]() { char arg0[] = "glib_test"; char *argv[] = { arg0 }; EXPECT_EQ(0, glib_test(1, argv)); }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); return testing::Test::HasFailure(); }; EXPECT_EQ(EXIT_SUCCESS, test::fork_and_run(child, parent)); } content-hub-1.1.1/tests/acceptance-tests/good.json000066400000000000000000000000761456121157600221660ustar00rootroot00000000000000{ "source": [ "pictures", "music" ] } content-hub-1.1.1/tests/acceptance-tests/mimedata_test.cpp000066400000000000000000000031031456121157600236610ustar00rootroot00000000000000/* * Copyright (C) 2014-2016 Canonical, Ltd. * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License version 3, as published by * the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include #include "../../src/com/lomiri/content/utils.cpp" #include TEST(PasteBoardTest, MimeDataSerialization) { QMimeData mimeData; mimeData.setData("text/plain", "Hello World!"); mimeData.setData("text/html", "Hello World!"); QByteArray serializedMimeData = serializeMimeData(const_cast(mimeData)); ASSERT_TRUE(serializedMimeData.size() > 0); QMimeData *deserializedMimeData = deserializeMimeData(serializedMimeData); ASSERT_TRUE(deserializedMimeData != nullptr); ASSERT_TRUE(deserializedMimeData->hasFormat("text/plain")); ASSERT_EQ(mimeData.data("text/plain"), deserializedMimeData->data("text/plain")); ASSERT_TRUE(deserializedMimeData->hasFormat("text/html")); ASSERT_EQ(mimeData.data("text/html"), deserializedMimeData->data("text/html")); delete deserializedMimeData; } content-hub-1.1.1/tests/acceptance-tests/source_all.json000066400000000000000000000000501456121157600233560ustar00rootroot00000000000000{ "source": [ "all" ] } content-hub-1.1.1/tests/acceptance-tests/test_harness.h000066400000000000000000000025531456121157600232200ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef TEST_HARNESS_H_ #define TEST_HARNESS_H_ #include #include #include #include namespace test { class TestHarness : public QObject { Q_OBJECT public: TestHarness(QObject* parent = nullptr) : QObject(parent) { } virtual ~TestHarness() { } void add_test_case(const std::function& test_case) { known_test_cases.push_back(test_case); } private: std::list> known_test_cases; private Q_SLOTS: void run() { for(auto test_case : known_test_cases) { test_case(); } } }; } #endif // TEST_HARNESS_H_ content-hub-1.1.1/tests/acceptance-tests/test_registry_updater.cpp000066400000000000000000000060341456121157600255020ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include "com/lomiri/content/detail/peer_registry.h" #include "com/lomiri/content/service/registry-updater.h" #include #include #include namespace cuc = com::lomiri::content; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { struct MockedRegistry : public cuc::detail::PeerRegistry { MockedRegistry() : PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, remove_peer(_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; } TEST(RegistryUpdater, parse_json) { using namespace ::testing; auto mock = new MockedRegistry{}; EXPECT_CALL(*mock, install_source_for_type(_,_)). Times(Exactly(3)). WillRepeatedly(Return(true)); QFileInfo f("good.json"); auto mock_ptr = QSharedPointer(mock); cucd::RegistryUpdater *updater = new cucd::RegistryUpdater(mock_ptr); EXPECT_TRUE(updater->add_peer(f)); f.setFile("bad.json"); EXPECT_FALSE(updater->add_peer(f)); f.setFile("source_all.json"); EXPECT_TRUE(updater->add_peer(f)); mock_ptr.clear(); } content-hub-1.1.1/tests/acceptance-tests/test_types.cpp000066400000000000000000000030621456121157600232500ustar00rootroot00000000000000/* * Copyright © 2015 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include namespace cuc = com::lomiri::content; TEST(Types, id_documents) { EXPECT_EQ(cuc::Type::Known::documents().id(), "documents"); } TEST(Types, id_pictures) { EXPECT_EQ(cuc::Type::Known::pictures().id(), "pictures"); } TEST(Types, id_music) { EXPECT_EQ(cuc::Type::Known::music().id(), "music"); } TEST(Types, id_contacts) { EXPECT_EQ(cuc::Type::Known::contacts().id(), "contacts"); } TEST(Types, id_videos) { EXPECT_EQ(cuc::Type::Known::videos().id(), "videos"); } TEST(Types, id_links) { EXPECT_EQ(cuc::Type::Known::links().id(), "links"); } TEST(Types, id_ebooks) { EXPECT_EQ(cuc::Type::Known::ebooks().id(), "ebooks"); } TEST(Types, id_text) { EXPECT_EQ(cuc::Type::Known::text().id(), "text"); } TEST(Types, id_events) { EXPECT_EQ(cuc::Type::Known::events().id(), "events"); } content-hub-1.1.1/tests/acceptance-tests/test_utils.cpp000066400000000000000000000022241456121157600232430ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "com/lomiri/content/utils.cpp" #include void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } QString temp_path{"/tmp/.cache/testing/HubIncoming/1"}; TEST(Utils, purge_store_cache) { using namespace ::testing; QDir temp_store(temp_path); temp_store.mkpath(temp_store.absolutePath()); EXPECT_TRUE(purge_store_cache(temp_store.absolutePath())); EXPECT_FALSE(temp_store.exists()); } content-hub-1.1.1/tests/cross_process_sync.h000066400000000000000000000031031456121157600212030ustar00rootroot00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef CROSS_PROCESS_SYNC_H_ #define CROSS_PROCESS_SYNC_H_ #include #include #include namespace test { struct CrossProcessSync { static const int read_fd = 0; static const int write_fd = 1; CrossProcessSync() { if (pipe(fds) < 0) throw std::runtime_error(strerror(errno)); } ~CrossProcessSync() noexcept { ::close(fds[0]); ::close(fds[1]); } void signal_ready() { int value = 42; if (!write(fds[write_fd], std::addressof(value), sizeof(value))) throw std::runtime_error(::strerror(errno)); } void wait_for_signal_ready() const { int value; if (!read(fds[read_fd], std::addressof(value), sizeof(value))) throw std::runtime_error(::strerror(errno)); } int fds[2]; }; } #endif // CROSS_PROCESS_SYNC_H_ content-hub-1.1.1/tests/fork_and_run.h000066400000000000000000000033011456121157600177270ustar00rootroot00000000000000/* * Copyright © 2012-2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef FORK_AND_RUN_H_ #define FORK_AND_RUN_H_ #include #include #include #include #include #include namespace test { bool is_child(pid_t pid) { return pid == 0; } int wait_for_child(int pid) { int status; if (0 > waitpid( pid, &status, 0)) return -1; if (WIFEXITED(status)) return WEXITSTATUS(status); else return -2; } int fork_and_run(std::function child, std::function parent) { auto pid = fork(); if (pid < 0) { throw std::runtime_error(std::string("Could not fork child: ") + std::strerror(errno)); } if (is_child(pid)) { int err = child(); _exit(err); return err ? EXIT_FAILURE : EXIT_SUCCESS; } else { parent(); int err = wait_for_child(pid); kill(pid, SIGKILL); return err ? EXIT_FAILURE : EXIT_SUCCESS; } return EXIT_FAILURE; } } #endif // FORK_AND_RUN_H_ content-hub-1.1.1/tests/peers/000077500000000000000000000000001456121157600162305ustar00rootroot00000000000000content-hub-1.1.1/tests/peers/CMakeLists.txt000066400000000000000000000013771456121157600210000ustar00rootroot00000000000000# Copyright © 2014 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine add_subdirectory(exporter) add_subdirectory(importer) add_subdirectory(sharer) add_subdirectory(data) content-hub-1.1.1/tests/peers/data/000077500000000000000000000000001456121157600171415ustar00rootroot00000000000000content-hub-1.1.1/tests/peers/data/CMakeLists.txt000066400000000000000000000014741456121157600217070ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine install( FILES webbrowser-app.png clock.png Joker.vcf Stark,_Tony.vcf "Music Ringtone.ogg" DESTINATION ${CMAKE_INSTALL_DATADIR}/content-hub/testability/data ) content-hub-1.1.1/tests/peers/data/Joker.vcf000066400000000000000000000073161456121157600207220ustar00rootroot00000000000000BEGIN:VCARD VERSION:3.0 UID:pas-id-53A9848000000000 TEL;TYPE=WORK,VOICE;X-EVOLUTION-UI-SLOT=1:(866) 467-8289 URL: TITLE: ROLE: X-EVOLUTION-MANAGER: X-EVOLUTION-ASSISTANT: NICKNAME: X-EVOLUTION-SPOUSE: NOTE: FN:Joker N:;Joker;;; X-EVOLUTION-FILE-AS:Joker X-EVOLUTION-BLOG-URL: CALURI: FBURL: X-EVOLUTION-VIDEO-URL: X-MOZILLA-HTML:FALSE PHOTO;TYPE="X-EVOLUTION-UNKNOWN";ENCODING=b:/9j/4AAQSkZJRgABAQAAAQABAAD/2wB DAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0H yc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjI yMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCABIAGADASIAAhEBAxEB/8QAHwAAAQUBAQEBA QEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1F hByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV 1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usL DxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAA AAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoE IFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZ GVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcb HyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDwalApKdQAlLRUk KCSQKelAF/S9Bv9YfbaRZA+8xOAB7npXa6J4F06EPJql8rYGdsYJOB6cY/HNO8O2d/rD2mkWka 26MwDlRwF/vH34Nes6j4Pt9P8JXOn2O/zBH80p+8x6kmseds1jFdTze41rTtLhEWlWkccKnh4Q Q3/AAInOfwNVYtXsdTdYry0SbOcbyFx+JP+P0NYUkPl53hwVbDEhhx6VUu1DwqVtxGScGQEg+n I6ZrG+o5MZ4g8OpBPNcac/mQAkmI/eT6eoHrXM10sFzLY3aLFKQOzJxkH3rK1a3SO582PiOUkh fQ9/wAK3pzvozNrqZ1JS0VqSFKBRT0Us4UUAKsbMeBViCMxSqWQOPQ13Phn4ca7rSJJFps6xNy JZV2L+Zxn8Kd4o8ITeE9QitdR2t5sYcNF8wxkg8kdRik9gOw+Elp5mpz3LtgIqooz2OTgfrXs6 xrJkOTluoIr5+sUuYPDUF3o14sMy6mIVlcmMAbAQTntkn869n8La/8A21pwjvIjBqMQxcQ54z/ eUjsexFZJWRstjlPHHw7GpB7uxVM5yyDA/I15Ne2q20lxayo6SRxhPqw45HfIr6fZtqbSr7e7M R/P/GvKfiPptobe4lESCR5I/wB5j7pOR/IConEb1R4sYWKsGKkR9PYGo7pVfT5CwOFOR6g/5zU 7PIqM5QqScj3U9qhaMyWkoIz8h/8A10o7kMwqSlxjiiuozAV3Hw1iltPGmnzTxhY5GMYJwG3MP l2+h3Y/AmuNtVDXC5GQOSK2Ev5oZ45IXIkjYOrDsQcimknuVFdT61n1iW41BEsSDbhWUtjkyfK Rx3G05/EVwPxjgnk8J6XqzKiXMT+XME9GHJGedu4D/voUXnxN0G8sof7Kuba3u28szGbeu3gBl HY4x1z/AA+9XbsR+KPhpfLJrEGpTygx7oRuCyAEomAPl+YIc4HH1o2Er3MH4VWmna74Gv7G+Y7 BdF3YHBU4yDn1rttM8F6botndtYGZXmj8sSNIQ3r26YPpXjHwp8RS6Tfajbi2M8RjE7qD8yqpA YqOhPI/KvaNP8Y6Xe28UL6lbwY6i4bYxH4nk/TNZyavZm3JK3MlocBLc+NtJMmmg6u94rHy5Y3 Ekci9shgcY9jVzxUXXwvHFr98jag0e4sSqljnpx1/nXa33jWxhV/sp+0vEuXnjZfKQHOC0nQe4 689K8A8Y+KxrmuyuGMkcQKxyYxuJPJx6dMfSp32Bprcy2fe3Q5AP3vu49ar3UcrIfsxBT+70Jp BcBoip4I5X374NVzds7ArwB6UU6Wt5EoyZI3SQh0KN6EYptdAs0c6bJ0Vx7isq/tkglBizsPYn pW7jYiUbajLUYBb1OK0o4pAqkQZ3AEM/wB3nt79qz4ABbgnuasreTm4y7vvHyghsYHoPSnEaJ7 tb+zCNKpVTyqsowPwpINU1GGyltob6eO2mOZIY5CqMemSo4NNvvICgp5nmj7zbiR+tVrZQyOxP fFNldTU8LeILnw34ntNUtlWR4ywaNzxIpBBB/z1xXp+qfFTwwbJ20zwuRqDqRmZEVAe/IJLD8B mvGGJSdSvUVa4dtyrhQOcjgHvWU0uouZxejNTV/Eeoa4oa7mCxIf3dtEoSKP3CjjPuefesKNj5 uW5z1qZ+IEAPJzmoQpE2PTimhK7ZcDKidDntgZqOOF2YkIVUngHtUyBgM/nTZZSsRA4Y8CtC7A wCjg8+tUrly8Yyc81JKxVcZ7YFV3OYzjpSbJkxY3zbBSOB/jU7EhlfGGwFJx3FFFKIkSzXrSWy 2iDaucsfU0kEBSLJOSaKKq5SIyu66jHqcVMp+YgL97kA+tFFZz3JluIiAgFuSWwKiU5uHPvRRS phDcuofWoHxJMf7qfzoorRlsq3Bzx0zjFRycRYoopEM//2Q== ADR;TYPE=HOME:;;1931 Yeager Ave;La Verne;CA;91750;USA LABEL;TYPE=HOME:1931 Yeager Ave\nLa Verne\, CA\n91750\nUSA REV:2014-06-24T14:01:20Z(2) EMAIL;TYPE=WORK;X-EVOLUTION-UI-SLOT=1:joker@worker.com EMAIL;TYPE=HOME;X-EVOLUTION-UI-SLOT=2:joker@home.com EMAIL;TYPE=OTHER;X-EVOLUTION-UI-SLOT=3:joker@other.com X-AIM;TYPE=HOME;X-EVOLUTION-UI-SLOT=1:joker@aim.com X-YAHOO;TYPE=HOME;X-EVOLUTION-UI-SLOT=2:joker@yahoo.com X-MSN;TYPE=HOME;X-EVOLUTION-UI-SLOT=3:joker@msn.com X-ICQ;TYPE=HOME;X-EVOLUTION-UI-SLOT=4:joke@icq.com END:VCARDcontent-hub-1.1.1/tests/peers/data/Music Ringtone.ogg000066400000000000000000032177261456121157600225070ustar00rootroot00000000000000OggSC4&ƳvorbisDmOggSC4&"HSSvorbis-Xiph.Org libVorbis I 20101101 (Schaufenugget)ENCODER=libsndfilevorbis+BCV1L ŀАU`$)fI)(yHI)0c1c1c 4d( Ij9g'r9iN8 Q9 &cnkn)% Y@H!RH!b!b!r!r * 2 L2餓N:騣:(B -JL1Vc]|s9s9s BCV BdB!R)r 2ȀАU GI˱$O,Q53ESTMUUUUu]Wvevuv}Y[}Y[؅]aaaa}}} 4d #9)"9d ")Ifjihm˲,˲ iiiiiiifYeYeYeYeYeYeYeYeYeYeYeYeY@h*@@qq$ER$r, Y@R,r4Gs4s@BDFHJLNPRT> "9@@OggS C4&\lt0a ɉN@W{p Q/-"ۏux;gWèKעz#1 7"):<r%`#zϘoy3STZ 3Z![|1&;UNAj7nsuȑ@9#"_ 4dz1&HaHC-QA͞ݼٴџ~_w_______~͇7~nW;G5juȈ(q?[?_Lr?~zZ8myL~rʟuu?}ҽlq]3Xnlmdyv? קoo~{}qקqz_߮?^xLՆȧ[xVk|:gUӳ]C^~9|{.R6>]G6OsGIqݼ>znsߑU"p:Dc~ 䏥>.=gUi+SVWR4*맋Q9zeg_GBwWVq|׺}@ܽ&sZ3<{NʤJMfd%Vg&wS[> ΁ٚt=Sr8s&kQLOI>WH^D̚N-^dE=Cgٳ&t6!Q%8d>;g~Ks~O\?x>!9l-W+DpJ_= a)ۘ}3+Ey_uPW=, @kXwR)k$r4o[` :"&?<ǿVSo-4_"QᏻuE[.ow7\c?PmdFn5.=|?r.MMϐǍM{~/8}iTV8#({c^c0e> 1Y?BbJXh!]Xa]_[R8i~<>fC{ȵcƨWsi-_Uj O,h?.mlO 'l'>>42 \n'#4Ub'a{#x./~<%]n}69SBKw*x{\寧֡ݳ=O0f8 oHF#y4j%HiӘp@}j~NKaU~uVn=[R`έCv8>Bh⋴W9:z>Կz$J'PK|{oUI,-x(c^\?QGoHޜ|Eo Α..'Rw0›0oU?^?(X=% Z6VȜ_y*V[sߑ4wQe`srIŽVq8k>%p 0I-Q۽oBX[S<}g<%`:kld5`]ό=k\"2jT.ħQl J^bh?8ڴ`L fx~*u&y5nxŁ3;",pS;BA؄H6|<=vud9I/(}}_ys]Ǒͪj޸~v}[WE7i{:qz|8{z|y Z>enGX5g"?u+Ŕ͆tC uw+!ͻQ_-,VK{BК- sI&Y\=qQ 2  `o\4hoSA8Dŕv=rvQ+$sb/DmH&rxva0i؍]bQ6bb)vGZuCL5N[iMjEԊEݴXl],b5'{t2G9jhAD&<0E{BKWӷZtD6 2D@rƹ&aEmηG{޽OW*%NB Qzѩ$& J^t2 l<a,X۵$@Qb] De%mEUŢb抃(`X0"&e-xUZJ}{yQ+!#Yqo4SV/Mmã׮iA|VCf ~#&n+K:wp *Fm^ k#t'9v 6SJ5.!%JӼpn*On+>ߟͪ])2w^̍0t[mM3YEf\Gu/0sj!|a)cԕtb,tM{ޔq0hAh\]e=3]jԪ5Ir Jv7\)N%ů5p@CB35]T|# E"8VW%s]^A|sJw˚r˗v7%+%ls'z|5 *Ϭ@|Գ1rMŊhhL< o%UY%_"9;T^W&4-T${Krc ý1IߣCJJ W; Di'Ϝ4YSDU᯾)EgqS<)|ԝŀR]BdZ$v|9yEtg49 cEo>kYmֵ) c7`PCcROQ~5ѓ{JQuӌЇt'}3o|\g,0-,<ͶBs9+,yLߡ/Hu`W`gG@ܶU{.5TS6ˇZ LHqJa 0bYF켺vQFE5"A=If=;)fWm =-VxqއЧ</߉WkMïV˕Ԝ7-USฝJCKc%BvcTѺWPWjSJ:WnfE9ʻG]G,ENU=bq%5J]3WNl^'ci1x}nt2qU6_r iu ;{ŻZK`{?=)7L,BI˸NJ?a>^yQ~a?^Wq\ۿPƤ{^T3קz"Q%EEVŞVJ\I.7v;?c76칙_7ϝ:Nѧ_S~Z<}>&w;?~oVuYMJu,}U펒7^6.=k};{J |H|R=ܼ q14 U] [[:NW`ǀ 3x$':lU$?=-('\|_ƫjVđL(z=W[YZ65ksizV/@ 5Gߺ~W+d4=|#R7k## AG&j-7mm"뭥.!Ҷ7J;^Obp"c w&N`T2[Tȥ{/'x:/+j֡7.G%%iʱ@HzY'}RiJDr4Zb;N9J~9_.G_\gO1tRGǻOfsgkKCZIɒ^9lNwӶə_8ԲOggS@C4&JkԱx3^):T4ƳZp$ B5~!bcEu 5| )9"qE7uΧ16Z+\C2VIb?a1f/q1tm{I 9Yx8D.-Pyڀܲ{|z/ת̖֧뿑u~^j:+dĹ6ÖR]wh`fk[a+u\OD;}}q Zj"-";);Sr} ܖY"uj }.8BD7_S\&7wJwiKspoCӺ{`A1c/L(&722ʜKj3իQWxc I"Q>s○ ĵ7e5nJaNl,*v;Fs{pr=]>__ǷsU^kfZ?~k:GCϱX}/c;*V~x>oʰ1n U1TĜ%Kߝe->zPӱwN0]Qɮ-=iV]n Gcsn[@ES^ bOvSM|?k?|DO,$AZq]FG*c0lG-ïG>cwaߞ]te}u?;//=ߚD־]>I ^!ؽ>;IF]Ri~i}B%Ƣkm^qW\ˆ-2-dC+js7Z/Y il2-[QtW4+ p6LzTńL/wb>Ucʸ$ة0{<^|G#n~4/k;ռ#̚:QQe~o24 P-T_l^f:&Vhw mqփ< z::e@d F3gדβ-t#`'O٭t\Xf>$;cD;DF^-@)r( V4;6+.A:͇iKa3:١Yw!.1 Y&ӸH40|]$E4F{:ݶvŁrJyMI|~LPا6M=V4W`?9% j͗׳eY{ x>stD+)7$* ~ᇂ ֩˗e@~)?+PB~RȪ=_[-ODT Ы_5>yFK-Gm?Fad?>YRqvIlwk/1U]g8ǀ _(?o^莏DԴcaZ!|n^?ҵ͜Ie h||F~,5v>ۯΫE-ߵԯC9kZWgR+ E|v2+,;mn X͆ 9)!,vgfGo\nrl_VX RTS>*:ge(D|_\q}Ӕ|f|Ee]n4_ cnSts[b w\?ߘMj!>][[ gL{?(&ݥf-iujY.{8XM g4{-~jAU#<0SJT6NJk>HU$8Wvd/] rM[%z;ȞZvuWƂ\Z0JE2Jrz}"ѮPUie}xUǻr]znf'wǿƽ/֏׹ap}瞼Xr?׶lS/kP4?o5o,G~o8PybǶ6=stGWx#C={=+|5VN8R?Oo~gJkQ+Z8k=QWP34h\rx8 $.%}H"֌L 3Еf![l_ruzz>\>^uygqswT3L+"<$#0W/I4 T 88Ǟܲ3T)ӂ(YIJM3!8gOxݟ,RBW8Gא9k>!ٔ~># 1.Pݍ%A.mymt`Qk6XxawaM`ȧ X?8}Rvo{(*2h|#^ wsnuB1`iU<(u@oo"7}%A]" #O}:>}Mؚ ;%噝3&rmu?eMVBhB&UQ5F)x}!R촮ssu}WNtSsw0>1[j! t"馓W%gvۯ HRU&!ٖ 9g{sקؽ!Y%Yc@ 8=b޼d@!~gTkJ/㫹}W-I])# Gh%.ƻQx?C0{I}'\`5˼e_Zjd(%=x} GvE Q@@l\|8T!pMnǵDLqԟA'ʐJsN_4fFF"ϖ KjKMwH=C~vE^z=Twq?g@&S{GJz:*? *J Ĕ wh\5H84lQ 2k'HMԭY@ϹR78ωV3N ^Rs @*n`^H[4*P3VVn5s t4 4zFGX̦/~QxSC pۈF.rDG+6+ɟzTws7Ϩ/kk;RۧY^J*kWq=ػ `oëA,ޗՁ"w_ S1VKkcfeƩ4*\)Ic(r#no gY~U.?o~1n}E͚NΏ}=jt̠öSRbFFռ0W_KO 7ew1O"+YlmC}J/*YsKr}o.7I$5TjB?}h~߬vgC[PN>ܼ=M(*)u~7ƾ>q= L{Z>%}0j k9# ҄ OggS%C4&,7^(qs9O6eI)q=]7٦dL6ToWUgd1o aOg{Z FXO9>5@~WԨsWz׌$Q 1D}^Z?CEVI8ph8QC>s+9O*g,:HyO-(j{Se~y&r&|Wdz|:[ph B5Ui=J^j$hՒӠhNÈ ,?gW5Oywy<5i+@%Cz=~СgT{V\t,0PAC;kZ!l󆿣.I=PhW\fWk 㠺 @u3rf%-Ԟ$q! ]W'Fw+!kUљ!ѠqDsO#1>[ R3 dzJŸVqy:iMvCwٯ[e*kT3~Li_>F~z&š^>V\ڣ mgߧHߎRTtɡ;da_> I~r(̾ϯ+FMʗI?م>CkAw,dOXX%iTMXm;>DYQ.1i=!NwwuvMx$ƫ[n2L-pm糿<pc|1~׈MIJ9후d >{%>\VI#}jB)rʺj56NC2O76W̠ڷ3!cQWڀ7NԐ@*u啼ST`4#<ǿ=#I#ɘ{ݫp{{)57`|j~3BGlzd+ݝrd}W4Ik( H4n.T-lxMPO=BiiH +Z^dMk#: J%"dOh #Q':@O*yds>.~mx$@N\ :9)^ ՖiBJkP,A_/Q3BT 7D#4{QT+oIsWf災kԚ Z u9RjgSɝZŔ $`Z>!Z)姱xq=X򭗹4y#U3c7; fݎ׹)}Zͻ1*m/wQ?7s%J!hRұ] SO1W)}?V=_ (T^R?VK*z< 5P聆Nrw5cADqOw$EhngVPHt^zU|ګpھ -\>He+&ͯ߁,.1(cFnG{pW}L䫻^^z>9u~,F.oK 1_&jRqW>C1;a_l*!k; [k}cOvߌߚm}L_ǩݿ_qX}թ,uO["#GH7]hoS{)mboZӠb 9&zcݞO7ߊ[6xes;-35e6ZS[V#_cͱ H~mSRLiuBR|xuCb%NW8NJ̨7*QB#$n.aptћqYK;CF3jw4 F 뎙gbmidF&vIi&ʥ X D6[8) J D%?ߊ02R~XhjYm ݾpׇL[} uu͢-+v.`)^>c7e>ݷ~egȆ/+{l^Χ 7-8M -MVgUS5+puI!HSjH&Ex쓇TչCabv QɌGK JElql5@F#P@U=Lihh?[ t/yǥ[ uGrds}ۘą ]R<>M\&MLZukJLӎ Q. GD;ĞfP9:hgqzj8T!ȵ2@L3|qI:[ޓ  w$e#_uΏ{DDK3gf&Ф̔ފn΄Dw4MEp~|0Gd+1nh)fh &lѮW׮hz)2ٕ+%ٔ `sLOijsaAE&XAC^z n!4~^l37p^5,ތO)ޝ~ykJolʜQOa'joyv_.c%߇>7U Dk“E޶_'E5?-u4:"SR;?W}?pO[zxB}ۺI1~cX{"es2UL{njSHV JdH)ˈqfV>ϝv׾B8m3K}S2z~Z*}>v7Yz[ >("[ϤD/G4."DS-b*oBh/f3| Ψj ]ISh:ٰ:=y[ڪ.<ƞ%ȅ]k-Tfu.}m?\Q= P[i*59G!?o5=SꜷS΋]Z "^4O(8W3Ec)-8Dbu_F}:P[7fw. 4%7qgz0IF3;zeomM.{J|BgP^DtOggS/C4&vP,~"F)kZ"l`GGcy5\m[a{/@[~lMOTCU9{Zbz~ɛد8u)1w&%A V4 Mr=gU׬\r*^!H7ُzPg#io]TZAPC\}iòڥk}Dc׫4-9.߽_u<޸LtCe{GqjQ ekr< wJQ>P#Ue0R[/βzN=E_ 9o+I& OjWL0LJoޟO:nGg>I ya 4n(rSP d%Sj>_6!W/zR;εBA3H|֨OSL9>gs*  =&=fMjFl׫jоFbYP{Um,!*h*7c_>Y9׶>[񷷛II:~m[Cp@d2+Fjs'GCdNosՖE M})|V >=k_υr{NdRbZ[55mnP4ag&K (k䑴w(œHXGֻV2XFڭpV2bUUkksJ^Hȏ[ S!V?; 9TuLsY5.dGENW"VvFP9%ɹ1~yŁn+X\ZnReߠ#ov㵩TkG^Y<3 >avvVE":6>\h"Jb k֨asC b3X Ƃշ+K2΢v6~yqT#ݏh[-| T<;n99|6P8\s8ν?Y7}Y;ܩ\L5;&, 銪xvbCX1pCKkkSX=NqaQqmK5i(Neu8Mj]+hyՐkZcec|Qˆsd\/ _U} Q(? imCBҡvƮ:Ł2z{ =& үU8nׇe4d0cW ˴Ϸ4 ^x!GM/ "̓y!lkS~fI^Kw}_wI5:t{Xҿmt| 4xeo}bpFKY,f&շgFXg5Ȣ(j8 `2pQm~oF.{|"@ l&? OQyбmґ=Xdj=!PbeM>DN޵k{]ΧB ڏC4R.1|15,p?b`_}PTjˆ)+b85ݦSu?1G8YA5&$5wd(#jٽdɇa_z9R(?3oܷW WsSܫG~pu6~Kjž_)xy@k?w+Qݫl\GpF<<^Qie$`D2{z(Tfl56G:}~]@"7{^*S@~>bK lz,^HAotTqUQWV 򱞚.?檩pسpk=x[T>CMZ MVWȃJ^啹}">)2:׾w+`X"CG'me{G5ۧ>}RaܚZ#GtYFQ{')wˍ\Y:tQtU9 ҅h󑯫yMB8Eh`wgUvT|Ht oWS<\&\b1gS]_>ۖMӾ'u:20}LuC⚩Uv޸}#}6ͯ46T<ԑz4+V5i Vo]͘z"e0 ôPȨ!q巟+5^r1c w]8͒ jM{-{^Q0O?ꌳ#;O~BcSm ?9vX'mv;na@ D% V=$%^z*ʗ:'$j)z^yb6B+ZgV4h7# uLwlQHO60`|qͥk唍S㰟r^1q۬;ﶈ}ѵ|T2WFɌ};Uu7ۗm!y=5nGYU ~_#u9~Qx&:R.5ZaL `4\f_nΎE6>|Mj0˷Fefop}'T<1JOs*[v4jk$:veyɳգi.۵hb٢HL5k%NsgC `v N_S ˲rP*xesz0~ Z仮m1[#qӡ&M"ۉ m>?7<>Ãfa9c}3C~߶ jW\?邞K6 Dr )Z-q,K76hnVx۟Ǯogmƿ?_8/Ե"!OggS@<C4&7Ӿ1h֟i?9wTuc7w@ܬ{;m L#l`ϵqUpTTVEw0}WlbՙliVj̠5Cާd/%giJQ`+l$4΋Mu]coWHozme-{у/M%7qlO %G[FHn6fKG_6OMt/p l;q7/_lgUZ<ޜ3e>\1Ro|7nk+nzV7o',PZ9˙C&?Lcpk$Ӳfy+;b-r F&n7\^:?V|ua_(I/fLv^,NwvEz bMVedf缫bϫ=ߺi綫*sf|auk2a̴eq?~4r6ki1/'~}f+,no>V]嬭>j_u%pV da3 Z\@Gz$.Ut央X OqԕC&rڅI/Fi/H I/\fv$.><=կxZUޯ_ݍz[D ukr Zf-(8BRanz_??qGGF0[@7Qi!ڪMr w6nn}4%L ll#;2_NYt(o0j/G_0> ك9ut#l$kE,2EU缧fD$2eV_heخ57O=fUg;#VV.S7FfăfAyrzv6ˮ^܊߫ND1 tB&{7RQ=w-qtf+8).ՁTGeM6~TO;q2syǡQ^~{aB; $c]ڔ?yP'j|Z##𓗪a?Q_xr̈CzyqXG/cT/<@Rw ^&"שf­3c`)8h̟NMIȑ,AY;c|uT4 ^#IbqT&Zu+p#GaO☘ܭZh&uN~oy~=ܠZU IUY"Qz{TRT_dVFaS5xvvl-H@l;pz sv ڤ' 6j ] rw0y>nۇXOhlU8oQ"x>t4:*?/*#vl BׅW! R[Ys>(r $d:Pds C"  | \SjN{\!޷^b"3f,p& +Il#*n"T %"Wd%p 9Ii(܍u-|0k 0/^7ǧM-%4O?d`sіڣɣRj~vw.P|7pc!7<Y6 r`2i2_ T+TީxD An) X9>=eѶ@\'P}ݳݹaaa+<6(t~ eXM֯0~CUόgS~ ϋcXOqZR^ p<3H+2Qg*9:>6FJ3&w306.xbh,kCBS޽}~,B]Hs8u4*%ClKB=`Np#t֖[dsRb_ ɮa6MJ\$nKny_s#R_nlv9^U{JwC:6a9&/v^,ütϣ_z쫝=:\!Wy^\,mt?\C_>X~˪O"ıK҇e_8,G9a⃙h5 Uwܽ}6ٞ; ^ _ܩ5"+~;a&Wk?T{w2' JZ73L@M٘yqicvđ}Fۣ "VwU5"-c#j֨gWB_<z\ڽ'.-15"pZW< {Kq`ß^!i|SG_S}hZAg#(ͬ\uPf.3s70y qܾOMzDkTH5++k~"Ԩ]9rl6˯xaa|0rlZNrP}.t`*z>ReO~f}?,9 I-}ԫ})B'IGFViUh}.A1y}ɣ6f'hRl䨇H36u?_.`񜳿:}8H%VH/`̏?i_\egfOggS@LC4&fETޛϦg s3ua^~A %`R=eiH|XݟSCsh'PIz~ۯ;cuSk%H͖˖e%[$x*45r}c8X9iox-\bjE\)*3Yq3=u;s?_VTwG@(Ԡ&HPK b#"Z=:Ȏv{:_o#{e$5Gݦa@vl6;wgHGHD}eҺi#_TY -k{GqXvt]꨾IйYV^\J55u送  MG8ni卸@Z5y]1>4}awwYם~_.Yc"]~i-1n RǜT>RgF1Z}2>3q# 9ly|)%X9\s.hĪ~yha؅Fa ."qB~z,uܨqIXۍݒu!2n~k߭:.P21M5ɬH<&QH2u4K"K>ʯǎ/cPUi 1 x+'lʍM͒OO` zmf#a&:5P)(&M@n @n烧)M4ta까U[S$+Qʾ4UVݼە*3S ][rZ_{nN[sxC?MnWI RZF'Ң(:Wn gP l3JQkkfN{TY^F~`k$[ghrϽ!>"9dr[lKcf;R mҸӿrOgw%茬7ZF쟐8HPɾ|&fqk<#fA>9V|KIS@4 T'2!&GQ*Yџ/A1f]FޮDpՄR*$!IвQ /vwa7ĊL_74æ1?3~J@kl4ȷ0U&3-i7ݕdpC=F4TXVz+ǑQhW9wS?p0K fl|w S|ױ>jߝ7yÏw^ (SSRR?\ ˧'8Xp۱& |#j0׈5HJkĸ0dA"%y /YWj\@8hhmRUTw (eF4|cd CZ5뤿 8mo\V74q oIGuw͖q:?a1$(!No Dk?=Æ UׅTV}/?{hzD\ Ols[sN~sI\Gos^X(1Ga$Sg$ XϪ 7=2/;k=褻PrEN6CX`A+oۿTrU,sk?}u?+S]|~P5HGs#Sݳ|V [5yc@^do^f}fo(:<_>wNn{^ zSvM<IsVsG8s>W\~I[OF85%lsBz,$ILlONOh^<_CUji^[ r8nO,e.4  }yݟ*1f.0uDF ̕K ,$(@BehF%H'k|5+E֮rUqpJc>_z_4lɕ)h8 1cr fmILWzw޳""QؔٛlX[!Ƒ Z$y~e^sMb+el)KοfΑu{ͩ;DƿE@d]3Þ}CJt w¼]pS/tr7̴]sF[D?_<]xwuLbp-)׮2`  -7oS{I"Iqg=W|raYޯ>W@krO#\;ZUFT' f%>Z՘jdoh6h|Asc|x=#tWgn9ώVz"Є$CYT?qsu dBzHoN+gPpu״p5Öxm`ߺȅ\UxBj:v{)O{znD^!K9#ݒn请w;sO9M_غ+>7t+/ק´WcVNZ^A.OjB]h:n Ȥb6Lcڮ_ܽV}E]b.9n" uU53s=Q\"u q͏VO㽪5roLaXRv+"oC]Lqx$5c3[-k:2S]焸c;х Oә1-?Uh俻zy{qvm32R'xv(C[bFc՜v9upy'gJ.Xs24$nt<=4ե⿶0is1skM9cYT |A%9O%U"r\/89u[ ?{8{FU .Y:wM4'H^W[q@5WYw,V`m>zvu  p`g :̏]' -$M">O' uqk(!;U3>替IGK2HHf8_xj>2>h9[&3u.3_^e~Tm)f3vSk tl&ۉb/p"ҍB..z+ >:p_bR g b68W4)`65=1wY-7 ]GWܰ nB:E)ݣXl~m4LaWڴY~9zdLu^{fMZaK tpo\o eL >Km eIܪ~pyScl,`2H'{m䆺~@c܃ MX"ƀ0g=>C@6<[}Q~rbޏ|}(Mer~k;w78S=/\'[ɽykQiؤ `wQc#8{ucPz1OcB,ʭǭ[@ڝTi.`)je}V-QT}IS_|%Fwfdd}cɷٻW/$j~' "pL<ÑJh|GȮc+ 'eS-=t8&ڔ袹5z2ӳd?=IҔ.  WsUZ%\~VgUb_sB)O &*xuofӂq/[_ٓp.𩬳K*zZݦX: Q0g4~q B"%EWMh}qwȯt, B>$}Sju{zԛr/UQ**kJIùoB\R>PP8'_yxhLBI CŧOggS@\C4&Vkeي;]l&H#jˉKu&_@F:;WFdJvM\IӏfYj8^C-.ÙﵨoEy,""5s};N@%z'W}] *C_0UXqMF1X 2qB4ԵR3wmu|}.B}яۗ.>٣.!8+;Gh$}n83}Hy>C<{%OC^u32 FصQNUfUq: ʴw3EMYLՁh@;v=wwG[MjƧSPEzC FEkЄ-9J0(K]!:YpOpDv+82'^=gryPh#gR"^W*ek7*0I!p&v)ヽx=- 6]ǾgNS=b\H/4Zs~P{ST(^Cgq4St׏B{-o- MeJSpTj8 C{i*~@Ie6

|v0oO[EQV0DιzV~ "?An_rsbNV.Ƴs~ w[]AZu{U_v-SwB.q~'t 5 ݣN+[3DQifK(v}յos!sS$Vsw|I@|=tqY au * ~~*ReJ+🄫DcnV'W_ D'Er}Ahwwwɗ'_g{|xKpu5ocqG.N6ǵ;KNxq]mf E{o>;dW|88oYxmwYs|WEs> ^J8 [z_Wﰒw^ʹK_aeyq҄R~黶Gηx:k!~HPHyc 718XtȖ my8ʗy{GF'C^Z3VyҖ Kn|$}lQRYጚew8[gi5y ڮu?/1䫪6cW]ͯ]QEj7&~ |?k7^|E濶u &,*!\~+vMŨ=Zl$Q*N\^6s7W9(-0pQZD0b}nhwWe=|=kfw=ӫHNxGIV%kWK}?a]kk5c}o}.gULIU)f]ALV* F|r1'I ,oY0"u9@ SbNA@ngS&fDKGV=ڵYg2&bweL'w}~>dܞqĻP>=C fHJPėtGd$TtjQ{̨)4]?8J4UUC̢ h9r>LT "MS 4zΙK+7eH3.#@_;S?WG`|"s`=v%ɏ̄[Z~Zy#d?9sBH~_K;~l]ރ| _!߅P[ȫ.ˇFOA|vڌ֏8aW,|d.{AO3#k>Fo-W$ = B`V2.oCKصrݒ%ӘU40{Tyi|H'{-}~㏽3g6xh/v~-Γ7iZ ijYկdmim4j 12YUҤ6 uC}sW޼Hq{&޵}n-uKǍ4nhmVc%ĝ{*LGbz}>j\L[?_?ʫ4/%׃6hG\}3gL]+o)}ެˆC.+I.Ɛzrx>wΩ3!*mĻć}t 3+sFy%٬F,3Bxnc\˯)e)bs/Z*4lb Ȃ}W{T%;)R:+MʺғCLEĸe"p R:p @A+Cqj_ Dy"B-xQKq6sV1*( JRǮ nEηJ^~7oj#GkEJ}l} Ҷ~q @ 1B}wk΅5Lfޅ9\I2屗[UjsNUf˗2W| KԂx@&xӥL:eSԻޛW 63awBq;{ΚT(P&H7d*7zU" ! @f>S5JMv>[I"ST"$фO@qbfSwҢJj9+뵷w٢9u|J@_jqgz6'&APiC76LQڔW9g ;`sOd 5ӯ.vrSJi;Duy9ҩ&?FNKX9I1bR[UދfAe<']i Vws2.0:}~_sJE@GIJ{i&xbV>D6>0X V.D&z($s.X6#i㕷ߩMc7d] rS66;˾3Zbx6^~4E'7Lg8f&זUNa#w{mjsD\'5 {On!&I̹1\n}v{,f.)Wߕ^Z=Lg8W5jM/D~ɑyo ßiJGJɆsT_9ڬXY->s>xdݎ)kx7G\4Qw3$̳iL1$rK}t `&Qƺ~.Bz4tOiݦ߿ڝIS|p~:wKIXsÔ͗"7~hS՝o6V\$/0l [D\XY2Qm~>ixyw;%m6ڢ>M\XIv&1E6Svpåg?t~YiZ5C96̾,nѴNSw3Ue~:x "!~2ҡVOggS@lC4& \^1x &kAX9h0|p_3^ZA蚔G Tv0 C7J?HI*YgP3>>ǯMڕȽSHn!Cuu;0~_ wZ*uv2pc>^qI<n?xzޘk3gct<tfp۳XLjkdD :||pя~8ZRU/)"RɖPiIQNلꐇrݏo2!]unYS!GY+\LUݝ֪uRLGH#S@Mɮx\sX\LJ8;™\1sp09];ܚ̲*"/ 79 @' Sye>E?R]yqUG`jîKHAt mD< lxIj=r} N*UIԯ Sp?p,}h55YS]+>=oЇOxm6Mk)+Ms2krPeH'w!7ݾ͗$+X.˾|%jkf-)?hFVm &5V ]tfb]?PnlT8r{ 5ntg|o1~`*Z@\|!)FFR |,q_::q]`sփcһXڎׇWfP@RoB\,+$G\dMh5'b2R:d֩՛W{vɕ])~e]xYcxiWZ9y@**()lN&吔x]ݳ^|#mCag=G ;H.vPn<3Q迳$KfM*S#Q-SȻޑhrDy}}L@ɩtkL0c!-*˰ƭUPpdJCzhED]|AB9z{8ӅFO E }:,_T]{bDXΥu,tsP2FgO3~'m@,MܶEcw3}Q)fOI[47ފAs͛6;!wUTKñ)Bca)3.7N _wwFz)CV|@"5gcIԒm->p)x{RV/~+)ƉW&ܶ /*CÝNNg`rW@?tn>^_ <@26vMqw4\h><>s;,qݓw:Mtyou5266~Zgqs˼rG[yOߤSKDb%ޖ֕.6b区uC',ѭ2.|!X 9y/xQ=hU7ӵM<'@<8{];:t85NXnr^^\ު_.7]itj RkG gsv`n?LFP}0#v=x3#3>{u~G~9yRQ"^䒵0z5cΈpg_%FJ%rڿk$5P鈂!ק"yC)Ygf"B/eJ,:)*&ct)1]]LVE;$B=Cը==6Ȳ}+,"IOdEӉpGM=ZB3&N?x?aѣSGZu@ kQ@R K{ܯ.ńL0 .X#A\˙c_[|/X1ЧP vķNyO@[qD OG 5[|XDr2,ۂrVkjNYLfC0ѿ+{v3HUΤIȗf=5\LJo~;\=*О0?)szN8+ MtXX(^{2*so'sX {rB/ٲ41_Da/m N[U(mSh.|Q[}vO:K&d3?#H}W#hʼn{oҺڲx(#s[\[C^ƻj>ޱ ͨ4:VM>v>.?nEY()V|ID`K{~ @|Z0t#1Kg YVyJ{_gf}YRq[{((puyZ`#xe_u7/;JK]/j/Lj2r.ulI5&^۽ǼyOۄ+⃝pVCه3@ƚzڑ*γ ">>ZYn)/s7 % IzmڥGp+ҙWbd&߽=ʠOp#8q?>8U{Ё~rQ5T ҍLPڕ4ޏ!J!*xW}NmHQhe>:ͱuuZiuz],Vw{eAuc_\jtU!Of] v6T hzK!k8G.,}kG6ӓ+p+{n'>X4E?ȋ/Q4/Rgg׽`g<{(S\|x.v/ПYSZ+ ࢩ2cpO˖[Wo`ևaxBbhz]qfT׬%TqT+~̮`߅G߷~,8qyΩTTJUNEn>ow`&Ȥ(";" iM9@RM\bdfԢ,%׎m/_Yft&U[e=Ԍ"qXNE>PϖVE:נz8R8AJh6;ΨzօXP}<_zWmSY^Jl{]>i]sv#T*su'ZO':NC3 k78s(C΍|/qG)*w??ph~Mͺv/~VnLUt<C4aPgnw6ѧ; 8yn](qxg ozHoZh0kl*~/+>Cͅ]A <7'ɇۏ5owb%V]XA>+v9trXps|q/0#r~ \HmY Ғ:ؙ.>Vӈ-za%rrpURMu_Cikf2WK?vR\j\;˗՛ i,ޕT։m?,_Sic1OF]Q}4׾(o0Z֭Lh@R[7],i:~uEo[Ț7ȋZV+sz-$pFڃ-<~H%݆U42ISweΚ]nms~of_\wH s\{:N{ldoUUE9wy8KKjڧ6*O3OggSxC4& =SȶǾ4DLyš:)଴wx>ry?dolw'LhB֌RMKWv;-46>ƜQu&&7n~SKw\u ; ׽<ț^Xz* )IRIwwK4tERf=ܙ19hY,yQ7OSls@;Ho]"?okGxg_3=~Ǹs#ۤ;eǼJ NWIwFg; #.3E zhl9^ڗǸTjgW?H-֛v u= "踽&5M?IRwdO\o]R֙Y _iQm篖56#1ʌY7{zYwidUƞ}oUHPٗ l31pW/]OXMv{?);qg}MZu>y-vpq{7B, ȡeI #/Zy%8wO]:<=a/ڌp_u똸9b:L&YUXI;:(9 Ζp⅕4;P=pPqWI~Hp1ZG0}~F.̧cd=yb鮿|ۂX;y Lx޵Ҫ: bKJ,GO-wO 71*$B(EYYbnQؤ|s}Qi™ȤHIQ-t;v8h}'*` kNśy*eW,ǜѽ.HkQE+vňͶ=/z\~/V4ػv{"7ʾCn !pQ`;ooi5a1BMaccc1iXl찱@oX,j55UZ-:-`s`ZVVA̿KcD֗h_>GAp VmW].$֞WuzѬl%B~Nd{<1GG>1Ud#?6 R}}ug__3|y2|o,ßۉD;@h*T+"$V;iGu `RdͲ \sT{qh8['tyCvI&ƽ'ΪSƒ[5|Hux w?ɿF׼>J.HJX!}rT~Cͣ}[+`>Qo>q7ZѐU(I""|Ѫ7eg0U(So^=Zg1VOiqOUG᥎1D+l߰o.5fbM&4Tr9JʀL[Ĉ}WzML)Tߚ(q#/"#WfS6j;y3}cs3OUؙ +z yS8d/85ug_vI7y*:/2j^C۬%lfeT$#%YO[uN }WM?rڮ'Yޑ 3$ܰEgee h6 y&쿵>Gq9Va 4q\{f@ۈw_\ⵞ+;,L#eYTeZXhϝ t6',.qϸ"~ζr;wKYSOb]}|o'w1p͗ĸ {5'8VV8N}|>\-]w}Xw)l/H""j l =6ubJν_G;}\~k8_@GCɌ 2u?3M?̿M$=lVjP8NdZH7R1upGVRs[Ъc iCvںP1<|d G]xN;|kd^{ nu)NyE$t|Y$*I~Վ1RK"rK"u1~o;ۧTFi3_}\OAg<+3y#C=סNXOUq&vVZNx}!?/ݿ۵PAqydu2Z, j =ϗg0ߞՖ26F帒mO5E;K]ݯօwuS3{6f6#=+5u[A9Uۥݣ놾>}ݍ') y^s-ޜ@ #n߽g_?vZEp(yk hYVҙ 7߹e>̩)Owd]~Cݣwhgn$#oܚG/ۖ,FL= wa@@j>?_ٸ y5KϟeǷ9$H2˟i]:<+ܽ0/nW\sǰtkGk#Gদ׻c5}ETSps UQͦ|ujCBUh+MuT+XLt ]Uh`*U:F'Ӫ"RLܫ_eƽCoX(0LtZ7;ƒ?mgrk0էwYׇ-M|_m:](xvd&gct?<٫8xyt;\]y~txg/ב|!/̮;gF{=nlԵ:"bVx6۵q%EXΝ郹h_ mub(4I;`ZǺݜq^MW; `:O Zt`Ibddz`Faia}7Φ_T;8 ]m]t0R䰇})oR6s5mƺ17j]mSY-'Gw3Q&:BIT;d_lP;K/Ii _wIeNdCf}7|n4Y&%%86J!mț᳉g֭xO֋/gѣkiR#cFzLszS=;7/_gf@H䅗}iCCƒ!t3śm mx¾p?>j^LSszJǨ von /];r]4qvyo|2>N/Rny)~cYFŅjݵ}m uEdv\~K\Yé?uޯO<[a1jcx8;p | 9~O4;i]I‰ۧ%/ UG p[I^#WVD,3U&.RwbvZ%ڼvf@geOggS@C4& BkH$d"Alb);z{0ꋡYw$~yy]4 F1K;׿=N>}(y@53Dza tj*o5ui?:BX?k3w}f5XWR}Z˝LYO5C_.3V"lٮ{yx~J|gŽmNq;r<&Aۏ5ЙKU]{psr{uPDgCie?KhyFuB ۿwSoDqݧc \l2+E r3ˍ? 3ן_s)Xqڏڍ[`xfdj5j)U/Uhm2k4^| pʮ[\{;1=T=U =N8EǮQ[y}lnyJ=ny80rZ S*I=X(}k׮^gFqulXO==*VLÌ3r(*vNpNF{ڔ[zE%pkȀzKĉ}_vJc/nRI~lyy~s~j͛4K :&/ Ci ]D:)xnnSʹOn^(z1x&hʄ=9^qs` `4{T|6L]k)r::LuziԽtgfʹ W3wMSF_A@UfaOJOJ`$&2x_ʣ=~GKSdNiyK-;>J~:aA͞S<1YU1{~PZ]}ͱ:A7 \p4yܺT&C|N@] k=~|`uΚ˽v{ڎ +V BoKl[?֛f(:0$\5I~?0__/7^̿us|^M.iS߼G).Ecн'3EWП@iߝeq=nuw2y 9\+W}|jKU[}u.˺Yix^GK{kc]lr=m?sV>\[V.۸ y;즞١ޱ| Q2vM8]W뱻z]և-)ili9G'O7}&m^Uz|yOq]Η_6zc3ts+Jٔ[5RRv[ ?yuzۯ_Ƈc{4(Tٍ8|o{aeX-5 r.&&\^) fxIBSsE޲IB  ?^[?.ϕ@S+nNUφ5¡V%kQp30}t2bhNȫ)?OVhZ3W W!n!`9ߖB84T$? x _v}o1}L_ $|c\V> 8WLTA#$tO*tGf;=â_3rd}KN,ڪ/(@$œi)V72a y0<f4_4S;N|qPzsZk];AfFsMlΟ)-whG۾ycҸ6[ت='ew5=]@ɡ}_460{M)KfǪñ_Ṗ5h4;f9Ǧ?q[ng?6T'I^J LrTBS7B`ss7=e%_Yj4_eV/g/ +1<~́FUFFtdǣv\񻐮k#̶ya/a%3qʼn,Yu<[k}qѳE˝=T΃(Y6CF7IAG嫇^n)lv`y8X1/hk|`rIF,sҘx\}u(ef}ɼ x % ge֩^M~nd3WQUiIUm= _/.KYGY$m[I<:~';MD͐۟uԛǻ=mUw>bE>MEӎa'8G){Bsa_M֦g=9N~~8ҫ n9V7kD_kq c{,s -("y+_1C=9GZ,k[~PʎRAMR_/=TgSvM'Hn9P4[Ngi5T/\Q[($D/0U-,?&Aj+hաhOJ7'Ib/^n/AIq(H(0W{!jH@o0nd$tzT܋_U znt*qRQ)5S9cuj61S>}p$ L/077 3W_攜i4Uʉ3LTu\x͸xnz%->~Aio}M2 )^s>tC/V}koIٺݓ)]i|2Źvޔ \yuuaP~_tp} MGHKkpl<3[rWr %(H ,d ķgO­ڤN%YxjΜڅ:׹ i,~H, <(רppmc0JC8h v-IAՆCp 8Atg{jڑ;gl{PMagq+ 5߿A# <~u}vo>{2va@kX҅W~$hQ4#j [ }>R(#Bx2ε`M}F/Mg|a3[-l򸽑{/Hc]\ Z"yubjy)"hoξu{NW?ݟŃ )jeTsOlc6 ԛߙM+/U$b BMoci|h^ &S5/18ltSPEiS?n_k:>9#43XfiJ(KQ0MZ Zدx=K|},=hdFBK!_ >bvb` K1)ls!c{&_qg:}FGewCˑʨ( ;*59ʱjueIz%.uIӊ9K}..,S#lO!/F9@f*brAKMpzu;DiвL_ۃdzk~7k?0o^Elow8T3pb5.D6`BY%CzX_Db/1b)-^AF?T/4>WJ2݈-qr;rK_<4'l{pg% ΍zF*}88ǕB%ي58}x? ö!t>>#8H&G`6"E!>g^b{f6ɳ@::Ugy2_^bsIG„S}kWQP (]|Qlxj'vZK9Iz'`0tI,Ee{‰&֔5[Lw}qH?CBFBm5XK-*9Fϟ‚RÂ)h롺۳ud9f?oDR<nXXM֨~HƢ{T S}^7}iV]}~Xw] {=Ϥ_,7R?57K{IvinȊ3[1@dݍuUߣ8<[MXbҝJy_72>U7Ͻꥩo([:ߘ8}ɓOU~. FzgӲT&.b'j%Q$vmEί]cU1udl$ 2.b/% c72[l5s⪭ t@buY69 wD6lfskG<ϖ-o;v`q]%6\/gP!kYN]` }9H -a TeP`h',yip@Vjұ٢Ku}񊼝U-ӷ;I{l?g?t/JIT!;ǫv^G[v /Ͼru"(k*mxW1,>oR 8]OjvTxE+Nz*Zͱ~{&)e _؃ZXZQo'>gCzѾ?ȸ{>QLQ~ tm2 `$%*n~YWx4CF.6HuM> ̷!ThS0]ϡ3eJcz?ΣE.ֺXҠW =#Gz=Yծ?yET~J3޶73H;l0̥/m`wnd<BGg <#>dewqRB7^o뒵cOL>7KϢkoL33v~^d6r@c9:7aĬsL]:9첐 >zي0(D{]̀+iE97-XU=JwGéWUi|xM0W8mĂnŰps&RXgy k]4͡lv*scb3**`cK0> }=?>9MN)9NFySN|,&v7{6C4]UXGQ~&uH̷sTU8$IuͣOv3o_.wn3/gl}]ƧK-w^Q{&yZ&YsoÂΘ؇o4Gis;mVf4|ŋހ؊ؓH.~Njۼu yr4^H-YٿPPg L{&?z䠳P,CC)U؝H:tȢ%{|Tij9ú4Scj5.hUPX[('ᵉ! ?V+!f s=f8 PQdžlB7FQ-sjgJ6h:ȓ_fߪT,:wHt4JPi=Τ$T'^U-_?G)Zv S3!H%W+|Q0 ׅuk:8 {-1HcU˕ڂeI~;ktH Gs+$6v] )/)e3=˺ARgr^ND2~vrtG N3܊D.u Szߏj*9AViۗrG/j֝[j[ד6f/[JIpW[/o8~ \1.Ǧbr%\]k_Y:[+AD1h s1`~_ۍ|z"A4frL|igz:PD6"` yH{uH9cb+?}!qݔ~rvzG-^C։9·1 _2fMrmdok"Xxģ%J?|OUc@pLw %V=w*һ9*'}i#ߨT{S<k=uuӺ)9e5X7g`Eyz sL1=;c)\rCz-◣5|5bx4޷oN^Zs2lC]UA@-#T'*(_:[b&{Lޔg;Zz5%.d/~37z'$N֥wtGfr}5ǫ<0_ ₊j^ EGLM!<mWԺU*(8B"PI|"o!\hPοiT{*uĒ/=U> j;2,:MЏ+o"@uPv,JDGF/- SEt 5iL}X$SRp=_+O,,*g݃Ɖ碒 :71i/Zٲل;޿ }BS%g6@w{G0mYBԠZ"6RpiͱX؏8аAt;:mdLXEnpBgrM?e#D{&|Cғ=&:ڍ-Caϯt‹*^Ɠp_rG,`5+OUü0V)]¢Fh(*r&؀=,B ׌(9@qhVYǐd/+3 D:فQܓFhɌ I оf\٢qqX#?^G@9ਛюFZSo2*/doK8,vz{ ng`KU;^'<£Xּ*<gȤAe2OggS@C4& G0(zzwko}ȀKݚ=*eo)+ MT(p/0ؗ_logA8͢U8ܗDvpzQ](?ΜK1x3T=qTɃl˱T?ED >ъVU2֭3j׎Pl9 Tr'NIt`χyHk@=]Q8Uԥξ5ZljjOm_{"7 )^>m3GW?CG1鿬ΐN!LEb~%>鎠'hq\} [Cdi>O~y|/pήsLr E *2d(^~*K^-u缹x}( .ыO7q Mx9HYkg^acl+8Z,uԛ^h뛼)w۽)sq ͙9,U 4T#?|+ӆ{%B>}1vw >_ǍiI6a% @lE{CoNQQV6JFd5Md>߫Nm]V]sUg$/5ZPEx[|'=)@Q<qᗻVgu׈s~m*z"+%_3hAƺRRa?4'nS=/HCz{sm$ۯ5eHq1է|s~ Q{cdW}hJYpjDEa0 (il$kZR('ooyېFuU5; ώ%l^uM3դ>>ʃuQ5eGzlvxl}dϚp|- g4n}o;/aKeE {77L}MY6h̫ Yz84Y_T^8F2T(1` =_>% (Pr [# C{}r%wN]_\(ɼ? F (eǔ`q`>L<3uie^҈}u )BBdmDܽx:)nHOKYv^zBb ]Aʁzg歹J\n@h}jCDz?3+PZ~4h?.x~A9rHIA;Rc fu/Yؚ45mٮi'g2OӢ΍ f]J̹DvW!8x_:re2ܷw7EmEj{mgeCo}ϦQw / }nTX2Z3w%>Qj8lR7k.?ѢZ$+:%M~&|į~^kͼx:PNj'6gi|<%Kh ܠ /TQP;jT}nW=KKo0L߉/),plSwQ_Jbݜwm=~Pea8,SA{tͦB?HvICɞw,cVY?W@g/a nfwZ!Z|gH{n * =0>5א;xnx)ggz:X|)øZEmsؚwXw$γ K},xK#JTb]2ځc[>RzO E2bz:e^<%e q8X^2veyLi8}S_83?g4's{wO+^:]4}>ܫ>,]q:WT,xutvrU0+-f->Xq8m2yO^g}'a.NoKQcUo9IiG c`DҥQQLM}2s4'_f)ޟv>JV+!a$YVK_v2vJ?ZSν?cyK~y} V;^( Ć@=I:U1oo\xIlߖVN̸TڶkŴ럹V-ΊK)U`>h2YfWr$%q5g̥(C,d6O- P]8RyWuPw \x;צϞSCd3qDUF6%zN)Kp._%F9ٜӑVG"Iѓ:ݏxd[ЭPL7}4~ҵ$O*4+?=p < 3p7Oi@TZ6~ҀWQ_4מ&9{ĘzeRg } gO>709w!2s|9#LJ E=ʉHtݕ*kҹ&\ =62Cj/F0>ϞlP'v{ ' TF\տ0OhI¬'ǞdT+:We*}KMLW'FhZ΁pLq)"Rz-!Q9s={ThۘN/۬ip- `#TS9s$%$ x"vi%.bm-y4+ixC[l3mͧC}mRtGWhpHVNsܩk&/9 {5Z7%SD_BY)m~0hVa&ĘX 163k8-ՔfW5xšVqtm.+[pΔ]Eo\'bc蒓MUdzF ?Ge_**Ωώ[CK>+rc,X1ƉG>7>7EQ2L$.Ґdue?U\lib|r7ߺomW yqe~mlrOvny]ָ]W_܌uuu/oIk"qxG}8/_N-Vjw4tͽ(,4 qOggS@C4&.6V FPd]Gʑ9!KQˀ R+rTu$`'@L~үs Ep-ft^2O BK#NY$TVR#3¡8^8wS^uDʭj_Ns3eHؠ:akDtϷ4saQ ֽǷSIS GJ8QY}.4Z@꿬hePP4 =ʃ63ڝOXܾati_^GϺ+l77sQ#[8Qևx^ca:~11vzDkKѺShB;sagIEqn|.0ӞP%f'x$Kp )YB7~):D7fRGWG@'4~z+A ,}өj$Jj۫>`?z3 mg. 9X҇z:~YR-}{a~s&2'gzi[koorw ZKIr{s=]3' ;Be985U#G1v/h˟9[Zln$L95?t9e(:?(-ǀ,$^|Zm{'m<LˆA:grП<c|a>;񬟝PZq#rlxY{|\-~DЋpcxfËV[fSv]}pR *;[oRᝆ+{^n[iB PAs!e",Z쮏^pa$KxQM +l2ys}ƞ 1Rrkn'q!Gxu+)syV͏!@g<2=܌VqlJ_ pW6}ΖWWJن4s9=ꡏ:+0i,.82Cr_ߢ^\^+:/Ѝj]~:۝vM͚>i^:PgV0xvlwa?2u5NCexU긹>G/[zHao3c e{90IB GE ti %@uޤu[E ٬rZ[RW}>13hgy%邚5Syz9!^xs揦|qyLLR@gW@S9 t.[д s {m*UᣩB* 3}KOc=5/!@>{~^Oѝg_|SH*Tm:]y> #69%z&:Zze}T3[ Ny6ZA]^}q)d!kU3dr=9'.<=GA;~kLob1ݝxNͅo5`pY:? dF],l:kTUT=K)Һ $zAYU|':qm0htP}!4nG/|]y%<Yo#5'GCSi+w2z)݊>/~;~cwd^t[='Ji7˙^rNgYkƻ񕾤"U&GJ3{0Ly@ b.ōw^#0:eb{v_Ű,_(NjdY'UЇ yf2ooםpe=7N#SQS.j7A!ewΘf8tvho:ws׹y˯b:O/lD͂'>B$$7K hod) ObN% Hw:pn)t]֒袸mQFRCkXAt;yאГcZ_cY]:V~aPB:@5=ʉ܇-4z p*)S^- ?S (HBL HDuEXϾfEvUTE SP: yLw\G'}d;HURw ]dkR&b? -ȐL-̑ 5GnGr53SϓJAqT PEtPphuvUu|,!VH!F\BYR ޵H$B׵:NAAGDQTLPk-TxjEpNRdD:EH65}@]RGBhNɵJ6iBCtu)p DP9-uxE (@ (yd~NK8 +OJ=^3HtXx.ɳf{KtIp_ HlAX0 N /LMLvՅ-n=(x '/Uة9SL,=?] lԏdɣOM_ȸwu azSr?j./+rIHGgitWohOX5ؚwN]ԪVԟ{WgO _@E3S:ib$qOn/{yx~Z:o5 B*ٽن^p^=\ߪ|eLj'xѻ5~G7ASlƒHҺErooB BZJX$}RPMفxjVOe8JE@.3/ h/<'ݯ.= T0xt·D_ӆnBV$X'~_n;o0wX:w܌Us.9w𴺘v=q\ Sbtot>-[anFޚjiEݬu]wز|{OTIwU>-{&wxa+w҆A\1 iܺCNnG+1.c 껍 e3fGͮon^}_KͧW(l>X&#.6Fy~ ss%@׬͡[rʋJ[G,_ƃ2eєk❱ֈ>!(Ik7$UCI0ꢂbkZ& .B6!1FI6/gE]B12+8t p|PȨw&i-Fw UDUXg<㠨ty(;?vYYoW4κ=YiPN8^g>ȹ&h!qd އЀ]"=Yk_)CH>KL#d&u"31}Mc4g߻FEmz{?3&!15Z*U؊S @{. 64[9qv(:N/okљ]gˉxU}NBb*py*k]^awUHFkN^SNA&v<,ڈ=xȟOǡBBjK+sjW" 8l8h;!1xّyl0{F@0dx4W켪K3e4O;Okăk|@hf#{A .=$7~Eanq r}Qѵ#;;s^8?IzϥN1!*<5y~ܒG7ohKFweG7TֿJN*`ov4}RuXCEpIZ3ϻ%*vɲ$Y_8+9RAub?7h(8[ЛR-ܲ\#|JkqaflZnp0>ٓ} IM,~.zهK鞤uNk Hޟg L9ַJr7g|gMcl?EoQLjI~MdttWZs.}3m )Oא8jY}dh60{7p/̽*>y \(p/;_ZWr+EEiG2!s?xIriwnIJp}~Gzo Z]/.;u8>Rr\Zګ~?}u^x,vƽt5`\Rs) N1k5{ǧ`qG,eoV00o.ȧϒ_ߛ$ͼ7!bҸ0V^b>n; {89'. @D~&_rߟeG$%%߿_ ƴ΄|z6װ˱UzX^-H`) OggS@C4&虋  6s!A$hF99| 97HMc\j{-@j: <@*ǤY%or|zC,TF]b5&JYO#S'q;Q/؋9i-*Zkn@z=H}[(Ȏ% Eѐ4^1kDQG$TÍCV"gS x5}H t^_"M@q}ܾܓy ۋ8ECAjw)CEҌ:q?~jd ,QyuIG)wcsVq)U Yk-ɳG^̝Ugd~8Aԉpj 8j'C}H<Τ)ʼnJ*X"x\-8N1KMz{` D#=;SIniB3eɩdHa1{7r JQٳ9>!~Uf8z?sIwt.Iɑ4.g}Du%%7~g-hlzOkF_ooN)+т.TF [#d>~)nMRG"qWRF>;#H+?Ud>HQ3i]C6=3*}D["jV/tJ %b9%$$SJoU"38Ĩbe^]{v~ONsY*1С6蛁wb.p;^\T Xהٳ&nM7/>.tksT97 6þ[gj &]%AFXu?I.1cc;yŜs'ͭѭ'l7ճvgv5ِZ_VS3Mz]ޯVΎ睲֫dJ^}FWR+UYI*%=_ uZSsI1Nx yWe?B&VG ^*gx҈7F}+j"v?sfWCMoG'Hz)6paީ"Px(;#Yrk͊U5k4s&aś(5KDB\~^NWZCV5i%M9}8rbvjATJQC%*8 { ttb8>s3}D>@TsJ*hK| @|KTs*'깟ظbQͫ uO 6wrc*U RIW/&CSOX鮤Jos4,)z1eVr@\FIm[*۾ r7VDeEHמ~y$uԘ!bxz/LTH^ǐHЧk=m̚$Rv"B"kV|Kzs;ǵ=zk Ͱw{].kԸ>0g_-㶶M 뷺5gqΆskU(Lu2 D/?]4*wOwswz7_\~NYkU"6w3n~oYa3D?YuLI:99Uq ? t| guN~ -{lZਿ.\[~*.c\⎝ke؋r}'WbU wr:!{.*otKb4n4@srz@ZMN[O r Rkǃ'Ah>?= 'zYcU8 j|2|4jwE&;UfXH>JCckDZe஻S}Q'ଏBa=~^E4b_8/GVPFqBr8h;\\f 5wrȴfQ=&Ɓ{:ڈ|aE_ o{7>PIo)ww%b.ZδhJEqhLMet5<)n !4kCf)%6nTR)H FEa=MÑ% .jy_j5G1*Q*P"s8G蜲 3u]Ͽ>&d3=F*5D.^(h#ę'Ӭa(B9QU)Zy TGb'XD{͌%Z)#Dt.ZnV3 uPY'J$-h®FHā>TUv u*|e&+B$G3?872IkC@`S%Ln0 bY|‘5La#1^͍83D~#}:k_Y OP-~shr&fky!pM:+(m|.BלWOzSzV^(2̱imA #ᯱ$ѩ/ %(WYuv.|lAќqH1k}~NuL%WOыB[ݭ,RI'o/!P-A2 uon3.?ѿaf-U14 D_ϮϦs ?$xOa"KD^;g`m'ÐԜLI%`l}ܸ  u+${Uzb|Ol!g#6dv=ϭgrYл4U٭&A<|wpC[tGl}bZhkث;z'؁A,&+ԧf 2/[ͦ Qoqc4knl'@ WO(Tn${/?gLKC鶃૳l* Wֲ!|kH|aů\1hѾݚɊӒ1z*iGkE>WGє}֤$JZoLY"~6ŅjIHHQXC9[Up]X:SuڽZs9zZ=M0q}U>w6 ;WΈvެ[|Ο@37b zph pxL) *N~'1D83՝uI窵?Ks{,2@u&h#ό j>+\dz1iQ#JPɼPľG]0-xɪ^'l=G7^g#|Mf:H-zZzsM{_;,ɹc1?Ny=s̴s@SA8n7r]!RɠX'iZ8PAW*ǣC"\jnK3)WngM;%)hOo~DSsD !%$ >pk#̺I#6;3|(8{$nGQEjʨ1M9J<Ia 7`'/\\LlttCAHo:W4lU)vpӱTT<;5CazbBL0qg'[MGwgIFpm+)>{.un>-ev? Ӣ:FMK#܏䗑զg]Q4;\_KXeB_\EU Ug^=gu36a\,b"9 Xze)7ҩܲko˙|nJ}ksCꗭh>火喕/5Wsp40霵gp*H#gRO<ީոik]=m9T&KuFxʯ5^c+ngꯉ>(2(YPPncT:QHyipBеOz"ܮ IK`]GQG1H)vCg/K- v?-a,P'wrэ] ZCBKY<>ujch9t_-”Fov?IGFk!O!Jlʉx;S,93_/),RwQׂgEO?Yt!u|_+l&{)%6qz^MdY,wP7Ys>1RAʺ6.yнv!2jxg0"j}[.]4U-)eHqUrk;6O7_hp;՚#?]09#Q< cE"O2sఆр|2}+G^/XS! .5bػP%x{(I,j#ig~NC{>{ ]ӕ :[>_<ѱpqe8u,}d~SR$jAH%cjqUMpx N#Jh}J՜@4+*/B\O$H*9dvVVu R&}SȐwW'5#XšvJu_kLKeVOݮkM̯$Dj $T"Z ڱ9G9IdM NI# zPtP1Q3+ف.{VQTZ"!YfEqHuNui<7aO=k\dMUV=0"?T84x0G#/ \  C*J`҂@kp9zTWn`\9 g~}1EV{}oFȣQwzM'aFWɥMN/ƶዜ PMjb6=oQ 躺ų0oXh%^#7WYVA=nm~ۭ͑BfQs[*P2XWpO;xa%W)ܽsq YYՑ<*ؿ{ʣYe6^c>{l߿沶Ū LvUh9zKnȽ,uIPH3o#nj4Ńst˓an. >;Ot- ˲tSOi̟tҭ^dod:j2^]x ̩rzM+KxϳoVyl5 ,fuDŕ4ou rA VvRj<OI,iĻl"xA;3(`cN*^wP6Nc5~ҾCq%ygڪR)~[aW}=_a%F#WӇJ3ji(c]\r)qbzJ9 fisûU4ļVcZTeqYU9,ꅷxtj.-r)l^<[{>vt;/}~69{ D)eם/K:|1L^-b9~6)%Ѽh'_\dubf]F;@S_vSG6=jmiB?wE۟hbOBgS`}yw. { OZm{)|.榭\h[ou=ߓ[JccUjxȆsa^=n-4fMz^%c$|ӷ"5^/^;rL8J-& o)k璓8Y2g?E-d6Fo caӚ_'"kɃ0:uKVr5ѭ.^ bkWTjw<+_9^}M,$/]ݽ8\ۈW343ľS#V~帯`=~>}|hw1K-hO|%Ҽ=6bz?O(Pd?͛5%[w)l2)9XZZ;7m<36G~_E9%yv3-m%G XKj9tOla|dHLBw*"kB-mtLꖉ좴Oj/Ѽ]gog#Ou}iZGZbRr#e֦sZ*o00IKNk,y^5G!Jje+f{ u;|v}ۧ}* 7]l.#FI yRi'\/gz{b/Eo*t?xr')G4,!Kz(cDH̵]tX"Vj[16aZQֺT*C!ʼni`5d tXM V Wn))m 13/&4KPzl/YE\h0 `p: EQT DZ{`py"a_B2jWUm&KkmmvL8Z*-4*>U?/ 1g`-,Zp{!Hl &#FokI)Y]Zn@#qqojKS cvL՛SKe=9-q"/1D#\^f-Vgz8;)wS<9ύ`_ SzY;>G戨ia$ dߙNiDcyQp߇"sd~>6+`3Z/k^{}{mn9uל_o86^")EdW.R`NVY3n/?2?gΕ.5\`F~g\>EOggS@C4&dlj1&,`x2 e a7< /N{>z]?Gi;Fq?zLClK=;: @C]&c&4xOXs=*f7xv%_viݢ+ua8f4MOR ٌ$&;fE>35륩2޺+ZW8O~ {\x$&jah/񿤤A׍clq?*~>$Ao. |5!Rr*|8^y5ɪWOŐ }=C_5n6Ӵ0EZ1SR/'ھ/9W N.p&׷/]?[R9}-vdsECV{^i>oӁu{CHRb1ĝv:2m(j 8{*[8ۖapKvbn6RNwygMav~zq󹾿EvwWvU\q툜f%G\7埄Qu8B. ߧ܊kpnux!/FO_4,?{ju"PPTJJl(|JT s'-DbWt>I{I* ͕xCKp|T١>Y:BZF@8&I :i~l}wXR0gKjcoR%˫sɮbBzcu|9E6 /S LDTmp2Zc}j^}~YkvJI%;N'S5>{~\YZ=$ < $)ȀQ";Vл'&EL!z]\i-R@0}j3xIP;G/ѿu^x[e^ ֥ YCJ^`:GzW9T=p}s?lj$'pFl'p7Zmſt_`_uVtJe|WΥ頋_䮓\g͜0|ILdnw)κFb`Dྐ&-//OX22a iV=l}Lu}M~ȈVP%4/iгfRǾ?;ZD-C pZ? =%~d!sC/Eڜ~\e܀^L&(ďsa2b 2W㺟X:![j՗9ik_ͮZJmQ xJ7<'WŪ4fF&~:Lٞsw-䳰͑m#ͱn$0jb@[)%g/ɼ6?Z/Ʌxy} ,ˇ}gXS1_u|ﯧ(i8Ր|G'YM`6~ƭD.r>GqfovB hX=Že- d|oOf0iGPjcvjsx` *7)O2(JX#7#SuCTaAK].oTלZEM}mHI9%x#"aĻM']i9d ~Q*]gYoyoi5|g9bR7։.h0W 'Gq?|(mf^o[7DrFԱCMLuZzy9Wc[ucq]O}yp]mjz?*O%:v}E>[ ץ(YzPUlc3Q+m_짠S;* \I5egjyЗh G+:5MI3^s>26PGs26djd{D#&.Wk9+|~˳֑n`?Hˢ|O}Yy=^o/4U/vC 8CC~/gt_uu}wƎ On^ϷIrſWVEBl2'ΏhGXۇu_j7f]}ؾ:6?6N"O:M&ujRT=n-9oqwR@=$G~y^ Z4A]>xEtnՏ^[ZD Kw&?mycMr3J8~6dsK޻m\tv}" "w 4%].U `𽬏L2g~ߊcV!LWޚ)i_|?ɏ[>2}ܾ+@ͣky (i?häuC#S>JW<^د+#bz_Y4>{)hg|4/Y:ϤMO7{PY342 iQ &p:jҩ"wߤ}ڴӠ|,3LDFB>2ȺWݟ=!{;S|^ -]%)~CF`H( &֤ hByBFuuQ%x\qu?rFB%DaYFBL.g/ly[qiZ;w?CAhx5fz>_'ݛdιx5Q|Ja.ًlZO{M_s_/8%yOU}956Xb末s(ȍȶ ZiUz46C'OA):u? 1^{|YWGz-ʅ Z%ZGPS@αv# l|+0ц{ǿxå9!ZY> W0ȕvǹSn/ l* =P^Gh6|gfyNηBVہ93;np3o&ŘҀlnq|\_@KKtZmjn-wĺ>5e:AO&6a6t<8{00VW5sA5gL9NoQ߳S)o_X&ױUoeL\0*0˷gq@U2^xћU_Jʡ ^oos%؅t-\\w/{'⵬M(Oa>>mer>ef滾nsJ͐?;.kNi?=lE&r=fcWEw.-;e\g9fU#JmAo@`jWUy9JZUlv-I[20}< Wuk6.44>&$y B?[e΋)yH.T~B\q=TWu*Zd IUDKUC5֭77ڵi5ؗ\]x-Nf)CB92Zɫ.-k팔=U1pxC Oϲ˛X%3g` B[֍~qPfxrEϐAGJ#6Z0ZCPqDũ]ָZ)2 :8U_쎢9CZpڪu/:ӹ~}=?r#Z+Z+=1:ͱCxP܅|whKm 5Ck<7PCό AuhYS⨴sdJjD.Tuv"}Ų_х[.n$@0$.~"Hd΄>2^: CjUH\KΓ*|%`o}|`zUiFE@1-{M*hhUx?-`wM-}QuOq#ʥ7>Rpepdujap`Oޯs\W) KߋzӁ!B4E&1kSzɬ)[t75xz:@|R7(^R_ӎZ>2~mB1="||a>h4l 5wK jJCZC\qq]!\gQo< wg9TiG}_41+IK|S 7Sb2x؁_wGZ50A:U n_p]^!OWz$)5^/Q:Pyb87X3.46WgME+TyI?nBn|n6R>r qvXŹd S^<ֶAiSeSVK&iIk-4KkimqꪬX3suk 7RN @h0N5)Rt# kQ; 㜏pDZѦ*$M:s.:4*JOk{n^Ң. 6aƎ4TrHK)t~~v-9mF]վ5 [&9#0xd4YγQSwf2OggS@C4&M>;C2<\Uț0!ug2]`PI]#=k1ˋ Qdί Ȅ"navkK8Df?^]$N^+{Q3VK~50 \^[Gvn}#Z5%qx.Rպaׇse GVZڙW.(_ l(2{=*ƥb5k)s- 5=2 9}~&EWZ#kO6o6Eghg.ggk $wp<>֏R'8R'yaNtTrJdԮA;-߫w\O7A*Y\S wo{jTHZ91SuT@V_W^ѢS;I^TJG=yrg4?y_s^_{ۚ\$Wu[b Xa坯0:+ /cSƿŰzƕiLO|#.O1Tair .B=jqIXc:?n_tͦ }Kt>ˉZJs'oCOӅzW~;3V`I E05'Hv'檷Wl,SMs;n YDR+_T<α Vd؇sޣP$ȳk!x.fdS;z6慠#VD{:clyؠYtj*C>hfe+]]U{3=U%bVwF/BRo(ױlo)SPv}\k}4~e_b#c%ݑ{ɽN]踸WSw$9cԄ?[9dM{$4$7KNtkZcV|M-~;!lo:ئ~~2m,>xP͝>9SZ-|*C,2uZ~כr|:EQL;^ T=L[0%&c':k#Z zOa_$cnFo3(w.E{C@T u^lя;̨C4akqq xԙ8JAv.āGux/RP(s]JmPm:"SI$C7J@Hd1UiILZV2`*R_= wj ١>9\@DbyU*4JI*)`~,+A9w(d"5fo Cv$NK[?bMo r,ۂnZ5~=BxbnDŝ8/co'XϮ]Gn_JCxQRT1֒OsIun\╨7u83u1&X}؞+20DnӃ>;6K[sL (pwFo4[->*sGݜ}sG5.Z~~1IJ/tܺajjvBMG clgyS*u6bH{|+u6>1Q*/$f70oVޢA)^p;3o -8wdj8(m<^7w2e-L~lcU*:-+JIef8RֵkV\Of,b1ªϬ}jIR翐zx:s$fNP3*$f8~vcip Ԝ!K#xHM+}K]Y(3y/;^S <+cOr{ƑiG.w܎):_?2%qKV.(^WͣϩN۳ 2¦_ZwF4J~Q\< !?A;ߖeCɺ˚ֹ"sK>TetEt}Zw8]d$u8vIV_w짾l۵w-c=\ 2-JߖTVF8Κcכ\G?2BзR"'[  vpTD It9A>\ri!`8BAHBx|sp5qjDQqYEfHZ}$sRNS졒Q;tJby@ųEUx|S9n~ފ@R9S߿exo͋aٵ4ף#|DDL}1stL?>~ kv;J/D_@4ͬS]+qGe" 09[6}jfP;zGD-:2>Z']}Mm%F:Ss.Z34vp͑W 7h!"*NYJ $٨dƄԜFFrIWc=].$L(gZ'`X[9bH>1`| kd`M-D# /wo#R-9enx{gĶ.$( X>L]_gˏzi܌Cg''N qqgKm׭o3?|]u*T6{_]]yݮ8}]/lwt0{Ktij'=Yæ6V'Ͻl x&-S}ia|m tw=T  5}”ü$sJr  Je`X$܈w{}nS ʘݟ 42 @pޏ ;9$fw)P1'ўaoW p3ο#qU>,m5EJ1]uܹOlY)cu ͘ GC5[a!{UAj(h;hqJ9 ݿ^_{Pֳ1zihzEfѲ?83;c3.qڣq 0͞qK?;"?KZ;Zp%`deO|4leTwj%\%1Zۉŷ1)}r /HO1D3gD:~̦j~]ۢNK=xR|8_1+s髗&qg7߂w˟;/|/xeXh?xO^JJ( d~Ǜs\fvT $v%\ﵦ5h1y96YPtj!I'Zv߈|LuG'UQ'p,^Kp%cPR̀$*':DA7xQ~ KS ?Ժ5斾B5)&8ت/ NzuuC-y;gw]kvpF愹jvWfMVv]ڠU^/^غ-= |<,N8DQByl4_Rs@CoےqZ^TvRх ĺ85W5xƓ) :!/lxQ ͏%ۯ<@C:(t4!z6 M[m66C.{pD$.K\Oz)jp< 0&?5mw&Sqv7M?՘gWV7A>~^ڋV!I6̟FR9Y|\lѪuDas}n_~ç)on;iDYP,\y2>I(޶ߴ\/QbfMTg*%2ŸEe%_7;?G[?jˣPCɇ-TqVh.17{6 [{yG2POggSC4&@0+ܶ^IR!tm}$ҭ.ox`Pp n: e?_fez֬/3(:UWn>ЩEyr֌AY9LI{;@TɭhjE8zZS|?<HӻUStj0S_ nxe꯻z7MS 5vOk9ݏx9rlЊsM*ECfgt4zDD85wP;ɮSH $uU- Ƞdb*)sv#Y4NʉMNS剬JI9vkS6QZDczkhN=*^TlCLhnߣ& 1dJl TY %I7st!fp;pȉ4 gۮNJ7b B(u`͟N~yr Y4KV ]xFq t̳SH8)CAE˝%H85Y={D|IKHm1v 0yf >t-M_R3}uj0K~7lRwKӪt yP>ڏp&D\?%_GeH?(8E*X|3OwfvD6T bF-7OZkbg~X_[ŁӵYrS8U~6~6Qd]l=/z{DL{'ghs_˛T娅vXT5:@RkZtLt˛Ji>Qnv׋Gn#8_f;ؽ/v1b] \ﵕW<71zm(1c\|Nl2f~[ +-JsQ2SnK%qB] ItrݾLrc=ǗxSԝK'BJ (~3{vEL53 {4S#g1?IJϢWi݊W4d%٧T!R&*t:} v33T<'|gȡgSxI]82#Pb&R?9u x{񘥃+IhiJȘ[qtdG}_)r2+%RqCZ#Y :Owg?-Y\tHE2U̅IP Tx,f h*Lt`= ObzMAToaN[a<=?J=p9y wxUNs阡,N'(TL¿p& ddC\-ْK%>}&?sJ7Wd cC^ZV7zf?cַ>=(K`esxȚr ײ\Z"b4b`!y&ޅ,bqq'u&Or6pI~O1&S5:Kݳ>B}ˎ{FT2X\VmJcJ8]߻Tm}߷y䩊rj~ `If;'2\T]8}IQ{{ѻ|$8{_|ϘtL)eg. F-є;~2rnWt}gj)j*3$w0O Q`ֶKmjl'8)ʑgXp+cY`pG uf=2/G֞2jTl,'<\{P/nW6#$W'y g˷ح)yq-|V[nk|DzX>>8f#cG_ݍ=ۿxן#Ke"nxf,wKԀhҍ~P' VLgKOW f/]٩5IYTpb񕬃{huՐ+Y d=j|\ڊ2lQUEkh_T8CRdRt^vNNuWTSCngDrD/9+W|ljMѢ*2uc&36y(( *y~;VL] y%HV;?j-/q6)O:o#eؘkGOzL^,Q <~$aQO06 _ ʲda_j[]%g y4|ɳu5LOWϙg_o3]ybf/_ɛw2wYOEC$wy!1uՊ {:riJXK¡ѿ/"hNkr<ã'<ͽYC+Q˭ DߊȞMݏI~?ᆁK*3\ {aNN#ToNe>EIZnymWsn}^>>eV'!I⪜nxx1s/(.}$O&x@1N~?^3j<^ /C|>w9=o d\Zy]=_{Ro䉹pݢ:޻gu}N]ktXi'}4VO#؇{D\ {TR$w3xif.Ag=h(D7=_ߩoӤç|w vU:kYj+$}\q;R߿;* Wb 9u gY Uތ:fr:Rk]"y'~z;&vƊ5D#ڗO{j6>'OggS@C4& ®,3^ k68րM~=?r{0%wpZبdzr$tE$.o"Gp yY !gr===&DL>ȑ UW|X~%ߥǽ˩F6U,qs+-{mdBY7>MIeW\gi"Te)bFF\,]ztUZ3P-!2?E(ϋ~LY_;)(;uqo mhQF*÷O'A{i"x:nǒxmkz }de};=j6ȷZ=|VL)T?xMPȫK<%tqUOP­Fuc <ڲKZĚ&/9/F{mrã/ W˯7tyn+?wt4ݧξ7}ӔZNWABc7[z0||hQZb-tGwu>+fHAIw$&8i NwX3\ ,jhr*y^ uܷEc0]zո[-{aRSKNSE:!:}jd4`B[QfzB RTM#yZ_GS۾#oen/k2w:~}k~m+z#d(v%5Y*w|D]q"5<ֺe}BGZTAFY9t]?݃lHkgVO?]V6I|; 5N7_b e,o@wHkZRsîaM6k_y[jȟh \j—,'փT}8;z$ [/׮Gn*"?p ?q03|.xdzO[q;6/f>@?2o8a|bqZkpq?|ٔ|?yq.Q[ ޢ|ߟjܧˏxɴ/e>boU/!,_ӖM? K~tϾbYé*qn|uCFxjFU-:Af}<66>_Y}%@"Luk޳Nٕ\hk}9{!:Uȹ5ʥV#TL/-GВOKf!H332L^AnAkv:2%f8DS9{hwqՉ Xr hѤU6-s#o}{{8` UES@ -z<<%換}\_V#jۻڟ]r,u()5P5nv .>[^yzwώKV-wV|i*ך(5z~ѳpݴ\X-vT2|^1qlx~uLR˳lg8G"I!0[Ulw5KzUH/Θ&ZCk)W~c"YOyJܨE{*{'8lkTjГ)=ٷ{5?0Cǧ!GypcC8/ͫ9٧ ˠw߻|:s|t3ac0THpipRђDPAw{ٽK'K6~\RKKyYsC̬6R|jEc宅 SkSO-,)ףnj6$K @Oi&aVhOдX%O[w%Jp0ʔ+2p U:إkF =~_8Ge^6Tf/*6Dl/T >&>I7 25jocUU) SƮ*Nc\?~t5܇6kyڥD~r?u]{M|5lH 358m<BΥj,ỻG@@n~CpJI_I @s9ʠSB\Tl JR[O (^ƒN S^9Ku<@z/ܵ=Tp׫kHd>IzF]njt4ڢ5ˣ.ZEdꗐؗQH=d~T}wSNtoM{̵E!w էYۡ޿zx ZD4*Y:@!‰aDIQU33E;f2yhij$ ,@lT";w+ . 8CqxL3}&w"ʏƇd6Tl+?mVX>iE}@XO5Xrh`_CU?]x;F1SuM0F,]$W!bni4Zz/ӗq{h+S읾ɸ CdZs_(at<:锔׮F]:~wr齃tz%j[1ctz])Gx"%IEp  ЃnBS(r" HqBߍZׅWĢ[+W/'o-B?JF_<5E-.' sXSBס~2?;L;+|.0DmlJq`ڍCG{*2NazV K4DCBugQ]{>Q: {HiTuЎ?'hido+eSFβBīK#kC43:35&lo<7/ST̞: wwvWbɮ%j+Y>9idc MZsTuyI{+Ҩ߭_x֗EZqH'Kzwfr7, zUd^B,tY0V6vfZfw;|%ԟv^mCs i^'Oͧ 枑WvK9g#31]cʩ2OggS@C4&2>KPV,?*rNRkTYpx.l:nyp\9*"r&* Zkm^}?:B/T nqRzp|EY A5ERΗ3gͿNtz$Q P`t@MmmOäJ84r{!'2IGD#z\&SW^˿MJuCg(QAa>CuGCwGԁf'fg&q]!A>s% c\$qzp1MMH"`ZEC!fVcTGtaܟtHı%{C ka'=זDGVBpƛ! rݛJPyn?ޙ7ɷ.J?H9ݾ50Zwz0.z?̫AhsIgS!_MHLh*fF#_M=& zU×g0'\~JگRWOEA۳\Pwv N.V_uTrb/p> 4f=RZ *W;ܞޛ,Ĩ$Z?VGr}s/i)Z468km"J4b|r!@Ġ߻D}Y'|Ǘ%+^ozft c[j?+"(/HDw}'b+U@nWFxF';1| 8cs&r^wP/XԎ>9 mٕ1#`\v KozbIn}H^Q}|7:ZP8yL)dR Ʌ1h"r4T4Kz3% {xVN;U[Zlei^[71c[>,Ep.VݾNiM ̺K% ١[B:DQO.uu1&7S7*k9ΕWQȣ"d{79vټMVQctILc|Z(eY04m`I=f-pr_>7o}"v٢3(lOnMĬ>>h.k΁StJyzz` o2nM|p5sÔ d(>~㜔debx/]О^A2:k,/.t=oJsNHxu꽜U V#sR|HtR*.ʬ(QPCH9lt}a 6::lFP\=~'#ɦex_FA!%͔Pg*tu/Y.N }{~K4e*=̺;SIxPhA@Э4:Gtt{!;"hUP?ȄNQ%[jOIPdv="S("?j7N1+}EStN쾉ܡ]uOu_U B%J&wشɩD5LXDEkwyyJǤ}?eo3!Xj- Z҉G}?kd+| `:lIQwx:i~ru1.W r|vƮqb+hG\gpLU~S;Y_PWl8uqϠsuTz;]dAݗ -0]~"G?ؚۻ^GG& br= ޷LJt@΢C\e@U`I'1Jr%\Kp46t,#w,1qdXdp{oFPT"9ӎ5Ƿ[[!+zAo%ӹ?źN7#QدA/[z=#xoG:xB[J.OaX۷W.9տx:m_<}! v ۈ[{,'0SGOḡ~&s-Hxl53?}Z(N~!y|/ՙij.,q]IeknVc~WڐR9CknidTK+Xzr<O ^*i >G.z_/]7_Hxo;=o%\\LջXqjWUXv݅іѩ53ewQY F>~ }?[gmܑX^/dKB,_ ZYBɜvyŗ:yEB{Ĥ/~wnd;ť8 Q0@ѩJtn޻uQ1;&qзZvJT޻֢*e4xl#O5')8M3ORxC+Q uWID8>MCה)l!JȺTb"+ǤZ$ c2LTG I=+d7;__F'f~]%ڠv>(42Xu~v?Z֥Uum5]u4=Q&֎dS{/ӵ* GjePnQ. | ?S~QA:A)V3/ek/gݙ>NA%zeiƧ%NWt>`~V!ݸNk^}uZTMSuÃ{}A?7S,V-Qg{=hZ&ժ^w:([n1r10s>p)g+Ӣ']υ.^w,Xƭ ӝdr0!4#8XWN$6%(WkI]\g53&Mm5^ 槛G;ŃΤα~>uM'S&ܨQd"!|OshwY[H\t-z!rNT>IUp p:*pRH3_-gv_GE'׿_`̠q$A*ʹ៓f#2.| ީY뽇aؔdS Uz$I,p6:0 )xN4#yGQLJ34it]=g/tW׹jm?u|ɻ.$lM.[~`fSni*&aUנ2Jnh! x^#bA{nhlGy{h:'SZ$5d0ǷٽoeSMV|^ƃ)m\'Ƈ [v::z==d_# %Yacsz$k4v]jRBgL(pRuFKYC[?nOWFX*9cJd.#%[9HFڑboG[i\4e \ A׫䴛E'bpU߼Xk23\8_nto hJ6_)}Bt}buŖ{l ]5\)eQ2dRB$1v*B)0 LM">B/LԿ{rwLZs`Ob{y:3`t(Րte]8Z͐u }]ഥAj v jH $.!8uu (iʐDz8C~H&ůsIn(:| 5>|p̸P^e*8,'QX#\OggS@.C4&I Nކ2ޭP"Ӵ[̦AҙηrsBX[Z@p࣪3!0GpOZ_7S^* u-S+zD:f˟+SIDY5k<6MA[wU9DuI=L$K==7<oty59wР t޵E;Gpz S@8J3핈SPp5FѦ_# =? I2!8miqRYdP#=N2g ړdg "s0_Cܞ9u~tg9JW|ņ _Uԇj}=s?g֮6cF3GK/dȿIdnҍ\-`efp/=C!RDW2IN$'H)j.6Sv D6=c=4TTdۣ +xI(k?ȕYW%Aєz_)ՆW'~zUd߱=s~31{9ܬ;kYPbmc*>B cޑն|g. W~( {A7&9_ttuSShkoKei8ţ7cnr-Gj^#ߏ(2jW+'EBpͣ8VWVv}9G=y4O]_M'YՅ؊}KY^.ÅrBք^_Wy9b%/>p9K[$d ,wVk&9Ml)(9,t6UTed;H%|Q[b 5 f#wdCثO=/Z{)s"*^pT"cbuK^k{3jkEhN}pD/W(3B$.Bx6=9R Q*{ RøbW2UUNwG8P:CEia@IAn]5RUdܒ)1p)BXj]DsC+1(u j#%К+Hz2J*dqT!+; ղk2Tj.5>Bx3vQQ";:TDC +SA~8sUB@LvTjf4w^U!PV9~AzAܟ|\祂 >>BG<v),Bf\-7YmtsL=Bpa $N-995ZcPxKX/$\B^-||]у̿Ux;h wvr`A l?)/9ӌZ/4~'$o7)+< 4+#Shb{?9“)v7rڜP *N8[g;m}tP%d #Ն'|ͤb-ۨj˶kv\Q\(粔&臄獚?S_Z6`qKNbHN߹_RQN``rK VKrRq*)tNG%>Y"y'IV୻˸l";)dC\h5mL4Di!Ҡ,#77~}>9wn,˲ўiaf8W&lxDZI[6.-mL9lq7BTp@z"^unhNqFVUZlOVnRg]|+vx_pOg_QGDK Y{wlf㪧?m˩Qo:BI_+>w[V.kb\+nLfq$p!-y+p LofYْ!gIRFS0ϭzup!* N4QEHT)-ݫ{\gtyU?d岿qH!)+NG\{'oZA"NO=/eRG,DfhM"$ tV S @@4vt{ҍ{v}BC R`Zigrulq}kȄҩtGh18 5SN3k{l1_#7{-k K7+x1Lazjn\n 9W_ia;WWWA+)*.!M@7D'~a3;s6宻BY7fkS$h}YpbǕqێyٶL 4\(WqSj?J]7"wΩVfYdb/>/#96jVn%&ֱ<c6 ;Bv9I1K?<h3o-gK"ɓo[Y܁!UZ,H:gxПK+\g1a5תZ:O0j]!7GQ ݊~U9cB.f{lWe?fhf߫ @@tgA4!L'oM(Ñn~ *h0EL`DS gvTyGgܪC'`*Aq!>-FkǨFSL/qKqⰜ~$j*TV֊FC _Կ㙽i CFNUT7g*iYd ڎkḷqݍ0I^g܅wZupN=|da#8V½|WStKouu#^aӎw6 lrT1Gr:{SoŻ4t7{ )8yj06o~,'v=yhH>IZr61{]˹zߧгNhguDZ\ȤppAOv'5>xɌ+p^n/ 2"RsG;׶woM~ZQ/6s<M7WOҍ-/}tE cqiW$zM˽ٰi;xjYTI ;>ߏ#<~GŪk)\;~Dž=T_?t`PAJVN)=t }תDN\-d9E6M'1jiaiQ-*3_^wرv4(|9[Oq{wt!͆hnoإ0rhdA7.|{Wk]x}̇y8_Ͽr;Tܗۥ;W7EKmοG_Ejwͭ_~ wEks^nͭ}5FiO~ݮ^c-y]v=h U_]_m7%{ϫOr"BU5_0*@OggS@=C4&5h :9eͅ^*G^|\7gcۜyr,W>] ,Jm̻DQS}!׻@ڢ ҽpD͐Wt?Wz~3D8̃] O/'>ʋ߿LIsذ|tX'hU;;ӗgWGky!-9݈27'[=REC.3BXP)o+ڭNoܟz^踫Smt㑹v)YkFx9s\W\cݼģQ-)'c|x$wKtHϘIχJ~z08QMm} Mw?0{Ix Ps~{ԝ24(B[ب6kr?z=Vu>: W8ܙ&;p7wdsUD- Kv3pkd.H-X׀ON+씓p^)|`"~I# #N lMlU8^]f~z`xߟ>Xb,B u̍~Y_dT7m}GF]}朴wJa4w]y/FVW3U]my^fK|[ KVgrh[MRNܾ pk^1?׏z nm_<Ⱥn5k}d~}JS-{A!:LJbkpՋ:KU~V\y&W]qX߯H_?.x0Z죽?gy_ρ]~nn2>5J2˻u~'Z6\+^8 [`-,C7$ḑ~qBDC(g9cօExޫ|#ӬL<oD[J|u?U@RUqtGR _g'GS 'f*dl[Y+6E-kY+>BgCW0nL_,OVv *5 ND8uf}:_A3"y< 3CN(f "" Y@OQFS\Gb Qn-u쟑>|7)5 0<"#Aji3mҁԫ;kzp6#|6̔ƕg /Nu~=?2 р&]m0u'o!QT=0;{ 'LK_[_9iJ_XΎofrُu w* sHk/^c! l.nML g]ԈY5a U 3NU+7dlL[N׀8R^>񳚥;N@{*W1#d\? 'ƎQH|Fbm`Z3&I6b諏TZ3n=Ep[8˙Eq|PO߫# YVx֦ZVp޾m>JnӚyq=4 _fN;tj`} 79yJ&m6zG1\'bߩ {~ssI5 ]nc^T^!IsVLBdCϵW?o4hZħ42tc%7j\V]]O]-yg={Zu}+ڲ(Q\b 10ZV11.z}ZU jr_#R{fg,h>׃^t-,o].g#piB+t| >:݇ jH(R'9xAj(rԆl;S%ɬ5IH'S P!HȦҭuwQY\|ߖ,ۍuhZH VZ4:WGWw@gEQWf"[{=*=[r sZqKZU֙[qlXJeЃB,w]^1Qm u5Jf)mkw:r]l&:{"L>B }qvZoyнܫss}4Ϝ*ě͊Z'*瓲OJ]cOpb@ܳJtRu`5:O/ W}GIf3b%Y"ë V1\_4ÒGybqb4Qv"/❞0LmR^מOz8=c6K92WY9g5\l mE&m:*-L}!֑hpsٷv#JUqk OyFߧTcxgCi>e !~:fM^2rjܻ_SuTZP'W繺RD8T|M> a<\M^meQ ;D1 ~L`W.,p)lmwe_x,\ujdïHDc v 8ވ^H}1 vR@VdǥzIcO*uSpʟvRqՆNz(84fKȳ. t`U=]0PL??f!|M󃖸9\9WKFWe͒8lJnˤ0 /ɷ4J&KwtMԦU?}WI W>;$>=J#,znmql6s7L4rx,!  V%gGGűkMWD_YM޾ Wo;зLiZ[p .e[kԖD""E}8zle+;Q[ ũәq,{́W^tyU]Xj*OA_*)_2{RQiu5JR!갣UXr7ug?[.iMw[DњRWn{tg46j:iXCDŽ߇‘=U@ew f~F&=}jͭ~xg9X켅Gn~SQVZYﵶE<}C E&$kc'@Fă t#ZFK9\lbԏqEzh,̑^gDf(s=S*{-Ju, .d";Leo&KCʚ+R ud S)UQ6E%@"ӈd᭿ayȡZ upSA8t1ZN'߷Qx[2~6j3^_ 36)jH3Wƛא8){wtOǦo;(LҚy|KNbΜƋeWsC:MWa/[0M,4~*Y}eanOqbDUi>N^ϧSy.6ztO7 ,_&7^Jד6c~V/ܜu. 5Cү%Ey\Y7J{!G{{TkCU- "˛G߻.qX-H%s.JzuF5[<3|8en|Nluʗxn`S^o.ՉUލkScVhN&j@ho['g EF͹rW#˼Mѿ({m2am|55]-垦2Nw\rmU&: /v(qX[򟽾.2J>Ȯpz>{9>`>d2l)n2͒R׾}`Cv/o](\=SQETmM2}\suڬXkϨz_ͳl-LLޑƗEÓ1?OggS@MC4&]%2.+~V}[F&:[F{;YqtTo?F׊ l"5CQrd?n1_:'ip~Q#w E#CgjPc}^󻓛JY:8P/TD 53O!z9?BV LŻ!fJFDRL@pϦH*Id..Tk=j8(:S^S=_{Ty#NU(Z?AyoɡZ/^7zǔW|\wīNK?T/0{?ݯ]"5FinH+dMG~_xeS HGCBB4Hz@!['c6}B)DsHGwu];锔*5i>04BB'$ܙ(f'z[Q2^7{#' )_7"pÆl6(@K'@]("9y{!qX.V@ڳ*%;<6yOa|̽ߎ}FӍL&z {ڱn~[Ӕ6fwZ]8WO1 .`SڑYN%Kq엥{߹䉸;XgnfGɩsٍl+Zt:to_cl2u2' '[j5کZ37׶'K\ޞ:4޶y<zI -"m\]w֋Й u ]n~W_m7N ŞU˟ƾ|T+;x_(Di ,\[=w;]b;_v J@on⪴ծִDtJ`*]TG9כó'Cx;oIJɬ~R oPoA^i'&9S,5gs̥\ؒW^)(V=uBe8_qj܎/|^KPAU$~־m㪔P ,Ĺ7=? _^!aI}SQL7B6ULүL^wRC1Nbb]Pz^nWs<&K (s +859ܦN3dj 5qDg*q:@JZ9{Jݿk֜lG*)";Ek5p2mJ fU#'3>b*G6W~P:ԩ]A*ALLPGB1׭q TDY^لw{kVyBqg=׏|dxxfD)kDnݎ p捔SӶh_:6?_>'j z{tΨRh-Q>KZo<ij]h 27]͚h2r~Ƀ@Er+;9c*8$ĬH1uWz`=RWoAvoV00 ViVJ,/w$vY{]I|l/?}N$m#E^}e ie̋F4V9Qp}@KlvDsH F2tPU6)I!hZW> 2\KT,|qv7~XǕm\nH$ŧ 6$cwH0oW|7CfVh"r`oNm+XL׳svƂ=u\K&b8NS( * E{ t}jy3f _,=ૅ?}K,3+\}mxorZ'ȟ 󈛄Ej굠Q#)LJWkyIoyKB}^׋Zz4Opmғe]l$z҄CKN&fL֦ޚp(E{NB^FsGqy`I63A`|xyB%}+b Y Y1E90J\&jx8 X.$Cv``Je>1Tr,l3gfw)N?1tJIf~sZDI+.Y1[-J߻|qlUJf+QRkR.ץG"c/n^5œTj:{Jܳ|ڟT5  T eF )Vg1#^t4uׂq.q!t:.6;(TF4NO]bQ[%u'.RxwF19}v/9@岽q9&ݏ+"W{t23;]Tf邿@đh}5EZy!--hխn5J*>}\yq& Q&$>9z{crvwcf`=gy Ed]KF3[>ÅEW36l o}X,"`aĐG| Pz\[Jf(+o*V :DP{wjdmSrZBۡ?BhС~]]e:;_,ZMXvCpk!yQw F#ڢ'uꫮNt({2q嬮v)D+5(B"u"vl kDZ}.zo=gEq4sQuϔVFة*IdP{>rKѡud+ߋ&&Ϝiȑ8SrR:>{+*< JbCH!8x{%Gԧ+; D)gٿb99KLjU}̚/*;O<ߊPs?L_XWG} y]jF )cBl|;vFpċ={.7Wozs=.7ܧj.s<Øʝɷpg|~b`"T2$g pn;k "ڤz!At;=zsD]!+)/Jͩ{E{=8k/auUdH= M"܍FB/*S'i&I" ]㣺uy];F2lg/=O35?|X e"^>Z;VԖu: aI9H2 9V08Cl({Cƫzڅ`Jͬ@VOXU֟Gq*-:CV[~de]2lӃOw_B[҇.=mol$^d_LGźϞS6RL(}~Z쳫;UHë1h=I{]O*DA%ΚVݦv4EYM;-$OJ73]U25 \"ֵ37[׫"]8_{{rLHOggS@]C4&p0/;95EC'ÊE]33tzzF#p`Kϲ6Dh^aq! f'p[tmNz~qwݣ_ACHz$ zHȈftr:ӴD{u]x^,ro)s_T*kNkvZegBI]Ț!ACA0Q5S#Yy#ָԁ[=" tb=?U+9-Bw#[< 5veQٌU_bsKRn巠0l[X%oNO!:N;.e!)u/?U_z+Z-EÉ~7FsS~{xSq;n-=uVs?Gc2{h bs+Dm`9%ѳ3[cl Bo٥ӛ:LVk)\ ;;j6Rno-y.Sj~V2n)ʍ CɞF)_6/χzoqySlb>VO/9Rsϩ ZN ^qW_}lLDgM':q5wYkڬh;-܊FGJ =GD(e^} cM"~B{^1?Yqqź N8xyw垱K1e{(UQ2hO2`%Gq ]Y6xҌ4IvWQՈ9]m LWy#xL Ig5Q!+ptZY{1?X!pΒ\v!W XU-%^Q%jy!,$C-e,Gxe W {QvvNu [Q*R;N 5o9kZ}dE nioEB 3TԹjПMZlՉHG9̵@Jݤ ɍ.SJ=h9&{wtGZөg[܉㐔,:Wv(8Ng{ܵ&TvfȄ*QD tt@JVTT[ ZZw.i *; qփ; )>8,Wĉ)vJُR:} ИKD*:n(:SEUA4Ӡ~sFq绖YQzo1s5g|Az}d2?[}.=N*wx}J b꾎<^z[(+(Wg9J>Qzn_qL D K\G#G٫K驶|l0/~e^.%jéڜe2VsVeDF/ R˹,u=U3`xy}{C qGAOu='̞_ [ai]a0%@?FMùqlB⏇J8t(ﲗO]0=w"kǰg/tG:7EGsubJkcHU0Ä,4F<;W*cJ;PǦcQ 鋓l|KH\sWJnMx9l^lbf*BS*b^{suhK22UbTfMf؋2{oJOKO4<_f#}x`uɧaKzx1~x&b;h f38MgԊcS%+ [+-MQ|%C}]Q`D^W R6rQVJ4؝?XyMgzBӼ<Ͱe:xd5l<۩s~.VПUJ_\~3~uzQMXQmn7%Pl\qA489+}$J[Zoп, _x ?G}p?)w i֝=~~Ecq8`z5C7x׋UV|ofgG`A{+:e+4 m_z87h*rSCͨ]O?+Q!BHVB;~Ц]5ޏ))Y׏nkx*=b% @%ƔvB[Z=Xd-*-]S{)2+5}]p8ړԐN&"U}=||JkQڙwDgʫ L]s j1ǣQJU"tQCN_(jkCV J:s}Rʪ] gS Jtq5eeTN˟~9QYQ4R>[4DgJ͖UhoDhZSiSgvqG$((B&rеJUYnP@2F|C0 a+O{S=Jl[4[LwV *YjAY=~gL@ ?mu7Xż&'aft6CdEs'7`2F. = 4Ke뚆:RDG0zsiF;J,o<8_E/|xͽe6.VSv\-^pr#!/%U7mrVjO`?; upx*VLC7'll}F׾x$UΫ*}tfA+?Cs~}%i7 jYǬ_#?>>n2ѻ~yuᯝ Ra}.J{/!>H_*'˼f; cҰ,VZ\yWPd(.3jaY97 6C+5OM#_cNjQ=撜DiS\*2ПG6bC >/_?h^wh$"j|_ݻw-=iFݶ?#݁~'ط~M01\}+YZ sm;e>y|H&|Ƕ׋/n!.`ߔxlfR*Ƙ}ǩ&H9&oH;%){fJmIo跩R~ʒi1_;_S&)~]6Y׾r@{;6$MX,Uwxև^zf4w缠b˾c: >5ϪEԓICTATǚ->>>տsѦjH}?C*1֥)ZQkx={0J12/.Ԑy7*B@dDCEi҈Еl/zKs]ɽS5+G*"E^UP~JG#DF8q&2xqvx-!hp#Ը#Z5kyޫW夏8j{{Z*K,Ek#dĜ9ĒNWOT{lO82{qfDEʚf:S0e~ƭ^'wwCN s|,']YUL a@EAORsW#W@U͌12">NljzZ#=ϧB*GrJJî: ́$(PЎfJĴ~5W*mH/?Ǯ͠Sj'NP;?5*'.]w^wZ0xk+hn>lF*U .Ll@%˥7b.PB%4 wAg?WC6 '֯0Q9dw_קx^x 4 ǥaw+d.{%_}:Qύ6Fv&s2{0WYiT+${ڎ;o>Azi"bŃHCw1ߵ{gc8svxhi=U{rKhxIn57uJMܚGj;SWWOQ77&dX2>A}΢2-PO]!>5˛fx8 bU^E$s6_0moحz"F$a\&/}֝ۈIIr&%wZ|4sq]R:E|9^}¾-~۩`y46qˊ5ROF `OggS@mC4&+2+3(~V;}~kOWyd#y؃ T{,htBDڿӊp!'5I}{_~SQBR+rƔ3RDIj=t\*9*2DJ^yWJUDŘNmՔP^I/^hWB)BH>5y:A%\%i}A^Gvqf)G5VcYV%pZ+J% d9kD}Qx0PDjP#ŧ(WE#UҭQ"[Q<Sc,(x>w-~G7Gztp"*Pt(}{Xsx8>)jF̎3WNtUy ֜/==^zls.}#rC>޼>(q:!!ѐ9. L-99Asu 39qχ%*)heOylVl/q֕7G7t4پ IQܥ><3<̏[mOQVɺǹ٩ nm-0aT41='K+vkv1rfJwP݋7A{tT uHWI0*LE&iL#U+wei ٯ0U7ym}|nهâvnsrQUnB5Jl|?, ~;z*L{I.Dž5R1Zohd9}(-2Yn_P_+GKn{#͏z7zG'\}Pg(M3f6C5mӛ k__%4ژ47&\Y\Ms<'jY!̟柶ϕ83Q>VU:pn;p_p/.?]\]1B/ ̓mN+rm`O 9,ۚEJ=Kݽ n<#»g sr!k:Oо|7>g_? pMRHS_SdBUa_>zU9lBï% XꭺT1֨`7^PI]zmliMzN[!RiG!M48_/K%&ZxY;56?ُۡO*yiʿ3D>V3sˊf,e%NJ[)AIp*Ztu`fnRj =Wgw(k"RGSHHY%Jw:o3QD t CԏE[fMss֋s(YZR*] 5lq>YjT ! OIvt' QF=p4P3k\AꉧՌI>%kDPZdRC-;5'vDžx9DcV,w*Qc͔3hJNkq jL))ufZNZԢriD)qFOZx'4!&Д2cÉ"%I" w&Bt}?-H!v8Ь5])TZ̨fU>%XSq{[GE#==^H[ェU)\h 1G:dǁ>,x=KYwn&ewp˶k<4%i|cۀ/o9oS'Ô{K;:_!^g.m&k&5t2syG2Cjg3ˮ|V\ =ќ=MmFub8x)iy Lw:ZsVs:oaJ:ypKJYJ*wÍ0ϸ6UKyU̒0*'M,BrJoh}Cc؏%{>}[O*ȍmYx.PרWXVKۓ_F2Ůl5QNgFG&>PJ)"^Ջ2 jIخ;P[ÛPrbh?jtts7_TNgR!# 6!wzߕ^ =$K~`wgqk#a1.Ow ^+)޺99 9],Vrlg?}._;UQi/Zq /MkknNh>gR޷扰}4ނynJ&Qird[BJ\>>yhPt_ǏkR+ DCoBKQOP# "2e E=ԉ}N'{TW [0^uB0Њ.U@ 8yc֯qX>ۧ&b>Q#Ͼ^}Eۄc۽%䙝qSo3:HEYX7ZTVUo[Cj&_k/./- ?Cؒ5.uA~k+lz!})`GwH 8-5?bTR M"UyS*0eU)_ؓyiAs=E٫Z\xG[h&7W\s ?kxDz讳:PC }v a(-N:/D:jB3wuhiw#'o:jH]תutw4Lf+Su.Ȫ''t<ȕn-[BW ] S)<U3j=Ws-)d'Qk!'?s,wn< Yg9LgPiJJ:׿!vLju[Dt8Tyxvʸ*g̍;<әz ~_Fzё'i$k |l/7*]+^mQ$S] 8NmޏtM-m`?qb*l.OU) P;rNkuTսF'w 5UDs~^]S`r꼤=tV q08l„23~QE&Vɧ I{<›=ΟLآѴDH@MU[~?n?{lx\g1먼XM3ܧohW:ȳ$;WQ}^I70;كo5Ka vV- H+s75pʝ3}R]:|N~GsձKtC+y\ ݛSB"ӄyd+L,EF=M|NufiGyp,>rXnڽ۫Lgi] @;}d#䃧AJQ,vtǛuWöjcÊ{ێw5Xku!gjX_qڿ~cvtXd4STY ^jaig\!k%y xݾJv>` %-\MP>[֓B(phs"}YݜI45_eG[^U],*;x:mC2~㳸1ܬ9g"b]sc)SJF$$ D½OʻksO_\z<* Rz| 0zK.Ѓ3: Zk.z v Znd x7/_[eY$3*9~t9eHk+3ӥTQ %'\3RMqtG=5z',jA郬ZJHQk+ SCwD9҉:QR5)NϘjvZ.&U̷"jtT/,*"*s3CD=夳t={QDNQ%)jkŜD71CYvuGQ^Seg8d$@mNSD3;4GĞE( <E6IȬu_Hp`II$gWfEmAxۿ֪#9S>BVH9$i,5~E2W`A6=Iwsm(_'qQ^6kpʋWȰ߸ CQѫ󴡋.m/^d8[zEʫ)r1iG41QA( &ˢ9*bSp5lM9L !SpêXͧ1{i뗧ݚL9F GR$6DKu-?w+[ܜڄaVIKAeN)Qdu߾}29οz\P4KDEo2ߴυ3 0؇gdA':6򜃸M_p}kؼц<Mi[=.}U rM0_7nwa2lw)cl`6O铎߀\ž>hwܑy3i7U_$q{Y.]=pRb>S&PЧ58`S#+nߘ8~ 5v퓡N.ccy&M {JK^f!8Se)˼#DqXmY9R"e:O<߯=~oشdCqzPՓ0m>X\XҠY?+*ƝmG_&QX 4jwOutlsyzevl;VݵXvITOE=t3Ri}hoؚg[lb$MHI~֣ۙo)&wE>1Om/v\]㶉B:K긙ʵ77mgmno7OT myo*iqOggS@}C4&N,+"$E3N8'=|`[3:p[q6[k5\H*UCtJTnbBԿYP*A ^f{DJG);_S -$YOMcH<Ƭ.dBʎ4 EJ$9{ђ--%|KGT{F.WfܟhdDT@YnG,ԝW[Eu*?Y;JdgӱJKLͫҁ*8P[e_U:UK<*H՞;ZT:K+k[c~*N=aOYMQYJ+J0?a9~v:#̙AUfB 3pT q93IE%V"q0q!IMTPj! D3߈%̩Wӻ^) ٧)TV@q)(wn0k"̣br5'dP"n޴Hѷ^k'p7PՑQSY/RI E(;m5VW㭟x9"qtݱAv^-aC8޾ [VOKa`M"|J # ?:;sIJ2*+䇊"5?Z В*_I%Ic7cRUytZ?Kj+"k~? {T6OOvT?R+VgS;vfgߕ!EM&%FL>=ŧRZɰlszsVmJg3kV)ptK)^Gn97/D4c1s=)]bӇ{_enҥK=PNJ` :-̼\ G/^RUiLcweoz < K}Yc6}rOu4IDCDe鿏l׵/{ojE%ꢵT:{tSdGBNvM4iɤcbhjUUАg4w~]h$jPApt&ʡUxgR LWBJU!Y TkdmJW*r/jf-)Ugq4h_CHkh S;#vB.Zm$P爀/j;Q.*JT65 epRSH*A7PsTW_yjq~~;f@WtT |oC޶ 'p!-e}#oD:eOQK&j =na2n^>948>JzZU"R=GzAO}s-v1)C+9QnT(Q:פ7I+! r2xۏ MpQ4k:X<&Eew%-xLG+w)rUgzoLOc['T˽:t~%jdCbd jcrZK5fe&`q$Ӊecz-&k׏Ø#i6k 'T[צ.Τws wTs_!2+Ue-.U< }F/M|z>&cUM=]!`Gl ?\sqJ~;ѓ'ˆ{N+>_ҰkM-1>]ۚXq:1璗$6{*LJsU8o[RuƄ%y]کp^ Mxq(i.%7kE8,l=&7լ;USH :P8.?)$''Cn xwvԇBiOK.dozO,?VٻӉJs=2n=+`gpSSOOz- y^VViV~ 'V\r5SO=և&x5u4V>NNt(s|:Dn駬UʎyC~x>\d:-R^Z'^MؿhZiV:UG/ ,o\n.Y{lUd Es-'\>Uo٬gvֳxDx2[cV&pjv`8F:t_2K 7 WO?ژ";P]s޴Ff-s=ߝd':,Zr'kQz}ʸ\Ws(DoDˬِ{\fT#T7-UUϚe@7YTq* HhO^ϡZʫFEP%][GWU,iLtFָB4C>SN5YHRfOOq; U 5~.(묐0=>2=5NV}%2ӧ5(riVY}.<>4d\p?橈Ed]2]- c~C{:o/::U37Phgݑ@Iy>&?؟#zu_5ræݽ~ ;E͌\;>Ctb }^uc(dry.OBf Y>|^C6;S 0Kx#ι{‰Bњ3dM"(:tnwƓ}$ɏֶFŧ'yU˃pxX:ke\"IMQ |s%]%Ɠ=lC WiwfJzs^"J\$ĪmIJՙS^7XP8Ris7H.]o*4~ݔq]̭ daEN}koΦ!>ݳq6zÕs7…Η6ĆV~0C<)BKtT[k?یp8xQ0¿ÃWghHFzf F[1'lѧwAǣm4jT ŞWwe]Fzy]*&GF¼>Lޢl`XܸexƎ[\nQd}e}W{o wjҨ/вTY r v1m}˪A~GlxUSDuDiYo{Ms6\⾾`wfJTIFF*6z,l惫`[mߘ 4UcH8%* =PXӌ2coN?+S$SmiN " U!s}3ث{gU)Iq8qX/a G$TQR$xq\u[[t:"s̏yPwIB4ħC;\TxHpLݐ9,x ̳LDգ:YSRsZ*oNh:ˠŋ\S&z"&OMVB{^XQ5fAEr'Z菊? A ֋;]SU'Z=D:GD$=]@SIS+Vw.]F?Qv؀mS]CHW!t_,\{w<&}l)qK vluW(5'pcWyG;M.5qTܽ]ǰ|aٶ]>̴PI{qM6s՜6aG{R_4i, &m"9=6ʹ"R&b,T.ؒ7{N֕?uHԣZbyi4rf+3xIƽ= *,խy8w$mHvKÉ4@LK-ck |ԭ5 93Ld{n.N?gbRytX% {9)o!:\w*=8y~A-GwAۥakk;bNUonOYMQ5ji3l4 j[U}bAmM4MU׺ 6~%mmT>ڸ~ΰiwM7]5>;(WT&Ʒ<.ܛF[sT5INGpX_SN*:ʢ8tsgv"=fK7t>kEꅞ5Bک:4jNkLW 8yHD~KGm=&*0ȹB14(ڑcHYQ2?Gc/ Y\V@x g6/7/JKt_!s`먺d|z$-bxhO Cb qK)u {^/Gku)tfy׿_'9*/#~ߓ_Hb+}b鷄3yX&86}?w/~Y}:(iʴe?#`Yf$7(e3IF'$ՓO1| OӱV mNJ!VI]Gz1)oT'>FW寭h/7Ŝ+YxŢ_>i˗YؖnT? sJ:5FS$7~©6.Ƚhf϶7xa~ jξ <$z[o>;/5Cs[wZyA+؋eԾq!h82/FcԲ'9쵰F}|Dp$o:y}b];*SF4/xɧ݇׵ecᙚ޻wɜThwcڦaBOU}s=7~S:[OQW 6ӹ {? gޚ@7yኒa*ErDB]|n;Nh+ȷiO]x~t* R%uz/V.:p$ҡJԺwQCKKj z|~s4 Jdr 'z%=K;Hy3!P 8D:Q<ÜW[qf}2>By1}O8BLub{>P̞,f:31:C9beSɹfGS)"G8&8U:*sМèlG);VGӊ,+|:!D,JaG~$I)jVhuH3JT 9t"9J3kA u|pby,oQTqZyԨФGĉZcه8ʩ YG9|qEG Ss}#{7:3!ԙ'ѿd՛ ўn35XMe LR:per 0@X G1gkp;# *p*xb o=ȱ.kq\¤5szk%\ Hvltfwgw}9~ũj3"/Sby{?x^`"$}T7jɼ ~}~Taw|a2]W?jv>Cv4Hf}I{pw"~fltwf}щ-E%& z1I\?[NeX6Lf ӼƁ0p")Lc jJ듲wol~#k)fe O\^^X@֗8%t Z~5CK΁xX@f:b[G [_ ^ʙ2NŔSՆزsp),,@ +&/SN=ӱ1L-8Zu2rtg$j.܃*UCrhqjNpϬWH댠O{;Z\jxS15&Ig2Ah6)(i[ W̑qAOnا<=sj ZME&ZUkѲ%ک.򝫧=8UbZOQo*$<ZAC< 1'Y%&&ʆ>IS|S]"!R#Zb#H'sgp@p&]>ՑT޵"Tꎣq(P! 4AD]+1I'4G0~RG ʮ*21Br838]Q!3?FG+C>a}w<.N10!Xz;1AT) Q_-{f?|7%A SPk/4ύ4DURHo~idE'r&j7.^Wka;-+juR19y6̶>.,֗Nt=x iGnx\ ˦^s~eYlWAǛ<#b>}zsBPT#6XZthG;~iD&4Rsڪt٫ TuG?b:9KLt=ywyTtm8*i$G8hOקQum- <N[|F_OнO5xd SX)P f ^@UC$K3dEV=r`;-Qtg˭B{Y\kv Xumr&H.QoRL!Q~Sa k]Rw->!ѫ鑟7jGG ^gjVnGLȦhn}SiSsB7Q}}bbsΎ 'Y< Va|VG;pK|ӈIXxג"HiU-3|s62q$ܗLM((Rʺ{¶awLuQzB)wn6^=<]߱on'($Rb_^5{ ZԌ^?\*hVލ= 5h?ɓNhȔ&V:Qz}/©]PT\t7̄z!5_#yA쵑6fZE+Q.8TRw(.T):+S%'!HL*P< ~ ZliC[-[&TjwNuhlnB]::\/4tzw%S5fgBQo'y&&`iDW5sY%yg`^OԬ1WjˉLL{k^~2עy$45sƒ_J8\kCѵUjUOYH'^@GvkA@#1&sԿ<^g|+^_p3S/?_vW }*U%謔Eub^~7ej ]kݙЯ NUn=uB#4o[*G=n@|^[m.gQc.l<$K!Y͈Ekv8Z XP:#/q6P Z,.(n/{'!}_zw3>8zll~ۋEI`WU~{%SS>иhr۰ga\ ԻqsbL[ 9u)a,:,z]k⋄IXz3ؽ/u4zbx6pW0\goOʋa8[RczjwF=6[v7߷_[ȭ--|ߊځВ|:?Ca]TZ˟`"xӎk7&8Dzo-hh`_%'ģ(J*fjsLf$z\m`-Vv! I/ᥢ r!$c3\;)?Xt,]s2I];Eszb9VZǽ ygIOz:*%gJv8dqb_nw q???kݹKCNo{pV$іGICN0gr4KfeRަۆXã)Fʟaa#oo?f{寣+t=ZNrǦ=&gTvij`b ?Xu]!9|Rcj}s*̇+mmZ^J7i |,@Ȫ`OggS@C4&no})"4$~53灸|`1VXv cq[F&h9BRU}9oMPoɬ* m] 1MS9t2j ~ֿ\%RcEV",]0呹Xe%iعSehGythΐ.gnCc;H>e)Z@җ\DDt2URUq䑛ӉS.edQ8:G]ku~Om$kQ׬ٔCJEg=u&ZEH!Yw8QY0TR))k-|BwvDViu(B:Lt@JֹiGs8M!j3 $9 Qh|[sβ߶|_ 8/;*E1 *)wmMkG(کB$M &]k]dpP9s#O8W'3/~'״Q|oGvykDoM2LS}hVbQ킝PMlN\mNm6;Fհ.F"\HSK[ôtxN#a2h+7:WEg#ƾ<{\\lK}?yfeW?2p$ ɕ*P;ŗI~Om3[)t0)ƇPoyf]zuleZ+=܃VAh'=_X!bݩ>fKR]'0B^kR=vt%f܋z}̲G4kw&9XN\#DW*gkń~1 mL0By6?ۣu[F' j?h;lǹln\G/mȾ++ Mժ'7~x!RC.L+ӓB_wf.%pDQt\{wPU~-SEqn_J:]sk2c8g*8L ,UÛ5đB~,lJ֡ص>?ۉ-UrEk(w:|*}jvjTzY~"**asLs2G.Dt|slޚeU%2ZkS[Zj 7w^Xi |Ty~pФ!.rA\!7T sKw?7%WZtUȒ9iF]%bֲ9*{ĮI$UI{//|'.6#.-Ϡ n*m7YvW)z؇b~IȴQ:GR0&#S'S QE:CJ ^5aawL<;buכ]yZsxQ]-SS<)# ?Lu?Sګ]Rxn*ES@ގCBrekWf:J!]?8юD|GOUɇUyԚΡR)דU4dʽYQ㫶\Il% 4-{~t ""nGоq Uiu:2C^\R#P`=mRo%c.꼇FTG+S0$ڗC֨|"˄99uwUP!^Esʜ/ЩίKDo0{ΕY:_ةBzu >C:cIq3|5`CJ>Τ5k4QI(>VFά]اx*L5%4&U8QH 'σ\/HԌN"yd9E2ݚGA N3E;FqB.q'w F$D\Us2AT7ky o}L\x-n'X|Փ?4W]d%5CM9LieR{^Ϊ[Y?tv}{]ZأXSu6L8 ދ\kk*Einyy}SC I̓e'LE6K{I^O~uDCM6]ֹN$ ?Oޛ{ nxͮ"qpo0y4ox-c(oRK?[➙hq_WmqB?QMoW)e`nj45ҡ\m\yү^3, |ǝޯyF^?滛8*r5\^ʥ8Wc0?Bl&#O$Π"^QĢ} ӻMKMIlT^CtJK~ꍁuѐw16v75ַC<\ʙ>j),,}Ztox97@ڻ[wxk%(p!a ý/ʚi \ʞx=ʌNTbdgP. w'N5lpT'EOc9kҤ Ǘex'-9UP>H[dQ_'FyM7t=oc"N6h_V`)Mʺ:yKӬ}eޅxl˯ͳ<^TTo+KŮ jeh f"@ޘq˾*:l[>5aA NxZ]oHgW 7ak` X?1jz:o :oLBM $nׂ8\ΑC[f>5\_9-OYk>5\vX_-23q- ѡH](G?ӌI&9kggf0(*ty,^{_{_JE~#sEk7U{#H.S=3q| ww%?4]I̞*x.+&QqeLn!֙jw^O3ǍEˊP5/yBO_j>/:e6k6L{ͥ6ϒqѣfgSR.is?a`_fzWm쬼^'z+گ{~@=qbUg9Wshr?{ J6qM]Ƶv5w"Jep=5RrFUL%2K%\؟py-y+ǪOW-]]9ܭB;K7zwxۜx+fǜnx#1H9.wAѢwjB+_}ύsD]/:_ؽzH\qyR *^/5+Ob)G)' stk$0v1?'cCxx$UEn  n{=KifDŵ-Zq9Ac!XbB" 9{"-D<;bݫ,)m_Uݘ!smӬQ uhxie6#?_ł=WƩYwXR=]1q h|,Yw6sr|$d cZ󦙯lM>y<Y\P rv.Gsw}[~8}=w6z^dIycZoM4eY.ȍs4GwU> OggS@C4&fJx"+),6+Nhj-G) []0ϸT fE$K};h͞E?W;FԵ_oN<eDw=H8ϩV'5>|rdߣɎWzOZt\-̇/g{2׵3*]IGؓȕL=ifRMפWvәd$pVin~}Wi~dBdj5TRTVB!5D+pBcyVi6h?w:-0%3Χ'R HdME4zfed f8ɏ C EqZPIRٳӡ[Uy͝ik:qZ%Y'&j J8t\nA5'qr:HG[󐡃h7὏C .3_4M a] |RRymzFnpp~bKccҸCY/`a#I6j=WT'uwۚ4c d.E5{G2$M32VKtaJYIzZӮE+lj>ˮgCw *9u(W|F}`t8Skզ̋ا?1tiˮdtϲ,nI4ў)ਖW=]mSiٍVm|5x&)ZVf.~d[>eΥ; }|YgŃZ*N@WS#*>\hfOKv s `}*Zm+I(=Djbwm}nKYb|[k1u{Wҩ_rkwz\Qpn/ v"UI  ]]3^j]췲tnc2?s| .o:^\~#Fw& w_Wtk(cO/8`k~sܽ:Q4԰Vq/i*t^ڲiBV%Cy0&Ɗz73ϯJam틆s] PUjY\0O~&1M2|T6IKVL+X߇ŅQoD% (_7ŋ֢{ߴ 7HͿ7+Y6.:(Q q}.F:x3>?HW뷇fΩBAe )jٜ累~M$M^nCuw5k J\+@ 2TYs{?F,U:ŞTcKUYGp*SXD*]Rɜ=*[S?8t 8!#tDGN`)s@ܟхL̉AP+GHCQ_ɉ/u~pIJz@ja\n-ӒK@0 mӚw(6smdWL݄k_.m&|R7r]3gz}i^Hw74 M$1һQ<_3NgO/ U/MV>ĩ͙t ;p/C֏NuɦM[D&z5SwG^ߜ{}%}vu \2uP-p|a;dQBu4﹆pr*=rVNsbYcr/坟Όb٭M"d|T$yhxXW6Tiuj! iZI9KiAU ;OɯBu f#QJH'8jFX,L2ѺdB+q,BwĹ9jYBV;CciULp7rZ_VHѱ1MǓj?C7߼uBq,:&6?猪[>XFʸ_~݌xSO>la0G})QxcSQٵ=pQƃ6A4ޚ&m H @57h9ȘY;Cn 5H8(۟yZvd; HW.cj*")o+C D#5/I7U>8J*L"J{ -pΪ$"th ԯuhyݳ8S$"Ѩ1pVK>jM?ܵ WTpvmѺ׬h,sg!Kܩ͑T#%l *A-ڹZ5{^G$]LUnlpx3ZZe?Z^s*s%:?Th u'ɨPy NMтhGܹ2]*pT@e OxngpP휕 "]IЮ?Vդ )  (H )QəֻkyuAλ_0WP+/~D]? F쥖}KD s7q: []l"*Xc A]8:d+S$;y+Z )8)xr[k|eV}j ]jhuݺE ` tR0b-Ap*Re ¦f{eŝˠ_ƃX[N<ZnqTޝktc81nVG?+ rrԦ=ܺ>5D7Jhf=gI)fFGCM;gk;b#~'yUe$LIN[)nlN͉(G/1]9;]bD+H3U4d| -._8ނp}ӻ=W~ڿ~}Y޻rYj}{*4S`=ZG9~t6qoz*уR壏j7d2-D0(u_gEVWO?7hٓ9x_JwF(Y Vg0Av w_{7C*Sm{U}M|"7WaLXiEB}x!>yɾKԆil.f5չm^ }w8憻wեn.=/S]7h8D!~_=K)Wl+^2PmFJuv/-PQm},F͗v:Q~ Xu!~?.96~檦Ca\06x{rȏNxM/HɥHL ^6kh++h{k# i[]'N( }EEj=߁@Ͽ,3fuTD+dWWԷlh rGo|% 3Ϲ@Y9ZTZ*/R^ښ#M_N{I8sZyw .IvjzݯpdFm*eWHQWLJ*o9F"!k:PP@B&ΡpBV< /Uk^"C-5\wY)_,&Z XmT4<>J 5:02W*<1I D:Ń\Kgv0H-vjݟѴJ5vԖ$:{3B~CF֡F Yk($DR3ԢkKG}bap^ht M98wޣ~_[:$z, |rG]kC|@O .Pʐ7_y8\CX;j8̑۷5}L~&q0#Iט05"΢y;Ǵ7;}"]e&(^l%]1FqZ{NRo^s5_J/ "Bh+>[s؅ey|s~8>IL{2Xfvv< ~]'* >U,F;--=Qdqs!&'CgNC(l|L(~hӤ:Jlq!3Fr[ߚϤ =+Px{0h\hcf~ʚOggS@C4&#%5%53 Xt;kf3`lhHr(%b@y.։uz̎Hb:"s% ﯌Wxz#n&q)3ik%e=oOԬL ;^g3L8Z4E9|tCER2cm)n>ʠfu^$Y#HdfgG ȾfԌ9vZ"p2ajfrS1g{MÜɡ*C#9ɞ('d)(dd8 G~(&|SM:ZW9Uk̄|09\'F7SF( *d~DϣZCBFc|ǥw8{s BNMt -k 1RKTS`qܲnE# !&NG 8k256hB81vФr SK}^fy `o{Mi%aѺK\9[6#VMmElk]ޭmkEqK4j'2hȧvks.6]S)-cp=ۣ؁SonN{U ^KPI}>'NliP-:F>NxQ_7>K-wl>t.cc\eA7rkӪw~*b$)te)崿oX؁^r3I߲p4TZjuٵ^ $XzXr6Ϗj|\Ռ{9Ml b>rShfXzw)J$A^q-Vձ`ea#-CtsnNsh\>5yzw+sUrm s[d>w/8Ji 典Wgru&n(NOvm/B@M1=F-eKN{ ^Ϭ)TlJ1T,>+k53[{YCt&({.g-GNEAjʍcvCsУ)߭~b%$BGDS+Jt'rҍ:8Ĝs{jF~qA ޹:ŠCvgVif:G:H?_F2"vU5T[;kS{в{sejWڨHԘh=Q3{ZIW#5?2`?{w*}Ԧj,N]T?rugFIZ^khu}.5l BǒQ 5ܻwV#*LJ+uCjSGj&tduv]8Rգ tf vXbQ1uLhΚT8l%YڵC ucR3&I+9S4!ڿD[|g7SmߖNER A&8\:7˧}9h{-d1n ^R?'y߹tyVĦzNkx! D7^ERbsUDb)[M.F|"QT8{\ I5H^7m΄`ݓ 6'2S77<A<u8xc@oreK "|I[ޏN)ykyo#c(J8W];m%yQ*>/C꠼`^%<발 ݲ&R2 5ObcҗaFk+ p'-8w ZH/e Hʋ)Jx b?Ƙ0N˃3㊯UWskTؾ<*zKMpkcTEܿ ljr8;ISF_elqk<|sT u*i."s?M%퍑oWrxz%g-_ig]].G|kkǶ=M|>5sЎ̙B.҆[ӡ#.CWFgV[vB!PĶ7h0_wݝvтJR@)^:?"eOǕٿB1]ndtň̡*Qu*w2k3kET\>$EcvZs'R5֫aΓ, s:i,dNf1D]C_"%-BS+e=/u|ZzSVY:"=)ssΝZ<dtī}-B٧NbUtU%D0\ϭ_bv-gũ0ϯ)Mb}=݇[~7hϜڤ1W=ˑr+->QSic:/Nrֵ\)S&},RR)n2̾ {n3m,S/ʟ|Ȋ_kۃQnivq_CŒ)7+\ RW7]B6̑JWM㎲I6sc8wǛ~;kc8 7;{s16>w"!Qt*I6p4'eŢI30xq5nX Eƕo9aJ @K dndP[@TdfO5$'nfQ/t\Hb]֯jYA}}[hNY w,N]U9SAAQUc?cj]IKd.sGdUN鈛1gWjAG*|FjCwhOhF:d:Ō]pj:Ңs+Ok]pt_}$@BDBQCc+fDk-_'u~U`5XUzz<1t843|#8 WcQ4@Hv/>}[@wGf8\}T_R)۸u(K հ9pqP-O\\o(MoZ??.NtD;^N2mnb`#m@TőeaC*[^>iOubMw2j!={V]:e>-/I?hy0oSZQn+L"uz\:SkC0^Hp ӛO*y9|Bb~m0W=hg⠸/֓iS4MyOKOggS@C4& ku. &53 ?tvՌVn7gZ-<"FwRR,үUu|{-4 ݿZ;>39n5KVq4Zϟ#st gY8T]h &r5$(]9SfdҵV_;Z=ScU~h͔F5N'Y3SPChxϠ==#ApBZ佲˗s^Jt;5׿Z!-0%8뭪c/H(^ژ`/6N 9\v[}aOh 6gla{R\ 7=7Af6,^Y-՛wUTc4By}<L~__:.Z7%ͲO.Z`es!ڐ<#ϽQty25jN\ꥧW"3L5Oށn զd7Q]4iEþ*ܕh SkC}$fwGgt~Od=ǧwOGc{Jwxϛy+G`,3y^hLc:Sa9.u; " VI,1]{maevv!.DΗ>z{9NH_jNUCG(4 eG=%qRi|%ocfK'/*X]xNsu,:Yڟ]v/7 ÉG.K|\Y`ZG]KXNzjZVt=^$ Ɉ_y4_ w%7~/8|8IRfIcAV$N<-MlL/dR'-h1<@l 2_+5s#bkp͚j{'swD.`5dzuHm*$oaUzt^q jF'GK*LA,w^,M NWgZs|z*t33wuj;T"ZY$k.#6|5DGjg5Lߋ΄],N:]_`Rw2T$J{tZc0ϡJv/Wvlj:s.)I\T̲8ƾA0եjʴЋhF%H5gy*4rSP;͟Z*IMhǛ5oE#I0`֒SV BZӌvvp3/YCd5ELGX{A0rs(;v0DUY:9jGW NKf~l1iГK~OIJ'M1OXTE9=sf·l1T23~|t$zn6:Ώ5/?xa8nm  1#30[wXMkt4ګ[[u0)S'p}tyhn1,0 C}at,r)nYW5k]sb/ôŬzO:+ ɉ)Ig|5w<5[hEhpA?Zْ!YlMk>hid .?K?Ou qxaɖ {nA_лTQ^܎u9\?J)olnvP;Rwo*B])%i=ҝN͝]Zc \b?!+I43PMjt;jm jhoS&tGi =9}6mH8Ii>dC(%WӍLmw !ݔfALlz_|-0,yum-mnz&tR\3ӽmdg؇kWC27Ҕ`م>klρXnd,|c 7<%z&q#O_̶\'10'+2"1UJZsf%ƴoԗݗX?/r_A)_cu Z$L[o% h ?,U >:sq_b5P8vl}.>ݰe)k+,f`},ECLy+ۼO"-bt c>V37գ(.ikZbMf}bK]O^?Pؿ@^5=@ax?nyq$fJ&Dͣg7/uT2:'xyk4,~ |NLRO'=oq&mqɬ7D`64N>-8\eC`&%ߦŽ3f@$k\~JUZ( ZtZ%r#Ć1pgsϽˀ\ ɕ|cy󝿷أvd ơu72kZd6mn-O7Q9 cA.&.JgܶΕ>!˿V姷I|?G6J yw.T;Yn|YMӆÊ K,ŅM3zxYQdgꍟ\dm(R5|Ƹ+_Vn[d~tT.P' 緻&vk" 5Kȟ*HԌf?o훧.6*)j_.I{tu{苺vĻ ѡf JLkԞri5#"e2.5ƉG^;a&THͯp֖*)]늸t(O~4 ;!^ӵqV*6R_jx{(Ks”; #;*2#֣!jC ?uu-?)EYkA͵wW#TgOxovcK* H4zՉdHjD)FCWTkP fBNs@JsRǁκSXv9&NL@'ZԣB@k(dGMZ:WED+ϸ8!{3Pdq#=mƺlP0 =U{wNZF{k'@$ԗ:`|U崕1aUK`ؽDܺ3Ifܴwz[O8h?h|YPwԍ_Sྻ촂lGgb_jϳUU!sS5# =Mq]#lf?oUvvy׊!%lݏ!wOL]%wVϣK矺~nڙu뭜('JŁb[`Ά7 mJ{_s=zv682N$r5λԽ@Ъ%*'"+u\lm&^ ^qK/r߾;%8Ԁ!l[k\B17Y+qbY?b=U2^+q׏#^ͤ}|!Y MY]8|ܥVgPnL p4]9fJ:@:8:]qc.򤥖 G|Iud]'@Cq) j!>qDj#eZQc`s2+OQksEPk8{I }ej@S,ѯykehMx@rPpȨ٤{ru@Q&=Js}h @y:K8&dHgdR%FVh^Nun4'5^tҩdLNacb?ç; !*ē4 A@ɉPBSU{O{ 'Ubg 9:kɨ¡"&OϯL5הl t稕J͜ ]t]7g2['ӗvgN%ho{#pLP IPqr *8}&6a("/>|/Ml0ɞOs_N|`|xc6M+Zb.>fPkhU d>k=5+w%׎{"b"z\w_Z>J |g?ۉ $j}?]S n85 5|陫0ŏ=̠w~}uXOy5|>ȼ/qN[#[ }y&B)R|輄{KI)cz[[Wfv$R~zF0zonj?Sœ._VZOf^D+fלk}9Oӥ Oo'osRS߹IWkazxVsU3G7ҩM[ϛiC_]kKb4ΗioC D5،VF7.lPl#^|4I,6o?ʻ m "\i&w]GeM:wRYи7V|FwXD+$Xe"q;J^;N_HsTNo/6Xau*~ŒzͿrET^!~sG&uܑqЍX\V=1;\nPz?0JS/qap{ Tq} )چH,)?6[%Mi9H)Eux.Â^C x?:,mDA5ڙvwg\9g_;LnYUӵ2.~e,;F;i<9$Qnu*oG5/J곸&<]6d)^u >6[珗Ut{kcQV[9|]ҭcWd : .Ɠ5X۪8Kh :@|XBAUQy./Ͻ]o88ƅJΑPF:ŎiTq%ϧdҨ$.Kh."#&}|C3vGuXk2\_{F"yrRTzjA;~][[H6[Rc8^ի5Qs_NSsv"+A:?!*爓"qԜBF~&'B]$P!R#*{v t显U֜S*YHJބh/YPvVOhV G~޴纁j-tϦ5.$λ\ MZ)_wpD=Jz^W#=bSRozwn(˔ЄiJ`ħIA~!Szj2 E\pbF`RГWƸ1/=Mڧt, 6XhQG.qS/jG#Ü~n5w$1Z;q8V&lv}C,ߔN^(R#i,Ñzsg`Ĥ;>j\@ /}Ӡ7ܳ~˝ކɒ6-5qDd7;Ʌz-1=PK'xρ֠s֜?L4VKv-A -Y\~C]6y)N~&hq}$kl=xe=Elճ=K]h5T׊-> vurb j|jϿ:dSNEmo:fVX-I5liV6ׯ6Ct &$,S޽oa$Y1.e*'ݰ$[&v`ZY_7NB㳻{F;' q'+{W ^55}X\8l'G/L[S {yi?WB=lz78ea Ok5v/T#4Zrs7OB]fvܞ٥2_&9gATrOJOFQ*w'jOE<;X93c8Pt5g {Ntv5ẊNUKʠ:>Ͻ6))YSE׈*^Dt)1'"iU9vkKkNBCqcDumjfsGB"H ZZ8%C@FY[$?~q;R(Y+Hk}3-pr-HJ%:밢$*]{!N5ОNP&2;&U}r薢NtFQʤAffO5QJHfG[c63u1LT[w+Ժ+D735,{xWa$!bkךQƌ@ x9-Z\Ij됳N]&-"D pKd<ƒB)#vY&w2%"TL\wqk؅.rCR]Ki:sϥݽ2 nhI}GTx,Ϛw(izf;][](D;F }/Dgbj<ֵji%hmJp2>?R;]hP|t2Fڃ{]V=:;+]rWqԍmfk|~Qvƙ])6AbN\!kH N659¶|ԓTd m)__-4}.Ygߏ츕%CAYmi((5pճrI31dhsLsyO1rhmy.b_ywUs"j%|,*Mg/mJR8\-]-q7~HU.l8sY6e"\Ȯ1.9fEƏRW:H*ZZÁ}ize{Ɗ~sѫjr0:K@+sצn6r.*JI8{kpY^h=uҫ*rq͛sq@Kn㩚2`Ns.=j{O͜Z5dbD۹v"PE{k蹰M<_4ޱCBې5KlkݭpO_UV .M$SF%67 m'3>Ȓ('Og"4JACA%#W$/n nL1 CrQ׏3 WИ$,5(*NC[kHպ8L|?&JsSkԎ '#H&nmMf9vDB<#4NaPg\yшGMJ]BDJV劐5gVN Y'u+djsE Rh;Ev8>~he˔\TsiA H[{ko@աRWbCkiکEJJITI-dՋHQP/$]+TmtGt5jQКWT4.OjwI&$IB1kxlZigvTh-fA*Z%CftT؆+9oW5Æ3E_t|ADFkO",埗+C*w?X}HCI_0^%8#bvu7^kkqW(}/eW3&3.5Qqp %몰9+့mE8bmd{϶},XbL ke Y|.TOggS@C4&"سk15 |ŷif;#[֘yR3Z&μ䐈"BSWowEx9{kIpDzt(ejѱ{"%p ;;ьU%XEw1tt#q})RQ5*S q 8LND;lQAL%ODDj˄$[vgp~MK[:fx]w r<ܒ}K].'̕'F0ܻE{:DmN($Vgf*8Yg!h\7.)YfͫD­/]8)J(N0L1EP JBmrEث$S3VTQ,BZ@"$je]dwSh +T88TU PFAuvjf6lUr8*rU8Qsӭ#8c5gug* Aݳu9n{_:ܐwWV콃м0|DZ ]7{y$٩ò`rw˲{ʥÛT'տ71~nlho` jq}.\B%Znzk뿸!EV mvQm 1=ew$nQ.Ccr7+zDӫc崃Ц\ '+A/oV~Vi'Qo8ُ]w6IioǪ=FVPEK"#=Ҿr<#'φeF dogXP )2E^Si%6G²>&3 ` 3\.Eɫα O Ϛܨ%U}8W(4;իٮ*w _Ɵn-&/X-E-xG2w|͟Zq?-=)δlxBkqXS!mql5RƖ.,,cU*Aƕq'!aEEbZZs!VE\jͮJm71W_[:*q\MIf[:V@3yʿ&^s ~ue_Aq9I_ w"E h'!UsDļ3DH}ԋE+zr,G7SLKA@,DҥsRgөuzN$PuSCU"\ 5VZYy"B۩M!KFGʺq19*J뜍5㫰Jx^&dHi)&I/SY JRCk"gP;8NHbX$T:ЖHлjBEAqd/v2X'hV3Ot֬nue>wzI3( Z ͍|><ĻSLTqu~}}Jɓ! y1+,TwD8q@$YU`dznEGU0ާ@NMld]P @X6'ɉ)hYwݳl-W,)*D̤ ܹEϷoO, #SLX;6?#]*(L) ͕bux7Y[9łP /kyaveU:DMyJNWB4%sdzSvkZL/<< C- wuOr6{I\qBuїs.nZpSV˜8F9?ܢl)7>uJo.Ijߪ:@*i ZR\w}3Լg譧66 { J.7! W^x${'hm;XdkB*3nR=0vMu<*x5i4?cz )I/)?m/Qꬵ8f$ns]E*tpuY{?J)挤&զ 1/hViݹ!Sws8tFG|0,TN]OU)7XR֨=11Z7[;uNx& ذY ~ONSF]2Tnj~gF moO[?)IHo{y~^^*V+eAU+}DQrmƫ: oe/Vq[1&8kuZ?^\,#IglYLlȥ>1,ϝ iȋNpVU 6`13c,ggf>4j~9ߨɞΏKŬ_o}ދw޶:P?8l]s ?k7άTZ+ d Ӝޙ^#IjY]|\CՀf͋B0mVu̖E9#kWqGqh]U.WX:zO ojqЂL9KhDh#sN* α:Nz$L!ҝ[?FC=ɦAƾK ݠFk ԾJN H (/'PVaDq dH@Oh@q?EXtp#b6| ɛqʤ^[W pȧ5zh׏rYjTt ][S~&K}j\lJY~P=O}s܋YHKf#xAk7;zY:XKf7%s=nv݋%f+^\=#@z4C5Iׯ|~~zbt{:]}"'׳w0WOA^a\a`vA8O0GyVGdd o[8Lo;t1-JvSiۧzbbvيewa8 C9:W'EOVLݙ- ϰtgk)ؘ ڭjޱu ͙ zG7ӺR4Q2%y,dgﻜ~Þcٮb~|KDX'4Poߨ!WDʡxܑ{~>{&ung|0?GJn2v ๲l7xޯESГuq O6>ޠǶmǺ+~8q˱Cm|?p-b`WxkNH ;k+=\oO*9͒(''P7_ۓT5 f4{ }6V @ .g=4?6H(d+UL6ZJQ Qm Zp| ]+ ꁤ#3lN!*l5q!JH]WR..j~d3B:9oyq-ҢdEc٫:d%2AU8H@JyNpZK<}4T;UЉP\d<&Ok:GN0Q l_7 zM$;C=sV}Yz7Fφrg?| 5(_tmp@V`[ȧ*ŊY/cl6e.FXG$ t,?#u3G&hݭ VG7/ s gxT<z?g2>$%z ƸFE3g,!~w~6q{)'C?d{=S&!:&1P %F@Wڸ>17 7ylNC@m8@a]EdGO[f3;Ki2Zf _iT}[2A?zhP4䧷sj{lsuU% XhTP\w"Fk6S'JrQˍ b8UՕ|Խ Z=?~r\w~+Hc1Oc QkMCoUX97|]k.|G\+M6}W>=$-5Φ5oF0Sn8Q^ wZ>ѵ-_׹ ɂs.!P~R|8'e 6A }.߂.Bt{ssΡerFM\7e6_Ś$uS8oѢҳe-xz*,VP3OggS@C4&#m0* 43tǢɮWqxSp?˾}= {*Tju6bՠO~etֻ7nE% Gɽ 29_ t֐T'{5ӓ('Z_꜏'`2EOJsjGTDx թI|5"픮@gdQk)4LIu]uoi)DOZqw\CwscϷxw}׎woUᦎ = Y\ibAq +aj=nvH-ρb0 $}TU1Ƌo^#38Y9nw&$fh]G:Gx ʶ#|xW^[7y9~.ݫ{_cNvV}M\taR}g6Jj;q3.qKq4^3q!fb:q?4JI |s{r̞15C5&Pjj72:OeO)Ȯz<귽2w¯anCM Jwzxx1J7B-YXsLWCӴn>‘=KX}G<^,=qѣTNϿn.|*x;|{,xϵ5I@1º188|u4ukoSVY?e6%uyvnǧB}ng8={$njRKl(~5Kyen?df~CDuz!|7K,n뾕ҩ}x-{[E4 yͿҙd ]^eS#[kh.-+?:s|zGG-dE[3˩4_Z]Ɖ8xEVE#2j#+zq]l%ɑ58:E6!L=۩QK2zϜDu~֮*UGZ33]3eV‰;^O/+_1Ei Z]% r"rQdLޑnvNLG8*M:믣xu#*Av@\v5Y=E[҈k(|dӽN͹cNZ>*ATю[z]V2:\:NWOId%cB 0!2l\Zٗarb<3C6h!ẅ́{0 td"pMӞA0}r@Uvw1>³ _|5u=E7 kn{U8%=+Jv-s ^:os`\714^ZA2@c>e,[~2@}7owNLS_O'әrpy{R,xEm) K+ ~-\ j:xo>ƷAc}oڬ'MfxEe콐6?^_wkW֒yB^>6 C |FB룔_R<\F%ڧ$.hȋt{<˰~8~z΍_'S&j >l M<4s% :5:56%꾕y{{>q#[Hp_0f+Si"ͽ1f!#!%JѤ,ń,3ru^:g^Y>=˒H4h#zRk-bc93xVYS0!k>甪_*Ewmil.6ԲhTj$HDZ;:eP"T :ju gZ*J !!kǩ.5$C4 :uJvР8d\]i)ҵ-į1 =SɠFͪҏLjxJ&kl)t=?c"/ߧN@) :Q޶|~>0h *,]MJrOy |><Sܛg8)2KMU?nTuޗcQkt_:j-_QQ3+)2G¬;H!<2s{uݾ[卑/#_g[9naKc V *Šnۖ['dCvKo3F;|$_#X҉*}7{O;zGs@u#c|%k*m{F=ssQ8|y?uݱxɉ2\n|m7hA1bHĎE1uʥ(n<Ʀ:li}Q^OzGf?*SꉺŶ}gفzp^s}% 5iNK+ΑQi9܍I~z>$E.'ARq=\8!Ǘ_dY99I7H*2C4w)Rgm4p*5IȎs*ZYv zT0)ssE!Y&(r]UO(ؕ,N5{eG3u'3Sga49]uYOH"Z[TwBEi L -mӖo{V:#m HZ#}fo]KRc㺴2o"𵱳k{mv.ŒmLySs:qZMN%!p3k~WOՓJJj#q!>vS1c;K\.I~1z;v!*!!ͫr5'c|挥•K\'[OIHVFri!kh_DMJ,3հ̌&&?`lJ>K9d4hu[NGzk ƇZ'WTѧʞ gh; sHynÎ7\QXX;2b;(Y|od6Xi]!zn]BM_QG(P>,Av٥؏L"* Z4kœ^&tpGݿ'2wVY0]Po~J~ɢg־iBduoQeB:TItJw D W'IśhɌi7)zN..C8N6RcU8:tثS3,'T%)ze}Ԡ 72֔!S;xIf,h!:gk$845Io#ژ1%Μ(AvդpȐ5DS&FȜi#BJv JkgoQ\D{Jgx:INqȕfLz#e0{ui{bBB$-aLsѨry,h Q6M`k{Ƈ7| /܉SHS|ի'mbR'j4(8t/oT*UCT n}6.۲XsžT+ړpύ\=ELƔ&Y F$t4N߱b4DڻWYݿўakd_|.qڴH +f#%1,Em5˹^sMZOU@ҡ~#WcŴqjlun. +w26=~Z0XjWz^}"av_uFtT|f+cWs?ZIb#mE{OSj,8x]m럲[u _iu7u#0=Ouj?4ޕ‘۱żLR}j^ً翗jeoZ:U#Yѣ2cu~t HvZ퐟sG"\8=< ]X_;N9Ly#jGč@?ȬߡM WIm%5ɲc9CZoTʘ\5 6 GE4[!J:UL56c/ ,2I3-f~yO3ֶ졚5׉XmOH1gE7'!n2{3Bc^:ߎs_MWSdJ$vY5ėq>v&a|0uי^/IݍhKNZE:yU9RtRL͵gwR?zu'hå$>EGԞ Z=_g65cn(ϬMk7FLԈ=Pk19|Z{Pr<^ɨP%GC{0Ip֨*vVEBqKXШԜMfgBftTP;xcj̑c'{o^J/GxhlӅH !m/~w,mn /#͙kQ-uqxQb2eNtLő;~;pefmO:oϚf';{Z?ў⬖NuDha}yWgkNedIJV2qw,7I6_LΏ ^@.lvRrqVԀ"J1d5iXQbE@{-0}E kC+vӛSHET*`2S 5DtZ DzӡIu<:Ej!xճcexH6ٚԌC)LLEuq)祾xUT=_ ͗4ĠuHy_Չ옼s>Z4&f'U!gh9|Fr*4ttUD x:/ :]Vv]jtjwG1 5QXjYtJMfM;^N uWH]FkEF˵3'4ɤvBH%mYHO#4Ss^p+ZCHd,5̤B=ϑ8E<3{|ɏ?^V CwUfSV` @NN7LRgl8qZ5f9쟹fz))Ǣ?> =u.TӣsS#HAXczq2)@š${A%Jӻ~uyeD| 0' $ַK~;aߵ;>Š b/}Evn,D;mʳ2w;f5^~t'؜AqmGź$SL.oM.o2 gr&;Xw=w̉8f$Q̮$ne{Zc[±$ jl}L. A.` ULqh~+h]:YOG(, r>ȯ2wׇ`5ڏsbu/hV~U{T/~3H zT0 )]`SA/ۏ땻JkzN&1npE<^hwߢawy޿{MmӨSQ)Fr2a+:Pwu0ˡu X=? upʺm!n/𦛤ҩj+kϝbMxkNYƠޅހpѠ9) Z3;d`w|Xwe|}=r2QUm=>UW>I6{Y̶[=fڨk_*$b_GJ--3lҹwV{2g|=R}蟌w-Ly<dr~j.#>ӧ0#+=!X7TM؜&by9ͷP_nXkU{q%^2~VusyS T9 5+JYf.S;r2tE㷺d .˘nq0O[̬8H'@!D{9%EgK#wu"ljkקBh=ۉN\K\(a7K$Ft\2Erj]vtG!/2{F3f35'v~}l yhhex́NU̕V:F'iLIETUEYVvRp9)gL4-yeWٯTpbmdvj D&|N% V}y}vB,@QYN381թ:$>x .}'`#ztf $x|U/\C[!HʧsG|W"oi"3UZj&u}nꮻa$̵:'C̓Y,V߿3S\mxod-҂|.<'[w8Nw )h "'-ـ&D~o۾N>.Q`W~7p VoQtL-~a׎S3.WhAR')]aN-0=/]S.jXn&RNfaf鎁Ȍ/.h<)F.M@}ͯvbf{j@vyM{{3=u)`Ұ41.hv:dwgbnNl&,H=8oufO38&ad|05(ckk&::yBlX:t%z= U?oqW٥jFBw#+~F^(/虯zr}Z02hȵ_2sStn\T" Ƣjpw򻪌˽lcxq.ڶsc셻rt5T'7,Gd ׼+E>hy~߭49LJUl};]:@\)[ KwR*Dz >7'Vč;m*c4lҳǎcn*_nYQ<{m/EJ 43wrh`Rg^iZEL=*JJGt)g! DY (j. 5 ¡|eXWmUhA?q'+@Q!^9dWKΣ#<ݩRu3DZC?Nvqg1ݳfp=꤃PkK#Y۩8ّQ93#Y+gfm/!jZ#򤻯ofM% x1T"FBgZٶ)_ɵC<puNԟE$ {+A| Z+3q#;JS@TjBKZEoDznS[ %ϬEK6Ԡ9[{r\؃u Dp(qC@I)Z8atcJv&`M󟙋tJ#wNbif~ռm t WF^|63-AbʎE| KΉWw"6%ᄳwd~[^lq4_p ׽rj#-P3T$]fІ/=L xH(@҂xw%mbU #B*TwA8;ܼaRˡ_nIgF;qjYi9RGˊ 6h\ BDז^f4s6Y:H ~^|Zf(%Ãu3)/[HiيLq^esgBUU߷k_:yʂ28-|B<>x]1woLǻ՛L|Ima.6KZ]Wͭ!rIT; RL'6|0H֫pEUka*:_d>budy%l NN-v _QM}ſE"->:Opj܁/0ۭ$WM춹CMji?j;,Lϓe /V]@ b^ .g qqZXqL9d ^>"קϣw( iT8*n.r9h=xgqڌ4$FM[_5Q\Q(DbR0HO[Êחr&q?M4V 4 #~eQE=yX]F-:h_}w,R;j$Z :w+=h֎ Yxsܯ>h^s;,"^3A Av~=S#Gj,!&~DA";dCD!zMjmz7h*uzMH"==t|Kߑz L"K=CRxfiTӑP(M*uN^e;LR):+SY?*&sמ{lfUD:]@0r9_f.145 ,9!w=pXpfSoI7fp$za|cI?!&P0'^qg&s=`>N?տ^qCv Bv?L=WGx@sF+]UaĺsjdLPǬ&Ri>աӃd2i>HUUUg'!@|v1uB1e= :J!dHSa\p<^ v;mVD65cUGFO'9 e'\$^Jm&UMיPY6b#ȭi_Lel3W+-x m5TCk䜾)/x\0fםy# VZ~}KYз snw4 ϿrQL@4 VK3h)<ɝk 81=1 `;[jA,>\{> ΃쫩>v{OKR?>Y#Ը_Wt6j^a8=B|zV'sP%$yOQhy%ULx.)RO)K?MR:\ypk㓎p.S]ʛZ̊q4~USj#]zMgPAK8Rst-3C)]"1C@;(Q/:>,CjMv1Uyϵ~( r& 笽h͔ڨFO"4sFc)+ӽ۲;p hc+Y_[:)$GnH?CmqrSTFn&;J|tlW{!z8̿KSkmC;)_x9'[gS4Xɥ#lG =fJhA6[ǐjr<8Euűo `|oj)^-sIҕdlΗ2r>Umv=>^}<=,qŨ͟}00RZN9X6_ʭ]vvn7}6D4L(/:F-9Dxx=8%^ 9'b]?)X[1(K$mSTyOGwF{o:>_ˡV+3K}a{eQK1^M]pF{6< |I5.7.kD?Mׯ/Swz}'78il2M=dKlC䋳\@ S̾wO rg]+\N?)&/;lj~Jw8K0pВ*S'8t@Q+K|+.,TnIQ}ls^g&#[`RQH LvnYc~pPE)TGA2,šq%T%:YU9GER ihexFvTGR3kvf.K ,^/ЦEU2OUG,Behqv|p HZ ŚULTuzF#;QQm?T/ٞ݇Giu80 HǨȳG`ml!fZ~Kt=bvʷ,ed NL/`u2 GKڅ4x_MhfbpqҪvkW>'wp<|RoUui_bh7},J5Sva{>z.NrW( :4ۍҊ\PUKܼWZ̮3b@!l Cw"cwEzN/Z{ħ:\]'l[5V๝r[o࿛{~ھyEi1߶]u.^53LzlյjV5bAt*@}]gKxhnNI9/"N?ܷ7? EG\WQ nGRIp@2y]FըǫgO3Y?|?4sȎc*>˅zSYGiY3R;ߝU)Yr 5R]ubx09KGJR@ X+0'/u/NX!ډZQk3I`b1;0{e4ԧ\ɘ'^URG0MChsq\nϏ. lצ\JǾo=oPu 9VQL&ڬMжf}4*(|6 |.i_rq.It%|gu5 #9u:z\‘G&/UK(oyA~VBN=K* \^u:k,Az{1 p%=CUG-}op6~J/o<|xyaoW絺Ѓش i?YƮOxbz^|ǛW\gZԞ;ځ{.R=w9]3, ea2j˺Qپm#Ώa@$jQM蕓UI7R"No2 qeD{pTCm2ڧߥ޹me:>^tx.]̾V<җ;U.Fc@&x-YTðSAX>ce~+W~=؍Vosjfҽ˯!wъ:O_m\ݯ=ٸʶ"Ey{Pׇ3G٬97#g/sШD}zaZϬLRCLF~RC1׫t{r'[M+9}EA=VxP5 X̀#^Z9!xQ@7: dyh{YOџnS~ڞ=hkbW+t rddZdD5Utq 7kw]Z~(*Z Q=ѣ'v ߳tq3hCN7G8R;p|$HjWu:ԟ)}̕="*eMzasAGHLY/Zn؏c:'A$$Ԭn߿\wo&WԇStXzU:U2-]h:$zivpqԳV)?no[>4u"JN68NrsFKG$;=bb6֯'FţuR3DxtvgGMhu&9y L cR>9ZU@!%BHjur2U[zb:jKPZfzdҜO]ȭRi7T} P e(j+XT":ӊ*M'N i{w=M?ȋI?j0Whp]1|)sB?HԛB#ȷl\ogBwo%A jAjRzEW)>Uj/; RrHQF%:DPDй.3EsEb"!I~\C_]C:Av:Hؒ/:BS#WJ`ғWqw8 ]MiRckٴf`y{lyu:RMSl\xp<\+(7lϨT,D tZ{!ɯm}'`Q8EP,z_֛.}>BWW{HO ewkO@%IGZ.OЊ4=B{=XzИ Ζ1DžԻ#h5P\L.՘2Z\øƷTE8t/5[I`+š|z0{n\au}o^p/Sw%EG=ִo)m!1oۯ7_`>.so;H%x4գx?;UW$ud]!MgR[НLMՕp3}'Z[P VE/ّOs>_}ڳ} @j@zJ.]`/=Eʥw!p[s5Twa64x6x?c_GW9܈?hmZNn޴m?*ZG1[9Gv8ΟJXzIƾN I.n{ zWo9~;UcxP!<5y_OggS;C4&'О4*8h&#:g"b*!Npn_~꩓Y,IWCr7hntu=`#+C/ԐU~m7I$CrN=-ꥪ93Ls*HMOǛfMB \;N.0uj9Qpo隇Y3ʃB$qTF8tס-FE 3tzch" W-iz-=ɹRdZ*Y#~j]A{kT+yv֐u~JY%BT2nIVⵢp1kF1q))"H];+sE_AW +ZzAQeZ3Yothgrk~Q _q@g: " D{]!@yG;`ZoXw[ғEN_Av'8W 674z\nH䷀l'4׀qHdvYk|$-lp C&`Xu҂?1hg $,]຿"k$n0~c84[#[=(͙pX%\߿fXֳ 1Q?3ts}w⯳sVR,OM-Gh4捦mٝzYnbG')k}w CV쳙8mC~#OnY1ρ]d= /FM*XٹsƸz-P ؋dbEkY8uL92)^uDѰA%$s nkL+89ZMˋ))A| 6mnt> xUE@cW?Fctc,7A^dbݏPu5upZA@~ӝ`Aט3PCost=ı沅:.QUo-=9+l~XӓHzJtO'݇kvljazzt-\V;Lpa`k`g/+eĉ¨JWYn&<x:}>\G7|mŵYprR_'Tuv6챯|NH((ZN6{Bf^YRf&Yi߬͆[y7.[1|,|,za Zx.{c^5Y+ O¯$^c q8T4{r_uxMcȇ?1XST*0vJu'xSi'* Ik5 Q{CuR6QR|M=NU5uwD޼4}Ut4q _dK;.4XQZfȬzӻe kfJ.kF>sF }j]k} ]QjF;AKWb=fzWBk qqznj]>s딌\zǡПχyRSg!ݎrPyeNՊD$Z{Ρ:>dչƑKȜqZ^tc%*Y]C^`jiuهWͬM\Ϩ ŁSUj/LT 8G& h"rgfj"v+ڻ)_4j8{t *١Ijw/;em=5_|h$ 3$jqA쌍V&7O #`,-bC]OB3 KUHO&*ӈsx)b bɌؐ(yNj\dN2xޘB}e~&2l2+az{[~~ē^['O(vu)$ӶN]c$i:MFnǺ 0m}.]u:rܻG}u9u=̝n~~Sȹ)a,/Oztls֦1W+5rwCo?ܽ WOUG2|srte<%φqFAM~ wP&q3\K~qy=Mu2ke\rX]t,U&:&~򄅈i&RTIXp&N:k9 WKRwHjgDQA*}un$dCY= AF֣G>Tm M1 HMNkצI9&:ypPhJLE0_|5dPDL܊u`݉r1Mn lӍDluBBEX(*VU8[1=oD{SΝϚ 87Mظ5&Sw{VCZ4Շv! |-;dنge Oz5f{߅Ԡ"{Uqm_2dCZ=Ů'[ fkA[:T[]S V/qƶ+"Lw毼 HKo6rUԽ7O1;bç0[;^JQO*%6øΝr;{){5[ԡE|26!1h =qƝ3B.DMhOEy$J0P s{!"뷛Wz ;RZ$ztDHvT-ҝ _iojPP6EwC"P4;$[뙿B_dw\e~75%Y]鯰,$/l޳كdJQ4ȠT*ris1'.HRyN{o=(yEsgy=^}\8$6qG mAV{=c ҥ:qH_|lVVU m"Z|ib ]} .VqñXbwG5Y߼~%d5?c=rZ^}]jpՄ|&eȖ9~9GNZ{|~.;^kπOtqk:1پ >`ܽX܅M7m_4?p~7oV󮣮Tr[%+?Osq#,nzqe:=0{S$ZW5+`ߣ٪yʄN9 X8 q:sP{=Bam3.oe`/5ot{sTًByFyM })yf0]OggS@GC4&(2̋kՋ=٩'OZƬ^e[ڟq}d -]~w|^Vc?MufIǁIfgO:dgʮ?;3/OIq= 6wJG@ZEK%ް=|}KY*wcK>-ͻytHړgɄ՛gL>F꿽|=ug޶,cJ(8+r&zsʷR2~1K,geϹyw|vy+= Y6խZ߁( &mڑ0Kb%i=v.=@f=|D'ݘv6kS#{W4JhH~@h9LXYONWڅ1a q~mٴ /UQ~)㟵}eGîuKEUB{q>̺5c~egJ_oE:{7w܉űuM౎h}(cBCݧ)z敲eoj9J?pݽt/ק|}mZ,X ,ւ5>{du f0ai-&BV;"V8V"j*jjk6v+aڭX\ycYJeG*|4ͽ:HOS4zP(B4(DC1 @caG@L's_i,%`3I24j嫨5AF+LvseZ* L4T/ϡ4Yp: _mٕmN.Қ41eI1X/Id#ڛHƗn[hu r@}Q7CSPdJ8+rKI' Ц-[=='<;W=٦㵔^Eu \=ɲ;DWO[Sg U= "ז ( dST4z(L<}\lR#&\eh/y({oKIGe"5*9 tYNN[ {g&"7l7O%j櫇Vӫf埫Ǡ/W~m+[<9$B16:DZjI㳬e<( 6{znlGMX'ұqK|d= mQ\Xj4/P{ s!(Eo>%@lɽ: .=|w|i_%bQ|_{w/S2V)ꥊ˦$ C|‡;wEL}SLpd ·?L!Y`qX{tmqbۅaj["Jb?w\$ vqouf?b|!WzCc"5nңɖ=-a!2λ)eqMu~oczܽ3mUoEy,ggnn{>ץAe%/5ip%\q||{ZeS;2<}Yagv_:0>os]m䩺}q=u~W>pTߓsr/ j pkkP_b*yq ry)x"ZAԆT_Xou9e7hJw8Z֗=R Sraf9Fe~ )Uս23ޑuqzBsAes:aG9 ֙xѹD}˜;#F "FV}nr jOviΗ\HU|)ninߙc*̭x=%}KXuZa!ө瓌Ɖ)V7g׮uLQデ<v=?sUfY8C=:w".j =..f݂]NY:c3ؕ.[ [d e,B_/ ԩػ z1RgJM.~}vQlS8镈:RforyGWr2s=%*s" % C:>|`˯ʞK-W+D·g'(.@΀;ƿe%` ܷG5Z83~eگq$ ɃKr\j:v`&炯iwwem]M]<[Y5+>)8nRNj#4GynQ^[{xݑc(p!PywsWnJ%mDzB5rUl>8% K QvyڐcNY u7i_ ,`45 {=(C)BD WO}:V|Y6ƹ␭תeoj]"Ȗ }>w)䵼 >E7CcR+y(w͵qq_G6 G:a_74^7iS3+duV'UN7:͒Ok*/?Ûb5ULo!Z2*\y3l:,o_oAk8{/ӻwyp!UP+idV,5&d}7τcgp# '4:F!&o_"~Qi P[Vd w k}7<$QESSkll BoI캭bN=4sigk>yɹJ4\sHMoθ=mOՋ:qp_S/sm7>xHg-rs]bZr2|ϕk{$bTP/juQ ѡܱbf*Vftxp^4ڈ]e7ZazڏӭdsIf.n3~QO+:OsroVۘ:]|}8ԻՇwsD֗ :}MK^?6r D{|gD #%B%jfcDx{Hcib$^{|[*qC !ysP9' . C~z6%*!WvCn"9Msi<_ڇ)V_G]wT>mcݧ-K?ch?h,mn@0lVel:1^r'dxd˶R9L7ݕ&ӟG}<*OggS@WC4&)خD~xFȍֲYtO62Hi"-oL rTgDԊCs;QFRy)T_Oo]<]V󔚺1edɌXS\Qk9]XF)ZdVS2IY/~^yֲ8sP㉗*5 \, OcIjPh8*g'~0 Ӣ@54hS=i5O@oĽVfZcHVkMozm?B:p\Ǩ*Ocr-z =sO[CR/"Ҳ)Y=8|G]'H^&s: _{eۜzh;l'_iJ`Ӝd킵^ (^w3iǻl/egۓkCWs֞kMs|0Ç>}o:$}i#y85(dL)RID{֥=T &yovOA[՜ʏ\u{Oe9ݹ޷no&r"RwTRv;Yb)Wζ|y3xk|Ybm|‚ŪS~TrpfmkseymO3!ħE3VVc9[.N&< c:|UG<۷# 14Qj!P`lrӣu+x އQcFbo4prm iO b-0<.6ByF*5_WmY\E tV*B"(&p<=Xf'.odƬS1g-51˖W2y͗2&6H~MI.;rZ͇u܆;4_݆ Ҟzc91^d(ȏ/(g7htV4w)W5X)S=K_?=,b#ژRv߰/q{̤s} 2UCn%\"A;ug'x"O8c}b .2NF>~N[.K.a/KjCRQUW>s}LITוu^޳ zaյ k.rnp@MZ1T)T>>5 ' 3)8Da7}lC#jyNDQxd- UT 8IAQqPq3:lcLC}Zf@8Ϭqu.zݎFQ`buF6/TDfzQTц#꺤z3})a9g]~yhsL[x#SnA`K/lk,vj̤-5V\J5\QR;ww P1|W%w Kؚirhr)l|Hs֏[%%',_neW;15ggFlj|$?({IuOW~d03.MZ,`mk+KFd#Gpvuߝ"D?h̸ٖuX{|_[x}_rj6h?~ZUAR֊PyO. brem]]ӜdIi}LDKBjU:u{{9&uU:ñ"SVFUH:}]]]A'QlםI=W3 _os7氚 W]Iž@U GW(>۪%!vKJn,8rmcE. -8w T(Aj ҡ^5BBk|Y~[b*N=Is r$~v9q |,Ϋ]<Z4 E)ߐ~H>|Qd~FD9qn1(~_(Yp8FHUyRUFԳ3 y"WU 2P ZA^oc0f*а?w؉7OGu?"y"?+\5¹a8M_,A\6xE0{~7<$|ˋ7Lzus# ?efG>{[,-kY=&UDWgQzWNj*nb誂4Y v]XbTZ;|I+=as,Nbq': 5W糯ڭ.{^̅gy_35S9ɾxNY쥋:i];x{},X?0C _Mh%hW?Ym'k5{- :/Y5ïw?駴EcyZfa)Zi!lVc+KJcF0 AY"W1yx eMG6QmH ~r9MRHs=U5Ճ گJY po:j*?Ct}>IqXײ\t?6%?gFKoPoGJM^ZEk-Z &@4` :e?)p:iID-ZI=CF I8T9ܓW;jÌM_SfF'G&'51*8r&[GkKmvMTHZO*p(>H֮h# LIgS5:hv !juqͫj,*u,6eb(jfj$0.:,!*2ݏh 𐞮T-1/'j́55v)aB 3bmzvfڶ_Z ң@4p \Ck|[MzmpWqζoC*j[{w@[eѤ:Q訽ӅdoK25auK+'dX>j\/FjBZf_J{^^GNg1J-.-AԪr#90[:bM K3 V?𷗋> K-OIΏ&Ozx W .sPN^͞V-@<Im_"[*hs^WD5GyM3<99!q睒\/袷! {:~~D*Q[?zpsroVv5$ޫX3E p| }[QׂOﲷA<}w^-#oC.ܴ4/۹)Ф*)zDH@}I$U_O^uMSCJO7 ՌpMMv32ianۣ8tr$">)Jj@4@Qk^D $BTvA%=)U q19ksIlMIʞ"YQ8Dk̵ZL:4!utʘϧg>kD72AAAldF j:! XڈyAtf!5Furu=n>ZԤI sdW(pD/~L[ep7U27d@2 z+M}tT՚ ;::;0PɈS=Lgl0O{#'/1ϳv=Q|g"O;k&>Q:70/{@Tކ6_t%@ )us}tT+w1OWO/)Gy>^1)(?E~_NN>HemwGXѲD*C יY4sߒr/P/ޙ{k?&ȇCrbTMmvLe}~nr~m{C|?]{votmoOs43z > 'z˳z9}%N#R]LX](.,4{X`ҽR$ijPG>*8; ԪX/3$Ğᔗ~ZQUpl?֫Bs5kU%΢%[!soR3saʝBA]`Uٱ2<&Է*._LGkLa ׫yc*>; M=SV gf|-ͨg܁|<҆2Ȯm bkۍ@CUTF~?T|aoo1LQꈏπ4z/\KP- wqvnӤRFd]z.)hfi-E|ʎja]ܔMWk ?ny52H-j}msc|#=_U-mcZ.jaO!DD fHDάwTXyYjYE1EKTF!&j*AD[ Q#eʲj1F)2obXTG +l9; n=약FKg7u:[#~Ihm| sfLDXjPM;_l7WYrU(eNL%i9T ްgy{<֜U9fD85^b%A=oy9}NTذ.#=0hu:pG|F(k¯VӗF1O˯;'GkfX4SﻪOĘ?ٜ"k.KC4Ό}~PE7CXj^pdyYgo}_ƌx1F{ϜC0R{d]FOiB7]s@p_[L֡GhYKˍirhr?&q̤INtgs!}e'xs;T^ ,ҔHh4ڰ3I8\eO: l[sd0wGY0;Czm=kU ,bh^G$u9c AfUWs{y x{I]&updUK{a;)?:lntwtU1$˧V%?l!1ו̿g() T9e]Sw@ƶŜ1~/i#œZ7U`.vB}6$\(Tk^k=ooKE&񢓦XGQQKܿC-wӗHYR(]|YwnvLX'ϥ>X)>֐Y[S@ Y'IאֵU탕 ˭IH-Pb 2qecҶz}mx34ӗޤ1|+jHWꌿ!sfa^P_5nv"8x i)ܖ׬߅nFaڙ,`ervsH) f\nJ@i{gq;&JHhc ,pͮMPհeF3q=>%2 MDԐix^W_f"߃z:ӚѭsE+󖙈1f91kdf׾}`uK_*̵tu5 L҂73E\cy~nƏc΃׈Ud*GND,}㻬=!@'3"-8Bn> fOY5$vM5<"u$uVU.6G^Ef/9n8;3Nz\]i Yj03eۅ:;/ <?-e<\&}&SfWsMGw%gu7j}}KDAR%xY(_bOnpsCa)& 37E4멖◛L]"4$u,zRm-X>k9vۇ+{CXuV>o2ڜ<>KTB̉DR~2oԉquxO:}"-$Üstuyz,X|\wqƉ |)CHz/ xiT{،ՙY${6&ㅶ .}Jc"8Fսsߗ:og{! Ax!xw\Ҕ5|ܲo0)mR.-PodZk[k6@fqVKęGSb^M>F`?tԌgK>7؍x&%@ =þOJy+<`aE)¦p{(Os<}7`w<Z!oX&ƜA]!y{˿u|oٷ;x޲Y6?D֔BV}Zmb%+cc ^bDu~R\8ε֏7j6#Zk- >i:|>y[-z+"9hAj5r1FZ*"U`RQ?{I.2@TKMk-nXS+Hƒc*c^?ɮcWJ` "# j{/Eoxµ-ϭ{撡pZ0)ࡶ`Ŭ 1]c sd<,17PY=8_+ʋ{Zax j㗗~jo~qtN[Qf鰼MN+ 1)|zYTZDsag,_V[kp1Vw)tbq5.۾}x5#,:0J$b)ַ@>)_$LsIAgubUO5T;**UTQZnbv3ف?\O핼8rx훃w[kGĴWD_~Sv_~ۗ0]z_o}הgјѸf]oqWKks(Dž}<;R\+P #@寿{v{d\@jWQTT `-}ATTw q 1d~#BBtq|rR @Hxf!9)cZwxRA﷧~9ʫ`OA<&F| @= 9%Ԓ$d'322@o]d־gmݯ CzYHsդ/632n~qgPa3'ϘF$>܋/qwjU>D*xaʞU*ȿ{zzxρ¼T]i^敖y:TB z].#"5O) ?d 'u5J=i\omYιlq20W]s[Taoq̚Fm䥺/{E[Wm40.rZom@Q퐋]/_ԌL| ~-nx8uI[ Ӿ~ҭ>޼y;OB!z(aOǼwK߅SvݺϯOyOlq{k^>/}{)_${Zg[_.ښS~:ub.>9==k0u,Z5]Ƿ]c,C(Lˮ2޹6 ӗ>R5hrFguZ˩Od$G_&e~ڏ9x,hNtWg|;xfp/fJޓ**Ib 7xٛhRvKˎ]FE}y'ֵ_~0$ݒB>g鹇G"?^f?̍phsKSAiK:3Uwyvɗ'-nOzVh+O :s=A ug0 Z1? `gJL$wj$ Ax?L]WGcfnwoŏV Ȯ\Xf *~ g503 jh㚋ީ2Uv;$ƛӲygɷ":N/ ?2y؞!C23z$t@u"P5^=PmsIid=b-E\s {"vNu1Pa5ި77bh W۽aw9)Z"Mi4:^c=Vr^jtū/|g5nxVo8waM^I+$=&ƤZm,`?~w^x+fb篡C<3#_/NTH3eׯvOR{[ yp3ϟc]ʫ(KwU:׷vb2хsuIgͺIPiWFd'vߙl_.8=O*E$/N9K+1-ݧ/nzIfpUҾRnD_zc;Mq#5~^;2uw<`+)k~(OggSC4&,`wJL Wr̄JBwk*C0⊦H^i.k_.8\W0iljh[qR{rv>k"2/#p4T#Cc*%"(^ШER'w@t}ݵu2^T~*._<,Gk%:G$5u/ֵsroMV-H{}0P ~o'@tc*[Q&wls:u J4Υ-fr|)λCޛk m`dv}ǻI0} -"q5J-}D67tTWD'm/U wF@x%ضUǠe*|:^Wtrļ,XnmcCGp>8#ROݩyWZHN픗k]bn"rI!ޖF72&&='k΀ PxΆ=v`}1veML@!='lj?ZL)||0\>+w- 2G9ޞeH'C:WbκBrʬ>S[nh3jzj~W'A~^'fw#9gDsw!jG'n8 lW{&eȃՓA,l[w1Cv+W+D1V+0s$:xD= KƧ9Q<ܝ{֫U&TGI$Uzڃ.HU[n@?.kɀ+ܠSWa.`>%m2:Nuȩ&GtRGf'enJtoG!}%n6n|CDdCt OMs0 KBq~yN͞~~҇m?pG|㖇Z~ʬַ~˱~>'qfQ{t8ݼAXwMSax rNs֙_Qΐح(9HD'8 OXP : MWv[m`wfW|G$\NΥyc!h}9`!m|*9]nc7݅-tek⒗ pCf[w%D쀜oV" Q Y3oSeXv7r.)?aDE˽i ׻k$XM!>sڰ^VJEܻNN9O[=/WGddgu|:I~%w6y҂(0c{<ҙ~ {R=ϫ3{˵2S_k.ghOOVKGiM]bR/.IY:._n==o]Qٻ0.uK~cy'0&ivn{[$缯vZܬ,uITrfi]˧5I̪&mYx'!1"ZsVe1d۞݌(Eo1iۻY[g^qQW1> FY9F>^H[ jNO %w- ״bԵ{ (((;>d/~Otjjf%vC?ߛHd%T RWzW݇v:%*-GZ}ޗ%D~.NYSZKwqA7EbM}k/||])]]8u8j֏: ;5+@8<0ZX/\:n"QWc#R8Ƕ_ok}Bt43>0:y/9{=hQ}kmWHYlÁG>Kv:(s̉c^%̯}рBєH=3J%Vpj˃p~;(ٯ{s ̪*sSҍP P]>fz9J~NcIWDLL.u=H;]6wзiwзMd,=k 4 xZ\Z6$ Sb#Sl*m1gs1gCˢZ~.`%dΒAn'=7 #^ gگ˟{@4/PWm؝/ L7 {޻_N+cه㨓[qX)ߌbgC:wQB]՞}wx}$u*t)8#A9Y?"ɵͥ5BxC-;1H6q[v#>eU}naG LE_ZpEs9]Yaڢ>t˱͎<~Wn|A/N*TםQk;!BӑBwAGy!_p-;gs=</F1qhJU9d >yJ^vAn$ 2"&ٱ>VK37.F`sC] _y5Vq p)J/Vއ(5q'q.x~Ⱥ7imQT8ʻa㶴^$JUz{i%+LknkN\6jkrYmJps^G+,At^ɘl$m@ʐʷuLw}*ԪTvYb^zgG뫑nU"דAޢ~Y5>HAͧJ1yx̍ޭBvo+:!%BIDxڨJ^=4>99=g25˪P|~H:ȌX{|nHp'S:$LiI@+IJ:ҵG +hȐ)o<եx>kJAg*=?{ܟ,H%i:@2 Sy&GOh?Gpt9PZ8N#H~Qy f8NFS 22 Z'nz>d;`(WFŽ/hhW (v@,`=Ÿ Ά߯VgږPsAzc5f0;dZšww.εf }ScWx Sew1O{.Ȕ/G1E.A腏3Zڜ?FE?pEcm5|ޘG?xy7i1<< +&)29*A}hdۇIBx7URWOz@{5tIMatĴ|~?y }`q~J{}Xi!z73C?]\Ԫ\3!zGzti~ftWR.$rOfc3 gO|8Eǁ3$a)1s.I]/OŇFV{F{/Pn4kb׹++_|"; ]}2~zqVN]/^ˌԟ2F?@ڊ$y4e~Ê*IG{Td8¼lQ:_#&dc;LB;'39۬P~8 >LcQ>'W\;IeН,Ch炏M֪>Me=KkvSHm -l.l܃4nݟ1u} e5cwI*kbzx㣌溜7֮\*‘J*{T6oXn}%/1)n6il-vٷ;rs2S(OggSC4&-  g\)ZDZ1&{O7Y:G2ݔbu* _i Sn*,w=Cp[vAKNo痪RE~RoÞEW"8s:T$IGLa13TѭL7mɾrk)h6Vo?r9WNW4Q8%=zk˔@ӟi*]ސ̃ 1hCDix4z`ya4kskT }Z)*աݽ)< -NkS&*^[6'#z9V }>>ϧM2ENW\wLoncIGPdJ@(KdL_p*iD;5*YU#x5r/ Rs&Q#b%pt}!)!6b8X&?>~z~d?^əj/ZA߈^D.0\PÏ %|>?X35}L/V&,y9z )j{6ݯw 8y`oW ֮;_kv[Xj+u2L7ʃb+$0gfa+e۷5zػwlw<5~-k()(Zs6c_ǩ>!Iƍ P3a"Z e%Ծ=}Yj۩Ӄr>< )5M$fN|f*Rڍes>'RDb,VէQWӱ>FCÏuWJgHj3j1[g~Ut84*ve$;YyX {{RO6cp25)2B:LGdv4ף^AC_UOk/5:(tsSj_hE^GW&mK)c }͓ojwsz&lsK;ra^op-ÚL7AltTiXɉz W0' To2Bߙ"&.͗;U=vW_ ^U?x9fD7n%&Ŵ9Q9$#{Gl_Vx揔Fmmu14pܼotwk ; n9%3m/A#24[ya8bˁ xg%PX>P{dYzjvȻٸ:}9Qg]s~߀p.*yy79eål8 \n?N1! 2M3uRkaP"tլxnA(o/m |E"L'y9-^c_3uȐm \ Rע`#~q`Vϥ=7c)B Ju~AqޟRd7_V:WYdo _:AphJA35S?o<S9%|z}}V{.jZ M t>Vf؛|nE(ԅ*\-2u6Vսk|ó+%|'C8Bpg&me> ZjUiڟrwݬ,-*KMC[_{|^tVeT$q5 _~1+Cd$euK {yغI~c54%B{j\M%|գ_G5d֕NMpkM.^gU j^f%eHs^-OwDmy;]* xQY2=; Ned,NhdGE,C2:)3y}Pb]"sdDjSթ=Ql5kqۺ]2Hfch%ɣfIݵlGkТK n#G;;{|{|P44`|ui߽I0'M~GAZҁI3T8J_k@Rrk ɚМM2RWm|\U?Nd{iYu"ZCeRBp)Uk0Ggʔ rz\ 9KJfm2: )QkB#ʺ}⦅ QDFD=H0w˲k#(W=hE!XY o U̱#'ԞWPNiBDqX.wμpٺYjcb]/tL x c F!b/ܗ?|VoLYq6T~-geڿL_@vɮ&FzdѓgZ"2f˧,3{?eG~4t҂Nᗞ6ä9dߓ >瑧9F.y>']VnɏYBj\cz#jY[w~KtRν\iQ>n޽P2^3J?^L9w9w#5Tx#cP\`q+riІK+ ~%Wjk'Wp#lW4s;{^z.:ٜK3&NtҸ3,H^S ᬆȥ2;Aݷ\34aLK}uUuF%4)|;𣦴܅"Bc9ȷKR=IRNϾ>߹?ͬ⋩`[m l{F4^[ B;K˅uUf <] 2'u\.fz>7T!a{ ʣO%d{ևߞԵݹY5W0, #.r.Zt0&t~]8Yr_UM4)NZH*"ECsX9UATø:~Mg\9՘*RJF ="/rZ^wiݝ.B.*vWhd ѪT!"*ͩ5Ri4M8wf]+7_9*ueO^7,pSZ5;oyea|5VtXG̡$liίV vfkЋ>+5d'ʏ>:4ù'cI-EYX Fݚ`gh;$=fݓιC-'BH:YGs:វS^ui އ%rqjKwha\p]ںIHc>QE~gGɳ)r\,qt1 e*ͺJo۲6w=[5#g;U'VUfֆRQg!x?놮ӵxr\2ݎ_}޽ϸnvF*,J]oOggSC4&.>qg\3D{.z.g9o9lLBELnֳN?5as@+$9kp;)߀G[C#6E1vK/9:Y# M(=ix ­oWx[}.gJ-xtu{=hOG6lPB@F @-&Ó^ǖ~LIՇ 覆Rq1#xpkFuIXk,jYWX^bS [0YD'Yp-҅$O˜))H45F2G3W/S>{[U5Tt# EsL|D{׿ًcџ+d;NJ jЅSCӄ”U#hZc~'4}^67䃨&޿M%jZ@4pل:OrY%ws uTAQ*ӽ59|ȼC | $ؐ导xo}C"OYB_~q- ͡g6zݞc:ZMVi( [>howIlyq_YmT;3$Q(4I9x*$}O0qJ&uqo?)$\[—FG9r(:P6@p~qaNų)HHH/{!3vѼ}k絼t&ۣ1'ts:+(Ysy,׽̈́ Et 6)2׎nM,=+[ zpha5qF<\6|NO783ޏ6wOzE/dwìr$=e37 ]%nhÁھ_+Ks>`JfHIc?{ӷH])dP"UGt@/ r۟LQ^empBsfH*3@R=sI\z{|n|#@tu;B#LM⠒dCNP8NsjC@4Up@7k#3LX`un`yzZähM<'A`U3t8Bj35el ߁IIk֮MǜY$E)3ȉ`V=tW+ۿߜ:S~_=f&g"̸wZ$sk?ӳth>$\{GNQL0>U75'H b; (|sm_ƿNEG~S: gZf<\TDOF⻊ pYt KɯwTH'^]Z^g`H!UG`07HPe#Y5]k5x_A_1z@1uʰZ`MO)<O'Px1Qe|q)徟_s8?c@'v$9ߋV}GnpGU5)3WVV}da?#dsJ=$an_BoUt4azaMݖչ]KRsmU܌\S)UtO_ʜKuvZXXkRyN֠g'vz%Q| x7ngÛ$ ?yoxƑqɂI{[}q˫S|x8.NN3u=q]?6S{~t';6౲{}%3jr,<ۚ>DOfOKy*>ţv♨\~=)qӾL2s9S}ZNode9;r|7QiwZR?{-ܽBlH}֢ܺaz%Z!_5Ipʚ|7QqLoJc֍ng|I},US4>K\owV3nlW~*M|iN![AphV~]oySv¬ZƘ*CD&TfRXGyg9KpR:w+֚]0., x 5 [.ȑq* {vyl~z09K/ϺLZ/Iw^ h'e3a9֠gώ:il`Nˬbw|۱]4UU5ս:H ffx^HÖ:g/tHf~9_5SuĨ*}L<)I?edyWA;˹TsJ XO Qp3ѦSi]=h?O# lhiϞۑ/ z7w;r '[6X$^V̦7\#)%i@5!ASVoO3e𲆚Rk$V^%IUѬlHQBcr7Oՙ^W2,EPMZMTJӘDR٫v0 ק$TBڞ~ޛ8s_ ΢xNڤʊ3_< qb}oϮqӗ*Ԯ+C(ʣf"Y]"TqVvW>Z3lp[V˦ZؑVě6_M{/&zj`\F tQ|lSl>vD5A}2pv,fuyK -՚klz1)/POןidpz؏4't^ KKg(^t߿\QXvP(CypS*)_9FA&"{&[T{~T'isǯDoGőC8 ȬG͚5qDk˨Uj{UXnF,>|<"(jgtMn"Dč:5S~qJP9bkg=j(JΩ'58 @c(YĠIVOsh&`b=p. ?sn#msZ9 "`س۬%X;Uy,}>d-\!l[Q7s,rVQ<w#b;xzC5h?ueuYi]7IoЂPREX?u""tB͹ۘ9cަxҺ*v1dtt fBm;:zs9Y9gU\ŸDDZ]DQDݮCiF;4-'&OJ )Cfw WCI@~NLwpaRs7$ӝgY;NjdzN1nx!Nq&=VrkX¾p\zݹa!ɼNfg; v/V#]O7?R*UI?rE|t^vPB뷦V_h$`nvd#*m}:K&g|6zCWpw- HklrGA3koZҧ8J[23Jۊ济7ݓx_mH>;CSjBuO o=i$/Ήcg-9{n?Mo5EǑqپC,] ](64%ʭ7u^!+JoR ZQ}Z7$jzա;UE)zI6VøҢ;Id>קu_0eŁ(w֛w͙np }_Ƹf$Xx?wy%{OggSC4&/1@|NƾFA/J&>?a$ƉfOz+26p !bUgreXXX1i;0CYQ:O\}IC+H4'uDvq눺^RO܍OiY\3J֙/oZ}obkYhNv]wF BQZSW{Vh%!҇u>+_( 58M޵*))S ̎rd鮟5s?:H T45U++ YF8-Ǒ{}0' &wijB/@ՔDOȮ{Ԏ? D"U M3P-b5yC(=u7|!tkHR!N+k>H{ uR~q8ԉRk>ΝH6D09& yanh l*Tm?{퍻V&MW԰ĸ﨏fOˮIK:\x5 UMI 'ﮠ_uC .ٷYEWKL۩+LN#3o@_9T<z.cg7΅75&$ˍ{KJJ ~܌ñNM`p(f²*v6xoyo91Q7L{fgƯ^Y /5oo6jشH//V2tnSUIz[CbPU68_R* ݜfE]=;fS݋n:0eyޝiT苊 Y+G* =n{*\PTc%SVO+½ /9-Y "'u^fN5:%V,̝/;4-W>z3Bs>n8&}ێPͿ_K}w}[nrw,\t5s[ ;~u(m=jwS0D&s]wbͣI4\,qɎWg"K#8Y{~\-}^)Ծ5}&izLDBq}tY}TuvEXIHOsju}d"?\\=~~fvR헬 6!||$w3w t}WDff2˨7S٫1 ~;Gǻ5r6}h;ݿ21Woއc->eKz=x@k\@Np>hpUdސ&R]l=UU krf;IJK+׊DQ9|N5{KbsfGu}$'ňu|׎ 8pLNF ~PЬJ .+D I9En9=&Y)]y/W,lt晝M5PHG槆.s91Ei&y<}*QKN42ߵN峌\gw/O"*zD>$ЬǟheG&W0?$OG ֛쬄=?!ow]9/)4lF^z]8]~JGk2fwi- N {[=V3-vQE48֟5fdMb|\i+n}QvC+<W7$Nrc&X?  tKɣ;wAw?e?4/^#Z]Syb긶e{d.ҳI27?Т1҇kn,R|:f5owo_.5j隩V!k_XX3gx ~_&)A[:ڌ>~۸9)zoKaFpIbReHGEW䓟!|φ7 8fʅnCUU?-?Q;:W e }og;(/ X ز3mL}HQO-nF]/ g =:2ѻ@㈝QP=Juuүtzʾ_8jXy~xqTez%*gh.000Y4}`_|:ǥaxg؜jPt1hD%RxǠ~,,Fsw`njJRi&Y2{1U*i_|>Z\Ts7yA1x}^3YcroҢzA[u.uu :N )M|? dn+v S?|R&3$@^,\qɽ.穏܅Wg9qDeeC|}<^)pK)<؀ f8lt6KN[h=P4=Zd{'Ր2߮*= dܦ\*J`tR7֜#i7fZ[υ?W7R;n k?49ɗLYosyz]k&u:?ώÇaߵND;o'dI cA)SGJSYk96E;H@kuPweHotUv^u,rQ+&i Wm_>LDgUAg~rܳ1 h8kz0bR.1RA丷e'0ɌWؓruwoyyL`ٿLq Ҍ4 jkՑvWKst}YֶbGaqvX}jU"i*j*PGΨztn:;X6aMq'H>?^OC=B${CZ:^D0؈($E9ÕM?)xyL߅t|xp='8MJ잏^ }aVޭMxm륗gA0Y+Q=Ȓa o߿pw]av̇f7H' t I.̠E ׏)Ap(P;q|4;=t$vYEo|_[?lry=CҿufY-[^̞n&iWOt!%UJxcY>gcuj zz,7O~t9}2]A6+)r/3o׫9 XUx7ѿ*)3(EqqY[Z6O?q%]R9ٯ09v<F}/=d>W~Km,>m}iDG18voK̺Q"65}n({>o'Cw&}k@@mտz>SB,'rllyh,,ȫRFնJMu6/9^՞؟9 -bճcKKH@z_eKq7tv8^4#dK{$ꤲ׍rw=m{[I܂^44m=rO}v߾b-=n];6|iG tU\Xfz9_خSS1Ƣ&/ Lεh!b5R"uoճ:&:>a*u@ rT{nRPJU+[n)vrNWdTx(TR$֛u澿\93kd㪊l}kƩ-UNy#jenk>ada^ДW;NIbs+҈((ӓ=kd|=o:xx+Y .ZٙM4a.#~>/oiԖuݪ|y]47>pTfnCN;4](z:"=+8}Ę8%AgϧDQrw^N@Z3} jnio&C`_j,j4m~!Å{z!ֻ#>mix{ɷI݊wg7sr&C^>ۀwT ]N=Q}AP͆O]6]z Ͻ'|:1[o-"ISqaLS+ GCX_ =diL?S*>Bbq½AHyE(NMCXEs`=6x69}[o^/VfC=6uB!>xw=me?SӾOM3te{(to@^V ܒLEX89~;K*Z2w;{Fpx)Ji\C^ww-'ӭc(y󁪲w+LzmO.[߭\),i_o^ӲH(4_{ۡzM#ٮ/nߴ=Oţo uǿtvj)ϯxD!w.}OXUjGfuXh'߯~ޛv)kEb9پ,_&F^g~xm.@%=~66$GJg;@LAD?:XǷoo?Y{fwpf KդJië0F4";},pi=Z+c?*k 1JPy=u (/E2;>2waZkU|:$_y(G_OUqV=3uwxvǭu{{9i D~_߭x{/)?Y[ZQ9T*g>{ 㗾Χέ6޻= q{YRHm0|~:h|Tn^ DžS#Ux|:zG~3^xO?n;rj ^̫?j y94 wGNWy>;6+TF0;v%V}=`ɴa?.z߯]vWK\Fɗ6R]7G"*Co Rkczז.sb''O)nܓ>JC[^קq/᳠S 9KH Wo& jdpvqJ~%vjngKzw\ԍ q: n54BI}Ns#?Imr!7j?嶦A`qw.qGxߠܣjCS$_~u\̦,X B{o+<%F=q$rbh>O{gʿwkP\y[ HWbͿUi3+_:ڣ}_6o-ėҦyx:?t\>_], royIH$X Yޗv?yE;$qX|G28nB8[Vpζ.yv#=v[x֫m,a0o#]7}>.>Uwq`Oygг깗;MÕm wf/nWߪݽ=_-lېM+_ST&'>V͒~y}"<x˾IVe^[/<;oQ?tX{+o'l;ڞnlzo[UuW|ۚm8gfugҹjs^]& qs%-q:O2 l.OggS@C4&1x@J%N <8Ŗy }X;y#ItcU$-{<4Ow#Юз`znv\A_̸vu~"ɱ( Y+=_[so^L) e%U]<ѡASTf dJ$3SOzAcjQp~Qvf 4GuSq%S֮ώլO^Yz{6L4.⬵ XI@iCwn42e4t$-q2 PeW4l*Qysw-Hp:X mGThj$`q'$E0po٪\Fld-6=@>  +zWO ~p%O꿑V1Yݥ}y}^sݹIl :?oSqaߡɕxv4ǭڠX!wZ)^7U9qc|[3;'t:_ʨ;lZaꦖnʭ ̻|kF(/ ( c5UbSK2أ#Q0M񟏗i '7e ֎ɟ6rճENٮsv˿wpi&?fd+5n'QrԧeDz a!Z,=sX{NΏWTsχ.vHR\ݐƄqSi1:H8nRm:ȧyҬ^Tӫ9˱K&Zr@M:sAox4e^M>Gq?!E9+Xf^˷E*0U<Ǿ~n[Η/D;TMu0m.qx/%Ϫh"<:(H > eY$bo${tF*~Du,E-5w[u}~l@d?Y7ﵟz7믉o#{*yidBf4*Psoneֱ˫ۺ!8)d_fhD# P:HO 9Ǒ Hy͓07?.]:ʱw (DP ur+NLvdh|&2Ǿ3)j0@-z:'=H3M kZ4^r'J`9Qqh{uHfd{f[;2 ];tn{c&噬Wp턈 X_󝙟.s.nXha;CR~&^0/Nf4VGan[y%rfQ n8<A?m0kv3?9#+k8 Au:!kX<(#FI7ζɫ]h'&TǹP|&{5^ Mۇ= K`:$HFG/8e@LXS׌ ]ʵ;HM9sz]TU>;G*{Bgov=VCHaC(4 |2~t휳fgn~t*I렟+ϨUNQ xlof;6UqSV@DE(*w.zc>^l)CԯLӬQ4IMh8v[$S(Y->}>~2&`ީ-f+~?k-޳oWo';]&RaBZbn#wx|'S,ӟ3XrkgRB^ܡ3\k0+?`_mxm QBKu#dS3 mB)EH--jz^[b; @sp S Lo^ S1HugG(v[뷯6ܶYuYPǫu>ƿYXdPwsBgó 6e#*SNJMxpȠeuZ!Z+DZecn2@`aShS;+Ep)P3~ё-Q<#ͭy^">Bߨdo.ǧ^cγ#h>c2#{ !\H`ϞS2dnSDl?՗:r. ~ Άk?ǭRg *MDd!@'=P2W^o,pUJ{lD#{Tq”i=;=`NS Ƹb%F&sK>>>C4 d/2u94#@6%n7$;F=y9,Oc8Cr"˜75O : =Jzß)W"Y{)}ᙅיH7|89B#J¨ rNJ/83/dieT쳿6^ HRw?{+r*~MKxn,*k}xD׻({*,ݬX:XwnL7{g1ˆQYOJϛrMqkcEgQ ?Tpn|Z=qzaƷV?5eaZއOf}8YސqU2k@΀ kV%O./2ʂ&+E{J,Z< .|⋮n[Pקw[loEVIN'EDY^_,EJ:\wY q(D$?unJdGSp¬A4 [{( j@K `ZL{%҄Vxd&h^|z*_u \ܺMl&Uf>($;-'uen5!3> tět̜?ƥhV! h (!:~7LIeU6k6?Ob0XɒejL{c6sQO_rn⣍(\1zOkP(qQ\AZA&3]+g& nB<@sqFZx|w+~_2OWOG>2zib@vCoQUD$ʣkMpيF| T 0R>/*h+˷ {["<]O6{а̜7COfZ |AOggS@C4&2STHeo)M%Gl/G;BQ>7`$(@/̸ p8#k@W|wSoZbpͦbITVy:9*T7#^{?U*tN[opfyɾp>kT k_0ʼ* ߫ST( ZZ/!5ɤ0n~oP>S:b 3?6 P0дC?oKm @bS*ck55qo %@_Ɔ?s7Szm)qM(ȣ\g!Z {5]y#pE̍O#,+X.[c4p+cJAyJ_Wl=jl-9~n-Ie,pJ5bI OpBSbqlwϠj?%^BϷs,6.#J)9咅jی6ԡ.¥8s߹MSD%o(:v|XUy܆d]hQ>fqUWi}wr^oT·ØWwr^j"G&Y|Gxn=(]5Y9[^X:_o{z=s07r=n죂Xes~NjfEԽhfh7P(K@p ?ݝ2v֠_w"dgݴ\,K^צQ @hjqt|kn8J'u xH*u${t$7\RhG\`Rv@#byK$ο=qǭcRD\HC@K2׈ *NFgDWQ4{AnO@o @ 2t eZ-PY;"̝,uS +S\FLEaEUDV N]::h O1CsP1#TukggI)cd>c0G?5g# bB]L")pJ⇠X"Zj2wОfODn;1&{Cy#ر:a~BvkA v>1nkj[+5ֶ5nE_CA%Rݞ]iXΝ,;ח)YQ#ŝjqNVȜX6jn;;Sji:oG9yo5kxʷWSZ^( zeΙF`(ſ9p>}5_d_K.>X͍/GʢlshaLT!VkYPH[u i qԿ3(hk+J}:uO 5EHB)F}q9sqQˈOTk`4${4NCI&qo5:|Nz1&TlނJrQԯ7UHkX[ `麞x14|l=-c˱5ԷwNdm8L?)+[sb8cjUP~,%.k67(ݲJ06~_ܲ$eko1_>}P%:u_.S'n_pZbc+7t#1w;~-ErMmX 4BL,Bkv[VJAɌm<}aWn[ksmW{>Ӳj^In\\ĸ@Tޥ߶eM۲}[l9uvb{ʋ:ܟx򍥎7r:6=oD5M);/_Nant$ p FQPvM=8$&8x:䊚9!H=*'\PXcrrŞN 5ȉI1I|$ هx5*.U>?p_A/,tj4Pi/{GMG qjm .Jغ^'@h1s!C9"!Phk9F?Ѓ80Ԕ4Z{Dc;ٿz]L^Dk#E @#}&sCRUe UnAޤrJbMFX%T2pu4LH44KaB7v$bݰoyg='~穼(}hrz2>Y.3&|\GGf(r7B N5wv4^ɀZjU]{$K igp=u&ZГn%8,؎[%G~o-=iAmҘZ-)iY:-i>e `ӓ0`rj0  w_|7Z8 牜WS _?@.Eۻ7K%.?EsYWptVY)XZ)__ùAR( 5koW͖r_s$}0ӛ\1bw.[4}zk'⪷ b6mGYkzC~l1um(nZrop6@洩Z\S'(dԦ{ީ6.<\szMW"{Y}'XB}m]E=|;}z֭V^pH/;H=ԟ}݅"qEkG]BQ{M]IR/TJqReq%Y27cweZYpYpZyGa 8`mE] -gc >Jb"U{x/'Wgj:1n/\^w`kL:\~V41.i]`4aOggS@C4&3+q[3 }@\yV91 RPoCI%.USLgȈi5 08֦<2Z[3>{*|Rs&~unnk*8"kNOI׮<|OuZSswE$2r278q7Z] y|xUjmgv׹,NBuQTHU@/o JWVY[* }:/0\(?B p6~C`=MԪkZUtx Gjj{pZ {qI $4Q[Kk% P wxt6 l L647! ż;ۋ0$^%%>żQK ԆȾL{_-6h0_k{=ˎq 6BUR4M>f ; %kʇR[Y粺?67哂ɾ4)ݜy}`}dgb)O]5`{@h-l<:]SsToN;6õj 8 MyާHЀGr.|eHNF=:776** }PjӸgPRS|jPZ%/Vw}#}Q`3GJO_gEo& K"?0 =}@KS3uቖ!^8']oQ!Mמ`G jQBLȔOw>/|amb+J0ϗߊPՒ2OB, p!f`ּmDl{0ˤ-8Em.뙧&"[>5VZ睃+*Z@$ZH^}0>\uyN œ8ԒD (:U3/^$D I¤ةI%\/(D󺉜`^>a %>ptd\*%4h}1EG Rk}9$lDr(b<d65(hyd&Enf|wc : TXh3[mz#.)J~R 񽴹\c)_=_uO*v){ q^R4LD铚|J:M17Ź.]V{C`5,'wsKT]χM )}HOOa{7(e=!AnFLמ&/'9 n倯prgN;ߖ|.ܾvS/%5-B}Tȼdr Q ;ʡ/cRVى<8f.L]|-wu27;2NalIa>WB+d&gryњ :cXV2 qg }25 _*QʔD{fKϯԹöDX_kz>;ywROr4cuV,(r{5ވG_׵O+#V;D>٬޳ߞȓ|q Fsj,tZ=~s/ItzylM||L.o6Li}3ʏ!q[ J-(ʫ%J.o85{G-Kd<Pٽ|~yʐ }9u{l^?,dYie 76(^w+C)Xfn;ւ(aMi]+((13DB-GsL'1]9uz'~-_gQBAp2{GxcG\Q!~%Z@++BUﭵ!KSkj %ޡ>2Bn.vpPE@ 4,ȱ+]r^5T*|^-~O?V~ 9@Cc hа٦֦h+f йΌ\ӱacԩ+⹌0Jf(VjҋN|׵:<*jcΊG}JwB|(VA8N/UYCSN->%MRG1[o-cLnp=5I@9}\-bߘ"omB'ief3g޺ =Pz<$@3rƳ~'$[ɺciW`5ߡo{ xn8j< [AKw>ra>ȝ_s ٞ0ғWXp#Ն88.j6Z@/['W!/"cvW1_/Ğs;@2=z)x3 j*xwZaEsU&u]{flPOB/9KG8z Tsd\D=OS ?' p `ybfj|Xq0Х8sP:.^_ nx4{о}*/c7$zNݥ&]_'j-ƛ+ON\oFT6 o94-_Mx 4KkľzF0vęOƀմvjwoɿDÜjbul!iٝ~)~> ڴ.ɜoͲ_MƧ`PO_V,䵖]~Y4 7:}GƏ.NNj(̇bQ|+9yܙ)}\xU%sq$^f/[۱~n{8yy1J:Ӟ' ~wkdoQZ7K mhWX: ¨%2륔FГK=ڕIHO;IkE e]=2tȗhVG!j ȫ({Vi6!nOHf㐒y-,zj-W\I7=!!#SJD=w d(* ]qe٫WC4ʽ= Tv*UJ"@ v@s$Ԋ8@B7+L(Ty$([(V(9pEA~i[뛝k1&s>EZ'GrQPvj>Hyt3y'*}wbwk`-5{ICV8U #=9[z_\qi^1g!u3$aNm@ 'AWEWI%]S@d DY'R>nN^5˒,܀|3[۸0禆VNj={h72z[(8mo"^˒`@ a^װA-UO)Y]-Crrn~U! yz(˱'2+y5-ÿ| M+claf'?3:X]n{Uj>~g1yq>kao26*k\\vuvʯK6| tt3JV6eNs1|N/, ]?tMXOޤSYLo7;/2?*Nc_\5)usY;RlNv_YQ@@cSqVi`-d8N~_;/͉MqX\j#G{,"_عo!x s!V82㵽E"j~&"Fݭv\M$ըI会._o۩iZ|K~e&7׮ t? 2OggS@C4&4| ^W}Gt aHbuHnڋƯ\g(.qKY%fk/&ybw( =udQ]4uj3J_o+ߢ-6L"/zBF]R@)"+ At~M͌(4sIzB Uػb L=3P [F fSq?9 T{Q!ij7LYC&xУsA0J>c{T{V0 xO_UROѺyP?DZ Oitf*|C[+!{gliwN1r=r<[CF*T%bFpu(v tIW|*)Ŗ$) D w讴 Gu{Sރ>t<90ɖOMYk0A}UTlz} քoxhlTo)[ ]?@0!mx~CXla0#׮P ωj S*h)yr\yԢ tzFwmOD\.Ug(M׫s.6 jũu@qmߜ428󸳜qfx8kv4G`y}j9;iIq8( .Xii)(.P{%F=Yj4kzJ\f`B*U1xXjĚܨЧ~JN#'mD/c;1k`\0\]aN>aʚtzU.+FyMwofGzûʾM14!rrc0Jk'wښ@pK2|X-,?wZǂm X`!%d>T?;59P9I=a3k tsS栏uF ;'qɶs}-O<53]!sʔw=.9wv2"ŷB~i]xw޹>2ϘpKWb!&kdn,[L\uW3}'!a-x,I d]OM->^RѤ1bsFix\_shʼ\bJ8)J͹/~nc_{wNT,Ynfd6u 0>7z~4%tf_&U&¹ުkg5A,/;2u9=7@Mҏf^~U=ɽjhu5 }=A-!Ϧ]ν.EEY'vZX^Y|muY }Hb 6|J^^zؓK ؚBF{M3l.37H5#:W(02O:d֩eј{"=ʽ47^yҜ)DՂxbʬYAz>ZpQPթ<T KA&F M%pvB$D$:;-GҹI2&c$*=r,4nޅ}/sUĜ-*lQ ~L%ג;eLreUyzd{TLsZ(}(*B>]Qr0viųeN:mlt<ԋ *lD1ɟDxKl7`L"qHΩHڃ 2n{* hm9F :p u/T\c:Ca7ƌCvK-|shǣlΨu GoL/jX ᾋg>LDU3u6+# py -E3@` DVJ}gD r15nzf|3ճEDjz+= y K؛Ǵ.}<"tWLpPq8"zɥcU?@ڟ(4 rc9ģ-ֹ1m"м?߶*Xd,f~E{Lgy}<>kT3ZuBN]Ip  =A~CkJxZ?ܳPn{o|hGVdfT_Vg<;{$y+3&${QTgjh<4#v*(>($i̝?TOXfuH>+r{nkz"Fc `5@޹,XgrsX7<_C_SJёԾ?[ax\v>ssFۏS?cߊY@/dAg*p5 x2v蔌nde׵֙jQݶr羦$/K6: YJ.h^Abx^صwR1\Mwgv1J_/$c57-4=80FIܝu{]fA'I*牆ty<|X.ۺjq;Ʃ}&*+nK>qQH&87+ z/\"ws]aAZ@UJLH.m)/G &O{&,;O Xj7.NIBf™'/&aj{9΄NkJE?~1O_l\I0{G#&8":EBS"u~/$}$ xș@pHb^Wq 2щSoރ<[&= 吀גr|ʥr|E.4?D>1zмķl{}Lxp5C?*U# bƑЄg'8^kdרah*UICS*S7;GfNf:kUZNHҡ  uj:;2ح ч_^5Z^mPv=ϼǫ;.\ȍD4m2'9m7~h\{k"d͖)jw| $??T83]~qvS_ 6]33W.=UhyڿWhsfvםL70]D^ka&`9I~V9NK4 KOV]W!zu{kGi,e0]TgXCTp/Tps?fxI {O&YZԷ8N\[EV3F `X'>x殰&d a"n[SdZmxq5_֐^>?x07η&NfN0O(vcJ%52]ږ'rH=}v-^;BtXeruW䵝 X3Ž^f{meNg-ײ_,Jc÷i`}幓Si,U7n i-DyX:կ.z3ȇo[G}-q0_7._D[G O?_1t:bv)rW{cp9}ƨ;d|uʝ<p5@2L-yz s]N m>E9'_P64kˡ}Dh(egRcirFw^?h+):6_Ex=(=__9 ~&qvų\SrKXdy2]֛ tnտreS=r!uM5zŲjbu:0ڵV}6P}mOLJƼ Ζ7b(kz'tm_G7OLOܷp!c7ⴍ;?KSQ"ݛ0֮,0Ǿ89+hK~b><%٪ᘃ|c/ }"S"E6ȝPJYBcC:%R }(Fc|BU)};R _ =$)_+L=nx9] }Mb]gr*&cYz&{>shw;.kqn^@`ވ\7 V$(t)]o(fc*뗢EAׇ5%@rWgOK{;Eu򤀙ՙ\+VJcUFѸ }J霓6آׄ/%$""ke:]qIBDp{.(b06RkUD%ND DMћ gX>nzr/7d(8&uwryI ^"^g=C 'f#2szHX$h !u^XO4vcQ6יEA!Kաb^uCkLDh8Y)wk.&S}jHfP$K֒i~d{dJ y>fQwLEf3u5iO \({@<'ES(Ԇz14e{{>zb< 8Nݻvѭ(~C }CBU%"N[eK-*SZ`y>8~/L=9!BΘ+{" tRx'" * 8̑cދ/I=.fvB 6A6M N'rqgN>g81O>NStل\ʨSULBg ?~?O4TeΎ:kK#FfUIry q` 9ju=eVůwD|zX<'J#w_JTiL,L0e3QTZ:ib[?ʵD+`?UyyO4֙,qxʲgYwOպeiwMժy{Z<'xF{` }1/;QnOKV<|gO{ n~@{U C'Kpd\unX܉Yszq …nFz+N҃엗>2M]gW>uwUNs.DJ?aMypNw)[)7bIܐYQ(w&\P߃oMyv)ynrtzV`2eC#ۀ7*Dgn>kNY\r[{ݫ^Yͻ1BG;Ӵ6 *K:Û@NB^w}Y_"*E]WOnmE[W_ g0kz'Fw#FK'u/EX*7Uq OJu k~:,V4͂o$qhj~{j^6L&0 ~x|g;=+idf>wYkA#ΓaFDxQS"[ {:-u_|Gތ8QShy&;/Z|ru s5;nOv4U Z̑27PTd*|/~䏽,C<_DVkWy8L`Z@ǭ'A9)tbv^{-;6HHurx^:H1U8r ;;h,QGgRhS*JGS+G HG*Dmd7P9,{?m#CDX*„D~d{Ez>rLt\;"֌ 'dGI UWdnc dԀIjQUPGuciލxש>Z Z/W6N O#i'9J{r"]!3XC/J"JnNk'2=m%ԖL{/1͡m~AQ=+=܈ٮ%%Jb8moYV>YDsfφXUC{ؒ: ԰XKJ!y|xݫqZG- hrMW8M{[ݝLOݏt~Bm k LKlFO~6Bˋ\DžTçȮ-`& z,=(b D|n (|C|6݁&ؔة(ۗ\>HFQ~k!:j";O|Ak* tymCÊApw Lך>)Iq||JsX[w,W/oo"!<öCEV,w]5{[mL2wl߰N ȷܦ]0 gw=Ig5]e!'EZb!Olvu 1o Ε޻wn}sӿwg}_g&=ӳ_+oc@$x^gxx}]Oãb2~ٜU;H{hYV<ĺoKr[Nb=3띹jpk//9ݥW|RsGz]VGTz:N|ig IVLCx<}C~<ŇZ"180|~L>b{x$f vz/b]%=fr?sfC$nG|:\½ h_U=~+R(e[<!%EIRyZU>}tW{y4(\ y%b~ Ch;mL;:Q֞`jyͣNsX=r/*'~zg,h#l)5_57+IӾ%{gI9Cl5ߜ!f^"o[Db4ݐ hIP4éȻx ! O]lb v9~puέEq$vXs|SsuKqVcg)|ug!ܿӪ~Jjz=%m bhl.;=syΟP٦mv-l0V,C.w1^s}_}|oոY?&@"J9NmC]%φ_ '`Wp3 fcN61m[ذ E,OggSC4&6J`&, !V(#\\CZ0p70<;koڻtn?v^իrtr]F}u;Rgl5A73ڱ;doK:%Uۊy~<yvOwF]7}׫RѰk\ڷP$rW§Zz=^zD'[_VȝR{/D~^e'q?+OB{?~]?mWByzNq~f4_QE;b;6> oMb\5i9.=G1}r>Idu5]֫bTj$r ̼bOOh7;~qG]^k)}o"E5rzԿ9;ck=mvGN3-f%l.A/8U@ZfwsTLtgMnphDh8Tdpͣo>OHWw9lvәQMly,,c=%ɮ5`fSP88-tžEIv@r֗@k}ܩFͨΓZw[hj\GN q+_]b䋚 B/_w' teW Gk*^""!OͺSɃkBC'ڙD_Z!R.r(WT%]IR"ިt"]jQA\ҜI YW5ɡ"#8ijk\??$af<RD*^yz-zCM"fLg;h24=7)000 rFv@Pwr"Mco=`>H_"zWMSaW.<3EHgOTxksam/9U{,4{t>==.*<39w"Ӆ$s.qTntT/P@n۷5 4Eyg}ztK# ?|3'%a!\+{r`7JK;$ή z*R.Y+Ot7U\|'~v߼ ɤ,k]| V´ըmE0̮[\+vDҳ[)]y>+j^+ro>iLG1x2گi94: o\8Pm"G+5j'UBW/ww.&=8Micg=u/qUz-nd2wYax:)\dΪJZ%Q'i6n9 Xgw6ն}<=YllN@ 9'SVx>XgS0uhp'cS԰og4e/]k/p\~+QCef5Qo|]?6G?7>6~ykue2WHT8<_~ޏ9_Ϸ|Z@_A}&FSeJ1g"?~%K8jh&9C |P$&cn2HQxf0Nb],џyDpPihdV8K~ϼǑrjYwK|>̣Q qp'*b۠Ib>qMG~2CSg4Z@pfq]AQ@<LJ}Yf^]cǕE ͩ:y6@/Y1+)5>LfT`jRTtj1-(l R6)ӡy_43mYq}f>2NrFb}*'%#R#ڝ}}7癪Ѷ`3OXLY>574}c,ޞqw2t-~KYw2\O_Z[;viƇ)nV[+J2\zL$щݳ :UR?@ُ0{v3*ch6=y=t~?Lf.d)Te;A;v~V;L빿-j_ulCOGTL ^X|Mh<G|5m{&Tσ 1 ι9Npղkj1= )x]"Dz;vz8ȩYl]e.q>*,jzMƖ Hp^^ԭ}·_oxqn˜ÖMw"w^e䷋$y:}[[M[%maCe]m߶iwyR?aV\lFO@M8&Ԙ`WIQE>kDv6__ۛ1f=do.b|EIZ6/_m2a4CVw>-ՁhbܾٺߺS#Fh>Ҽ"QmsOx_Aa 3/}IbKB1K1~ RBob F=NS!+=>F'Oxhs,U]|d{V{AGuviW~/&L]N$7=G8k4WeE 9YF9n? u-s]&GtuVKUh]N3%*q]d5 K=[@B"Қ nO)8>1ӠGק^CI@!i. 5bϐDZ W$zr+W7 &fu(ksk4C8mdڳdD)^T޺!=Cg_QruEutn 뤏{w({Zz\stקϬG{*p1C;Aml$^A ~FN*ed4?Dî˫6.jCpO^{vGQCR 'HYl^o!>Cis}#9w3+OggS C4&7f8²dƳ7/g4~WU$JݮBR2|͒%wtߪ5E8u.g4|;EE@^k;};q͝nIi=ӫ/G?ϊ>ZqSѤoJز'^h<ޛ̊FR3dHNfIt} gKT'CũT^]yUhZz0:; hyjOD<µZO&kK'.b"YF`FL8,[s^*K/IO$⥎+- d{zcw Ov=%/1뱥>_D$,&ZMm,G;tQNnYZ!u^} p',]y"|^ X$ަ#"yR?fMJs0Ы;DXc sh޼RI >?#Ė=?{a2ouc{JUvw6k}vpYR\aW<+ەްHFZ\XoW%sLe,XFy]/4~2,tE{b5}A[|x{lإ>ܽgϚT)ob/ѥozg(NeN/]Q-!pdz%eB4=h.h5s܍Ӭ2wa|_ȿ}q ϧ7N. X).[xW}ex?I͖}ˍ>|5qw\x6cJ fϛ=^mxcME4]Z[E#롙t\/YuWptzr:|9o^>uj-yoRt7YlT)Q:/_Iz?ǸqGWBj rb%שh$xzNHpN:Z_^[;SQn}'UWyt 끯a"ҞU r\T>U':փuc<<2Jnt4˻gPۥO9\.'E=D5B!7RubV)+:7'Wurw?^w30 ]flB<'٧-  ;0\_I//EǭF|f9,M ̝VV?G펺.v^X!vZ82iO{~zʊ|F "s7DvKHpoh]W^eRW.-%MoWdx[̼x\%.ߕ٦1> 8 \+ETtA4Mʲn]*=$ )[ խ8COg {z=p `Ϸ>sƚ_t <<ެte/Yޚ g~PRdUR*%;S]6i?/S,{/m+"DT ZyOJ.ʢZ݉?!1P9wD{0νVqAQɌ3;Y;b9hr5E%rG{ǞlphGP&p <\sI~a!,KKBG=>xb᪽\gE'J1osi!4<5L ,%5s>ik!,sȯm')ƋpiY'ݑr'4 %`_{Y{8N|붠7KirNZ:ͼs)q#Fr7εq:Xn*¿1ҟHB_#Y{ؿ]ٝxreQ>ݮD>g$ [ySOj]UpD(jYz/˷dJz`NYf0sU?\m}Cy+SW~AQl#F1~)oy~{۲3wTՍ!䗎~wכC˛u_;}S͏ xjU\3E'7;9 mry /Bs &kvJw=t%E id}OoLM_V(6"&d>_.oE=U&<.;lUnȼ0{JN=d<ýnbo6fȓܟCq^zT=kןMϓ[w]t%ڱ޵O=,Qkajm$9b7ո=KkIaTxzqKͧv.2g./To_7FkIԒ8I{;vcaɼ"*jk"F ЅMi3M&LlgƬ7M@9׸[Wӳ.# !{CzYa~!yUv3*>{߬"T!cԹVy~gMwWº\sM݆}4SJ1wٺF k!.^{oƅ."4G a 0W%@PHYgy"G_u/497O>$yTtC+zVe_}9s|jsg۶y47(c{kO{%~kc!L@.re6WGٿwJ=^_]N=bzw;re .[?v75|f$UE4ڴ lCwv, 6dk޶_[ۛ[߿ɥ^n8,{㿽]G~gzUs]gNG t^s)z'o+`Pd9{- SJa!/^G=oFP c^X3~:-Ly RՇח{_;{L6yOggS@/C4&8a(_zlնjqz~6 jHے)cV\7?M}yo}z Zez|y\CygUX~_tϨ4ͪ7 ?oNe~xᦦ44=Wl^i'~UOOsbgŮQXqCg+eQϩ9*,!'|i_mGWe^ױzhl<:S1PKy~|܉b\P?3-a͞m3r5Ї̢B pAq߿~zKlWj9nf퍳jB[_\(~ xGV~ؒT-euc}m%R3l}[s:OGٿo˗5r+g^{|1?uc40}UY ΔE%ڵ';pR[r׭mVQ)~Cx՝~|= [ke}|=y9d+SjdC~?C8FFGp_=ch'ts[py-#cPQڳO#GzҨxѽ# ȯO?Qٚ˯~GeQt7ٲGžekZ#@2$ RVH!7[ϰmF}7i"[6*Wi5_L;G ?^/{Oh䌵\ۍb*uoW~̫k lF ׻M1asus׿ӛI@Y6Yj㭳Gk҄>Tt#\>~Q" K>pEr,5^Z Ƕ{,ʲ^+2#n̻tD0#0jgLeEA,Eѝ .,#Zr OQ67Ѯ/y E8.xŠN^7e!]{[BAMHDL?l7矎e`2~"ITvZɓ}YUaQ~ؽz.']xS6=Lsuq]ᖬ_n<֣.u"MpJcLwwg_ؕMKj6z~29Q|g5NjKNX~s+?Pg^8B)4JFoRQ.RT[oUK@pGF .KEa&U"pr*$AuT/OS!!gZiƹFmBҡY3ZȫXȧIjԊ_珿y>y]];[Ci=^ ThPUB4^2:HOO2xF/v* QPC?SqvȽF Qy3=K߅@BTVPI2 ck?'D+驑@4T(72;4@Q@tG|Y+2/L(}ѧܗ5ivz @\M{W:һpPkw9LV8H۹up~)Uw1 9ytHZ Ic`-^y;dJձ7` vYawA k ^7k?3@Z(5>gxKUf]ߣ~aZqt_xs)[:h"O&ފ **)CjC{ʊ/D>|;O$ i&xׄ7::NYzK0,2camZ,ߤ }iǏ2GcEVM/[at3(f 7h16Ukrסw^umi'.']9CО nw]sJyN1\lK|\ݻsBމEݟ;Vnw9etsSI?=Sf棇׼N~W篊]9Vӊ/Tm0(CSM1`?r(ُK_ԉ3=>̮.}qjwynƮG?mǧCѸcx~1Mwi_ȧ7&e̴w01[<Ω C܋䋳l,-;P[IZXP-sHCCX:/gCuEpo\Кf 8J Q2'7@Ef Wlypo)׿3}(UyNUd;sPA-X?VgLi|C{N YO1%UUֈ"W%G^?itl:Wddv n,@J{[t=M?iU (pgzR UW}rNYp)9Iȩf8;MJLvggl1'8~t&23B9E쎰6!T)2ZpH4E|)h.h4;{U< wjGR]=͐V>C5QzܥyZ X @L [jY\ 2akOBCh _a.,pSZy|}ς'%곭[^qqG*x&!)nArʠ'QΓvWv{oK}1Gghߟ4 ԦؽCWqGwXޒ6}!ȃ2]6$oZyTʩ*~m4cx/>N lr)@1ظh}ù29>].VNª":\_ǂq> ! C_'mFۏ4W#ޱɣefbҪƍh\OXjةOm'ÝCr@nGDV1 T#w1|O_ȃzlca]^k}{1!27I E_nUὨ)~%i4iX5i|/Oͺ:g  jw&_raILE"ב x -8pR8NvXpoVW̨T zwcX*W*,E'!DpB:F,Rq?GŲsڱN6{!kT) .ȄD{\8Kƨ B+P{ } _<$ unCSL'_K U9 Ԟi  y:B=Y:DU$=G9": dtg/1o͜}U3O 1؎ P"}Z W Zガ_E{Aj3'Z:UJ,\$˟dr~y2!*{ (>4:Ol> pD Y@qcGkqWW^rTj}xe f\*\5;.j [z`mҔ\~O񙙿7r)W3df`] X;&J HTϑuR!Oɩ& ;˳,$`??I$iUXR$Џ]r9:\螾5=nR%kY0GM?wΎʝ!2OC~n=]mA| ӓT=ߪk pM^k ZAXRVէP 'k̀ڤ7"Hso;&!2&ԛ֧׽Lw Ԗ˷i*SWՖa_Nl@q^XG9n2k>.YM҅uNSԞjsr*gL`<8޳5V~tC%\\17l]ZL2*ê~YcnK;¹Jt<`}*eRDn^/$MlΫ$͢Y%˦ݺNsTmVm]]M&;;ijzW=_t0_n/`J{fm U<ɞ/ӽfBY4m5($OggS@?C4&9~y=~*s]ݫ9Xn(deJ"lv kX.]K#)UNⴐsiVb{LjxG+RqkM-"ꩉ"f3娅dnfHFuVKz[&=}ޫ|z\ڸ˨ݸ Llo8f膀֠۹_&Cf]VSRUxԞ*y ,JGD 4]F9^v]ֵe_|bqT4* %B8 İi.DrP~:uKݍ[>$63()zȺ֬Swf[~,2$w"=MZ3 } Pe2XMM%wdbPj|L?`m/JRkj$A7i>/wl 9'luJ_ W]<ݓl ۥ!Ig}䛸/ @S :uRbd%}R{Q% `ic ٚ4߾ӎ܉]뙥XA}%UB8L@~\5ޛ-s"B~#U]ǩ| 7- 5( b=WD&:&ѷ^KMVzmn Ko\Ve8.d;g9Eőd,$˓w*|֣-]䷉V?0f=~vj/Ɯ~yI џx\% %|^KYU?STt9>~WkM2HH\`ԿuU 0l¸d%$҅ڙMkpu+D^敨8^w^ބ]Ě>8=w@)&S]ﮇ"?^:T:94H#\ޑvA-r Wzg;ξ>cͻ5gp]8CV]34ʈ!*HrD i DW. ?hRw9d]K>#OAB*Nf'?:iHgckpr)D:USOy!jV=O#ZuO*2kQ{JTg&$Pѣ[=Z=kCP?F$<kdcooRɹ54Ow.M aԓ.JY\c^h+V~@ w|?bvtu;W[׎Z,J~˗!㴪:p->K4j8J1B+}vopI]~O7]EV3ğ)3WmgT0w~dzXUڵj{5 U3H]x ԳIug%l~5S-l|'677vqHւ-$.q6;{@iZ|`* f]1L턔"hQf]z1"A2O-EΜ o^5][@Tw0Rnyj?(fFX^dRN \ZG_ڜ3n4TF;~N;׀ziz;P.&ZݹxLDnJ^'#fn]t68Jm+\4!Uap_n|@~;[I?GQ*<#]鮠?]|[,{|=ZShE{b Vfc?n>ja1Ff\ ?GEɼ&_>\ی·ɲ/ωl>l?fۧ5;S܍㸜2ьn^~n u]Vǻ/m_Z"Íя|[M‹ģl k|X>]SՇ4+|êO%E#H8Ju[چ}]Fc{\$;SCčOBvPi>B#hZdu'A*u?zyoS-nfW!Xi}Տ:^tWo^898YT8r Icr=w*դѳk'jaA_ji]uT*|0QFWVw޻y=ҙt]vYYE#9bZ?+l86T~n1J3Y^y/2qlA,G$io,D#` Hs(Gpij=APb u+~7~|e= YW [ m-VۖBW ]shttCԘ*X(>B趙lZPIQoo79ê]gzZ?O- [P̀ļךZqrPE^yj.f,|Kp/sh !E`[TX{Ja9Ϭx^st@ @J&P)xmw~]tm݂1!`T!{C2{hY"4G\8 EjmGN)SԽ<ɏ/e3Rl$ՕH.Ϥ:r>~:μ>ǠUW*dj P|Wx{{ArnE7:cMδM%}z5U;˷ (U{Xe3,?}IW' W2յ'Bj_@((c4ԩoUh 4%W)7vkNL"-M,'vfEio[g_%5%Vk^Ѻ77ؒMtw?cc}z=d\\Y- aO#[l "##"r9MRy ]K.0bOyOF}Du}: 7kByYhvJ{OGy۷>NVXky>jp r_b+}0kTHxᆆu~r&sT0ՄqPKUBP&ܾTƞ@0( Wϖ;+7]]~^ҌBs R~^ۊrȒz#1k#~Clk}EhE`]exrR=ҕ k:&rs "5I֭Wo sk\\TIifXB$Wx{.;ҡHuK{S򲊵ـ =^OA] í{i,48LݺN+0:-(5KUjTڐ8sJR?!(:GKU~T9g2 :֥6_|;83tL4:Z#0H]v*hRY=S]<_ٯWb⏗)ΤA !zjUҁs8n1Rtd{BEg$;T`[PRoѭ\i Wʮhor_lq븒LOc7ͱ&{! XU1I4M~9ٛ0jf1jת+RWGg C2qs=iok'P"zyٹ~Ҳvm2me\ Fc|&.|QQ\ )e|݉5ϿJ ~Yw. on%}-8H8)-fw 9 \0˵>'`67.aHuj~m8f5s(']?Aݕ:x؋[+{ zUFtR%"k6} +Wz 6akGT[ \@HYfmia hEd DZ *mBQ(gJV۵(Y'ъgHwmt!Ԋy4nF<#ئ;cMI[N"ɤ+]_ӞKqC6NuiMq$Goҿ.O>6tpY((3|Ky%FKGՉxe=xݚbNv\$5ێ83K)zE Cq;czeqjdZWVD.^ lR䉄<_EڻsP"s[}H"+|oU:.y'ޅ ;={|t>ݕ*{Vyٍb;azd8z9x<9Q0Q9`z\s>٢< ,Ma֊1S1˥}n|?Jl5x\d{cU{{y-m1f"s  M|WeksHl!^/"$vW3Z',9' -I-j+pׅ\y)߳H~gȫ!v\;cs=;q*#/s:cI^j_pKW/*K]<{DzQ]'!dΏrQgfM*Ȯ/vLts֛N6K٦1xzǮc7tiuM֬\M~,ny}EK/!5:"5@1G F|,OY4bH_L;lUM6Vhiy7ͽP{.PIvky?U7^̓XZɦ1\<@.H @ߴ`ق=oLHsuÞFLPWmh=3҉~F]u'}-[K/5:5/StT85e*u%WY旫g9R;jRf}=Α/Vݝ`ў4^2$ OkC򩩷LL,8B g/Pq=A}g8F~9ԮQ+44CmjKMīS˙[k*Ԭӛw;Uxեc <"vn %ifVVbiI+]8Ԯ:GEVtTp:8Zgh,Eey *@=!ӏHϖX@Dɐ@sMԒ1D1gAEZ"p}_ /qK˖^/o+{4kFMyAɽfug*OYNuk#"ꕝ#{Oi*1|4#*\fy?$U& o;ki2HSTi+]JG=[W7t.so^s e+ߥ*>K4R0 w0$LmW]~W:3͊Q!֣fV=6@"q! aW0f/I (@S_  Z{߇~79_r k?ٿD8P\)v:Bl~.HRz&1Z_w@?;DAv+*{?:%[*^yMB<*.wH+ϋLS0 _NA$mxC|fImng7ZO'aFb<=v]fknSl--:(éNǧwXu1~BJ&MfuZgRG! c=\D Z |Ӻ`4eyci;iqd}Um$dXW*&.m æIg;._~X0j\H'+ i,*~4+[3΋~QK  @+OO*Lf7˭(T(t* G x¼$1!NĈȮ37YJʑO_R#8U2)SϡJ^7Dy&>G74#} ۲x}ۿ[+;«㪲d`"}3৮7l~[cF?^=BJENq Z@Ԛ\k\jA!Zݚ4gGPƥk8081y{KMJ0h$h }ZjM=IG 2DMB}C2<|IYljfENחANpOkE˳o? c ξj\ސƈcPHZ4L|9axD"{dqşnv?+tbJVl;ksOѹ^qe9.k'tϿ0i{S_l&|'z=Ʒ;@YW?H w"*Zwsse}%G7'{ƧU|{̕F݉V]UEz{ :`Υ!gG4@)5h_#DWoU?\ wL+U?xOtéۭFϊƱ?Co%MoI.^>o n Yn^ض{Ѱ| 񹻏{  ӻR^$vS4=K*ӎۖ?k2{E ڿĄw<ŧܩ*׊ՔeK҉fĞKm=J>S2Do8'矎uLoIjzO+ |k~L\)?'|e;1?MVɥ-*MX"5Fd+8c,Sc]llP٩Mi9NI=v,P>RkK^4R4{o޾h~\߅m^{a8p>_S 9OI;P "j1 +JԻt߇-ѲܨFz/*diw֣v.!ζqx%s6UY=kuZ:l=DPp3-5LF Ͽ %U:%{tQ#>vS)^qvRdV]? qôԮ!ew 3K#̿\fQ]inJ*;#[=>{?yfuLISQHmjT Ƥad7s+.!.r;j$c)SfƄT`9*bjry؀D}y\.v{RGM/}~ؐi 'i"1P,~߈ `߿0 nA7,6_.hn ;}孼>- G"8ӐA{+OhH(nP于H)-Cb)Ls 10>$ג rO+Jꦷ v7IxFYzN=7%X\޺٨;%(%n!'DWt~b"gUT?aq1ֶ^eo^L>u6V&dlSŦN<99}^_Oa;1f*Ϥt+f5GO5yPGNtNiU^n/@X=nuuxPN4*=LdO?3dÇa;δ%p@>Z*zjtk^rL7j8*d*dkLիY(2Kkx=ԬEjKޓPBRܕRխ(Rn8_Kxq⡶zVL~Sl{ؙ(yisC}͖?UΪ?{${/_nUo+cJsgw] Ҿ Is-~pMfu <w<@(uEǤj^;Oǭ_SQX"[ vB8 KxQLQEnu (ds% I" eLuf^'GV#7948:e5x][~MGN{ڟ9GkBJK&|XO ә;DVm'VsVzDz֓QW Gӊan jۿY:[<2J#z _w ޺ӶZjGπ8FRm׽e'KUWD}r.JB;/j >kz$Ei7#p~c{-n}G^`rUX;mWEE>.1(ct<}9_JH_&ZG~||X;nx,(g`(O>h^^\^0m/ ٟzd{{$U$iaf^3y'>K$™dEfM\bgPX*ae[\`ۤȬ @0E[b4w"HC|?3?5?丨>9Z'Pr+j*4F 2UUR%pvmRdQU\seN ֐I(H%ы~}05UZBu@f+N(3=*ЖtH1ZJf?!QG䳾ZUzn5'`RHL$X8 ~<!xaaDCdJJo7w͑bQ~_o4+qբvǙ?{a{@rĴK/,V4cd_ ʇzK[3#50m#ݟ=i^tGKx_Npܿɵ\ӞJ|XTfs?3Q>ۆܭ7 Ft-tG~Zͭ=<>d+<+!#U_4r#WܯN佟ܞx &[tö[xV$`1 <L(@!F)ԺK15*1ۂmاSe ;zX㭾#tY0r"YdJWsj=@^աqmAS#Tq[!:-BYDFk 0L”_-g]pijVԝx~m~4>ȵ-҇87ʫ&vsz) V{hvˍZtm !$Z|׌@U>),y1TNkQ,pۇDN㢱<2qwNqyƅU'm,]H?N1FjTAS^~nROL .fVԬo~6"Np چs9rId6 VO$bx#ZVkW|2 bzZ6l+N%iT!UqM{yƷ 7mTK -j^5臋ſ>?ebƝ@珙ew}CRE]-# 뙴T?T)pJHs_u:%Å0lPr!(dJ$F&bqomwdZ;!'.˼C}5NhsϮu<qQu[C]OZv=T5bW}Pk鼹羂TFwB xZO8N经p/[JT#5@fx(A@OHеpAЀ*urR=%OIZ4rBI 8E4wnʱJx8Rci#AT!uԂBsjW59M=1wUJjIܠUcrfcaFGhbd]T6PK$D/qHDU+4@, 5Q յKDH !:9q KLI-g~~iB|W-Y;;"{*OggS@oC4&<qv8^[BVMugJrz\C]CtA,)8p+`:Y33V7M6L\yY|yj 8{*@,"J,* og#]m YYy$%LA ū=ksG槔dQO_u:~ 0_S.8DvPܾmh\x9xtVu>ϕqc)ЖԤtzy25f "%$)PGvȪW*B%9=4K$<48Θ:KuZ>51Krmre>{fi~t@Wr:QD(}tRTO)`v8DQnޒW4OU.rJ9o#D;0HyP5DQ8.a>E?B>~>`y׼y]2>2kn+pRo. %&ӆO,D8kf`1ƱQ=y{JRjҵonkg ϑ+)glP_҂ ̻UMlfdwi=Ug:],X2a)D_K?7%le}RKU,?֋pKVz~7g-?L11d\Gf1+x786j…;"ӵPFc!d4(g2g=noZO}P&cXrx?,',S;_f.ex}֟u Brgo7+e_\EkL}*wpOf4imHmhx:Y:]FxD ऎjˆ(LRVl䈾WP[IZark¥_s=ľ."ˮWU7NjN%mqݟoR ?冻WS޵v~5fj;Ԕ=vg:{Ӕ Ž7g8i2䳫FkfcyrE߾nKk뫉Bp"SҔj*!*\%4˾pejxǩ _0_l83u_n5 ^nF_GS_QpcqMO6xPi\MM:Sʀ^mV󬨓t3ALk rxSVwО \X}x$V I!r}Z1EJC͠^s%_ފB}5$&Y Kop5%^)-RgN-qdjJ<<׃`,eN΃*<$zҏ߫~3xN'v2] 쯹j)'lhE}.atbǶ#y'$j8y Σ`הҨ~,YE8^g0Po"Iv85gEZ O֔H_#ߠܦvK/Ԧe rᗫaTrmbb9-?m]20wZL?|O]bK7FnH?>j{lB~3ؗ3r=Z5L2X+c?uWG=Ǐ\ y$R3+M/X\9 ôۼk}*Yz|g)Xﭞwy^EV@݃ŒͰ ==n݂kv}Z2(~c 5Nrc(kx;,.v@l㿧[x"]OхZL jXGuHSW Ykn;]N5Cчsh1zȔ2=tC;xDdv8D)أ_ibBNWj%t "&ﮯn%7<B~t_ljELwV[[ͣgz-wUbta lω|*<-]H"G,!G3 A;nvJ55tP k8kH\?T`EAR㜚IwDheGiǟfADnZjٙf:5R kf3Ԙg&Qk9sцq޵/׳Օߐ>==7nنf6w_f7js$MOw%!4 'rCy!G[+ˣ'sM3f}w ~iڧ+ޅsWB]"A᱾{ /Vߩ|Vj2*3\rEthkȻu묋'SɩK$_q MO#ӿ-K,Z z|S+^dM9Ĵ[tC3{߬%ݡR?71Eh$<.| :{]J/u>)Ƣ4H|)||)yذff1ǽ_Lfd rs9۰몪|y7WM_>eRP=SX1*Xs9ܭPjD l]ul2_C.˞[yQ胻U1fzͩ-> ݄Iv] bxLlP ,4¾"E8z_D_l?j儳!LCVro>TKEUu|NcB*:~o믫&-~xMz;Y7iZ>d{>E/|/|w\t\9[v޶OiűJ4kyݫOf" `T/H ަ7L~3P,^ںR޵źT p+#j /Vwֶ'g dqr^NR֨DgMS? pA֥Țr-ADZǪEcyٱyZsW] 2&N<3/~vx6uBԾ_'C?tGPMNW"R=97ڣQ 4=0S5y1BٷЛ4w [[k*uͫ,[߾̐y찼'|"d8]$q{"!+dVj'Ö́[UkPbr*يV"P][ipTdCѝז\O]=Jk;F;I4kM'q DђyzI;Dk+8#dHlZ_d?ERƧFj }P?bib. j"S'OYdg~˜/Q(J|>D~9?]9 X}:mv:ooe|YMt2.w{i%a$ZP=556f`nsFA|# ޥ0ʷY84z.&+K闋Hc6h|>*J O NL..$@mG+ʗc_dz` F6_ʄ1%'"_E?Ͼ`U|z1K'w>'!:.8]Q1AQrбЫz^-d-Uv$,y玫j.|x3͢]ߺ隖;e-*Yk"ۭ^fFL % + rag so*F&xer5I81(lpl7'G㤌/R8Bo! ZHh5Y=n"RX;S{jȽj?Dt*A|6 C'n:vAYhezݯR9q6_3ݡKTOoM;oB4$W,>5 s4ݭ>q"ba?j|]< QVp^{BNOggS~C4&=#GEcGü5r2ŋr S 7YٚE~$*][e偲,޳'ntۅNƎ5'ٲ/.gO9KQKp']p1>k?T%4Gg"yqҗ}ܲ|Ƕ4[?5+l-^V9^F_7˿=Wi/I/!׮<EBnÈ4ix>s4 3 Ms*/3Tpwnw{?д6@T ZgD7 $9*7EZ>S:Z)Bpq.A7&D8PьI8燝8Ifv)G>Zhdm ƔRKG7ֺJpRk wk ]p"w(T`ϤE'gYhΉ#4e j4wG<@$@ )P @KQPb>a;׉dJ\ 1IM}I'AݟZ3FEi]7'M?s?N'EW>X>|U‘O? ~_̓ɡjqY?(J=90f_}\Y?i??n! 5z{LydoH %WzJv/5e˽>0HkOQ QQ@3'H[pn)l,wf5A%N~\oV!?}pޝt;q q~r铼n*(ncfj۪OsRUwh7\0w4h)kz]Zg։X=fJOs\ק q%[\EYl+݊n0y6XDziOURwSMBy=}_+aBnܧ;/)H1 VPyL_2 tC#wݩʹT[>hs:z\o0ixW5m(ѕ+gGp&mᥢ#I.|0K寲4kϼ O ǩH 7FW`Gy<4Om3MJfSafx~(VL7jaGLΜNI#aw[͏f,ݡ,ڡ!M=x%OkzJ7OM4M]~٘gILrtףF;TT"92 nx5 l6XSXxKfa( ýL&O?EZuFsfNR}PgV:Wznʸ18+ɉᳮllgG!y9gpceQOyz_ׅtQ`lF4ɦ2eK=1ˌ#?nt\qI˦CK'"GdvCMȏx44ŤDCg#\k_BNU%nԫbeo>l&?t9]mÃP$6 /"!:>nf=li{z1d@.tFP7re]7{Wgͣx~8}6ڸf+߬m{(ۡ'=hrYiF8c̼ObWU͌&28&r&6KM<+#nW;e H*Ћ5m:05dh"sӝo'⿴/_L9$nk鷝 oPRn>6f#2~ydSɷsc~]NQscOsIK]@Pc/3=t|#4~t@~]UΏVz^ecNIswSAOn[9V-3xt-{{F|{'קN_>.|r=Q>T4ѩKp%G]L;HըlgK8N(Ll~`D葏-zd!Q.$.#H舯$ ’+N {jٟ[g7C@H*KDsx1K. si<ĵ2$;EA+K]=[rƨڨ/ʑb͠aYVzn9ϟjպV p>>J񘡢yél2GϓPMu&ȳKĴY3| )x1$U:nJFXL"Y(wdr d$W7 ocК‹~¥uI1 O_Gi.1[phz)Ԛ,E0AwWfںޣ+SVwv}MFtuBZd=if΋mUT;DwKjπ[v)+Dkgm`ɳjFD'nNTOdƬ 1:CХUmKD'}>N>ʧ sc *awx,f]Sg]<^ʧca+_,x6+$޳ˬ5>e94+$KE+1_ G]Vd;ݛ9DLq>Y tݰQDp{Ζ~:s ԁ`o+aty'bf7)'2ޞIJ"ȿw$VnViM ᩞp48L2{pu$oJ|{ {TbM8}:&Շm}ӒяYNe8]=p[ 'C|7G)/ >h!#tz4W̽&=KCYϷXBt\*q6t8}c%Cw{  /GCG'3Ⱥs5{_MK/5rL<5eNL$>¾iެ-FmyX%|AMkh zsUddS-5vtGg5z*IƜ5KHKW%T;82'FHO|SU[pVBhQtt6GM~CSJRg>!jmQ%CkPN_-"{sD Z9I=虬5$ۉpd(`N-j;f$IP'k2Bٙ3RQjq:%ɵ&JTɕ瑟'"8TG!ΐ]+ \J$/gY ۆ -85=-Ꙛ1 q^miT h~ԇP ;4QHLwDi%(Q] Tm tL:= w=-veE2kO$c83?ڏȱXplUw>U߷OgLȬ8!p>$3m vny$L 𷹃E%HwaB,\ ?':g081WI_'8}oPk|MId:Obء!,oVs!2ie3w҇m&Y%ZnVQMe u/p #NUq:߈ QkQ|\Ŀ°9W{d#3q Ubf{.}(? 3ҽUc{BԕJ䴕)&S_G];gGamR$Eu'k]Mk~HwQ eY3wF\秵yMahtrZp"wDwߞcv5~VŰطʍ칤9jƦDWVԇb\ZgjI@O07͋7wzO^D7꺣QK^l3kCդ@wom6.^\%ݚ6cm*5o1D6N~U(gM{{}_>YwvI5!uTc3 I"L]g>fv%}^m feNxxv-3O{`ĺ¬^MshOggSC4&>\~Օi *c7OťO\T~ޚ8 p+=`K# ശ}੦5byQֿ@29hfOOzwo;w.#].H4ULPkk%oʼnOy7t-Y<*xKҡr&|N p#/ jv@d)3-$+D1C^"xrsZy1ǣYk8ΉQ05ruy!8Ԭ)U$%kE}R "PDtw&cdHD؃wB"]Fd1A s@j/+_)0!ANZpqTiBw*rHSh :_6]ub tJ{hB ,YU8Nt?ga&C~{*GHwCTQ3$>[񪽊TW*BN&S*<_q؀5^86:B{<z|^?:˃gA9qH{͘|l V{'M~vea0}:Y.7M {⎇}=gx:-]'*A["J^nY?P=g+Y9J%1 !@+n{x%k+?n,@~GUS> -ܻ '&mzmtʕօl-Du*'ˌ̵ݢ 3p+ '\b}+ß'=rz}W3fkSxN߭ʽ{ SsPj=MʹH$r'KOͳ.SKlk,]hJ 2\hfuȞߓn,Z/{[2Wv1e52DE#sko߫Q#)=;>ox%6m`/STkp-6Y}]ULjBSS10dއ=MKKZg_F@hm\rL(_:Roac3ÃI֌iG2v҈'T;zzutTDށ{1)~9@ sʗn,C.0#ouL(Bs}XdS~]deʭb:]%(QE_EpnG~Ί:Ҥ%XOwozw{3n:~{uTWM[TqZʄ>59 [77llB}Y3+uNη|zkpf@?:$.P!JGe_fQ5T dۿpS^=U(% }@ȤM/DԽ%]+~]vD.NK\}ԓ~gG@5ZpݪPx3bo&PZTR\ή5= @4@/]gC?48AshBH >{K95gꏿ|(snBj+5C_43eQ+Q*JW H NsuR8lm*\tMv*2о0UapZ UA6"/~:NPG=;TÃgNJUGUن5=0 PԽ=8M]ICAwΧYũth‘x P0*UpXƊ5 z~BbbL6UdD|fJMdwW7^9p{쫳kӚqJ|R/,-le/v?:V(od|W4_НSc%Ab>jUF"]"1 \IUE{p:3Kj>E.m28k)^k\տ~^>&Gvڍs0W&yk< oWo2;\>MI :^ߋ'X2R:(w>ECø+2ydel۠h"zpi3O&7~@FT ]=^~z8z=7{.33jٓmQdss2Ib߄ud[bownB0Gw1l7O۬(g7%tZ{x[׃icлW]W(?ւ[q G\y=|U@)Hm=3\ -t/7鷜5`2"w+WG`A's ݡ4nuTGڈ}lzoڳe6z_b۸Qm+E?K55[J>+W^A|}3{bS*C']'!k'omƶI5qMnOt/br,39MMÏ!r[eI *صy}/t6׭.}56Qu[.O5l O.3;c@|!?FV] m<'YS;k U;`CFΎXqHNBDVyS&].gb)s*]4:7ƿSa r9wQVz>jŽG =Ne|/ZՈQ!ȹT{ > H`vDtǁN{HlB?( G GH\kBRW*!88Юtdxso1_,]Еk<QyzI/~ꦆRh!ťDa.JgpPDeC>[2$'#Jv%aP~dJe>>vA/[C8J !8$!I)NXpһ$$QDV0D^ttӑSrb֌X57OP(9 P9%Pޱ9&r n 5{H5FgΛd0Jqb`Bc*=sEjsܧ.ر5ˌ'&Jt1:_Jz $;|؜ h{W%kxmlԵV3{O+>bh2:%ϓ7lS?WUV䔨il[ ܞגBF)rԂqjsV}d8-}6"jl˝m2cuS#=Y ([.k=7Mu]ʧw }ߐ@E~0癘l fgeÝ-,jʿa"5! ο;Jhu,Y/,i-Cw?+j y#.l䈴/gG.'o 8N:sp**NU#-%a#t ~jRx+E4'EZo&rˇ1g yoY!5"pHmOnZz,Ic*bqyloO>U^{y=Tۤ.O#cxzŭuZ!7y]]-}owybuW9޾o7'?/ዃ2xe n SҊP[Zn>vL͚쭚s:H*m۞H6:DžthIiP+d29pj=Asw>,ڐ[@5 `rBt9$,/xhϥx.M)fx%ƙ3DDyT}&z] D%c׳CRD1 tK!tB#фh5 KˤgT&>$ԣY#2B)ѣYCwP1"u+{P Y)NT)It.ɌE _ ""Pk(ԳhTB ^IVUd#s#*¡kOP␃E }u>T7T2-ЧAIRq*BG<~zodl[33)ɟ)p{4p"SP$/N\0a2T+4$!f!>vsx3笖I H{ ˔ɻ7{mVoa=I_Ǟlg#Aoaf ~Yc_Ǭ v6]}T(标)GZ6B>]YygZأYx-^Ҕe:U'wPR6S9z* sA'hm;Rg6/J}?=+RFU{P-@kdBb p;`'c(X-yyGe433;I |IOggSC4&?OdT"^vk#G ~04ZQ/T4w뻆`4cj:}ag8)0Xf._јBSꜵyOWMow vI@*N3t#%UDย+kte8R=P#J 9Ԫ -9tMDIL(duIj-k:"#R-zhmj ]éUa'q=hfښ)D?ǂQp?mp'R&f$|oHbvDrЙe[uN 5P;x(:d8X$^ToA@9KRTmp}nU2oQe!P#ԣ:?Լo 4G. RHiJRg:*!)t/׫[qTg1UAq 34?+1C u2Գ1/ ~4{<ҝXp }r7p^Wj*{=T pkr 0laz=oͯRy"8݁'h4_!@g<<$]91H133Z{C2nC˞v2w{ gǚ5S)52wW 䁍str] k+ 9g$%O+R^b5 s.tu<`!mJ*{Iű.׎f/֧տ2Za0+wS5@Rʓ|)}vI4~^Ob?%/ WztL~{L!ᙳY`/Njs2*52q{kCy̜]fDG2!Ƀu]H* s=lPqo&nd_S_/߼5}W16 R3VfK=B\zo f׏Jp[!P[`[}Q'NϜn5`$0yxBqCpz3}X,Xy7@By)H*P(,Y'2 5D@ 8_?'յoKԖGWF gYZ@OcF1xQ$t!TdC P";~ D$IJ;-3RUݡj3A$RBd{%UHTj;a0+cO | IL %^ . s)JyK y\y3i(w0׋s\7Jw~m9rQS^6X(]T7'r+xܚWUO9x&Qq 2H]`)QGO59rd1.-+yBG,@dU*ʖU7EZCy׾ۥ{ڍnjn pTj|.C{><[׊GH'qO>?Ϋ,o5&INvV;לJgۨ'nSL!<|w'(ԗN1.M=ӅiunKEFn@Ür\b_:ˮ{fZW[j<< slQp'[=Ɍ8t$\!;^7ΒÙx\xXc(jNƃJAhWg~ƷQĦ,u#zl/qr-5&MZuu*Vrx ʹ-OCrͿgGG9_Fw|OH]4&պ@Y]N=#=;Mmvj#b\$Z\DTtWI|T4ⶫW]E5j묌SQX,.ƴ챜/,Φ~A7{xɧ|9Ŷ6z?W/nʅYiM%>fK%[44*WYo V~`;DԀ^~ DH\H1OsE!U^XXuzHD8yS<)RݩJMԩd'Qj("9ôkg}IU~\~QoK=z!dΓ։9X/wF;=xU#=`' $;B^3p~K?&d*pN]o^BJN뚫#sV%)&jM\֨TA兇hdz$>WB>U$%2ziAJy(#G>Y[v) DP=ZHGp =Bler*(x A2M-Q9LA5 |P9ͨ;4 Hw>}_F% *Ae$:; 5#G~ݟlK2)9֔iOx!Ac, @2 J= u] SW5wK:[B>_a}qt\,'CR꺚zt o9QxrOP| ] DgO[g]Ƣ_0B&e>zv֨mO>E!}l\f[c6՘;ԬBZ\fDPU>`b&ۄ3GR+ mjݣOYuG? Ueπ;\A0A]d\,+wk~|3^dSncp@NiP֝Rm F"'xyc$yù}vмHf"l 6+sUUn5I/#/oŘ. [(5"bqP'S8~,R_,#%VU芻)~3lG323߿tj9ɏm >[6W~n0Gyn~KU^r5rjđ4=+λOȩ\buݦ0UƘ,.ji¨3T^7f>R*RK `b;c!Y14V̈́H֦N:KjO-卧 u#qNNkH1uwKshQf=-M G-tB2:DT-2U &v9e;u= QD:g-_>S;k׭0^j|89ILYhtdBWJhSQoTP)J}*Mj՘(Ьd嵓ZE*-Zxvg"O"Dcg"̮N]DuAL"Ρ*CWd=b9O@5Iv$$dYYo?}*4@EF jԑp'@H{+ 59%,̏~s%ۀft8P-w&=@f Eԇ]O Tz7TӶ kD 0tYzbUUcdžh5.>Ua%MQU{ߊ4sfZN)vEM ޿fCuIφq]8g 5B8E*νrz ?R=yةz1)vy ".vDj^$QO(Jb@hg(%pW& :ݰ+8~y˰ʯm.+g*]o'5RՋF>xږ>qəp@< J[&nе6TǴUn癒_ ̓mE˞|==mC&\LX=ݸ?#Opر#lw^muL 㿆_..֫a6rYVB7^$nL ѹ85 +e"9-P'j֌nIEOggSC4&@)$#'~VLC95wKU3&/U)s GpM~aҡE.T>H0YĹ@x|tmu̇L=~M)\L%8RS5ꑻj8Y\;\rJk̫q;^ZRywWXkc6Q#) wF/*=_=CMAU ^;}eTQLY4xڴdE4Y:ZЖd͙Yar})= J'j0[ӑHCx0|PLHɣtD[fMeJZNDT OyU8{55WnR5Z12A@Gf@D;C>!󞟸ws&#K% 'J(_+;ZP@ N^tAK;y~;٣ٯ!2>?"~>21Ȥ<֝j [U{!i)P RW[ GM=5/2[ aSΧv"/ ԯh?ru!-1_3h^VM/8V4uNw%p:$#&rI>-9SduTD*[ꇋojXu֛qzK_Z6l#:Yy5]7Es|.0!\j1e-O@$LQdw}î~9 ?vZ~*A; ƍSќe *k&D?XLj޹Oh!О*b._ +_ٕz[{mj.u/lrL~Q$v,~Ř;]2E~K:.Jt񓦢V.Xod#]i< .v jx1^rçpE}z;uq?Œu܏KĦ.rD̍Ff!D_+X~~ޣ _o֫-WiVH.EgܛS!DX:5Hp7{0?m{QE[JkZNcLƣ˭`3lt&IH*XP՜wl|,YH۟ś]\p~㻓'ORwԩH[~=<-Hzsd'qǦJޯTuCj¼n84@͵Fփj'mJJ&{GzlαND;uu#qv|ȧ@cm'#hZhj6Y]d|8Cz|iݏ7$ads07R84S:$|M̻&%D_3#J$HȈCbPt7HH<(҄>YsQ=9#jvK@T#-goq˂!-+ۗy"I{^?[W[;QxӢʾɁ&&5ۨ{T[MEIqY>ɆiZḵXBEEu3C}y*>qI8øx^U5FΕ:Hz`l?\KYy1*bs<| vX/YK'OΏ\cb?uHcS0.#[B_~l\WU?߹1VE$91f~Ecel!zenXތnR a0&k_c!7l!.KpAB/hT& ~p jV#X)ֿ~n*C\$aPU8#4`sJu\f޴Mw4rԍ|zkеUSA;-MGHQ\ C1#W6Ɛ%wiFMAw&d-ګwF㲲Wp>q~6jXp Ɠ cOZn+f3tW07Upp~) yZ+^wOJ÷桀/Iኜ0YV|u^<\E^ݧFqH^i{Kӯ͐__dRlγ~!?¶B^ `J2W.V+ǢG/f ފr/׀|=!?zFgs@OnU. -}'%{E(:Ȍ]ek8u=b~VEc'$hWL_keqEҷjUvkNW!$H.Εe~sW:h(2qݏHzI4/{eբ+s(QZRH9i֊:4SXj\iu8Ɏ"gpGfu:+UNzD%$BzP{-[bB -tחQgQfoVTĹI#\HԨ qjLTjL;dBڴtQ<{}پC{.,[@YTigߥ^zO)͚{[@ZsJ ןpx~Fdty쨮~TgKn%XnT8bUutgH'/`|66צK!1^ќx1{m<,}5,#a'ΟSѾdAFPq@4_=?\QM iY:wȿRyZ[|nmՄ4C^dNMǓ+bDʳf)l- |9'GDG}psz^ݘ[jWE?HFfӻ5]ftbaDe9~m/o"Fy %r=C=h$^J Ѡ2|QF}<*fޯ#VhwDž]\RIЅS=}\i=rMQ"51j\j8W9:7b*ޒ1ҜRL>+Z"Nf_-tPm{Hʼ??Xk/T6۔ni?S,'6`: 4[5-brG˧@?[}*QeP <`hZ5UlO 9*{/kz[]~Ͽ'--/TlΊP}~5$ )uUZw?SQ#Ro?N! aSuܺH12q~>} HVUiO ~ѥyG((#9MUsR?t9%cb_T@p+?>UJ9n3{]Ъ-ź[r0_$ :GWvvaJt0v*zJUu/6/y#lA>~Myiy@?ghA3SYy͏Cg8Iew#h/G>Wi=C<_.{ʑy}INS/A.Μǚ=h2ܻ 9JԨM5_8UZY#N,iRdZ{_sLTWā5‘B*{3!,Urc-uN4gNN Gq@>u;$f5Ru^ LQڎfgqHNhŭ/IwP)}C 539'#a+?ơ= 3bSB9@@LDdCA A_>( d#, Jb%|cF)Eڋ@L,%0oVLS5FCč[g)U?|8-f< ,~!&֝ɕW~A<+3w8O-;Cγ0V^ߏh8MWz2]8~JȚOIx3~?q) b5 fwz_V>!KPv&,bWEzc;5+J>k+9w.Y~}Hzo-r9v>͝&GC bn|"d͡IfҵpԜ3|"PVkJ冷7*J]܏VWM+#nwE{t'UO$3,sr :: #:bf8gm/W|R=vܗO{ISnW.W¤H{=`_zk} H{χ Ai&uCK*cVZ] =n-j7y^SUl[n!Q@3_nF6/?7s7͝X A~ daFk[dMomͽgbqr=]j=ܞG]{K+X6 =ņ_>\(&*Î5̥ Rո]vܜbeszMy~sy Ff\SNaĶ.9HbV'bs;?&O2OggSC4&A,#(;^Uc.y'b\Dkd.pnD ()%ϟ5˫F<Ѷv;]=kmݪ'Pk"Dgɐz!?/yAT)ׄhUKte]$PkfKΟ%v}%ߺJvz{}c9:iHKHC~*݁:;Ckd=K Sw+ S#29Z {viѬ%U*Q'hkjtfȔ, Df*ʣcn2r~=Kv,gH@$TvSi|ē4kiMq[0>U3Q;Q|=@+8-LR\rڵ&Q rn"t=I9 F&y IJƎH|dVh'!aC':8U}6冧 jvHk@z"P!HqF^PEi1A> z:9\o-Fj>}|"j`}ەtKhkSǼ꓃mJ5>x1_"ҕ^dwm^3nv"|.)ߺl4;>5EOioU=ݭ+_P5g[6]4)Nf3@ FGS齫'ʨ8-ׯ-fcv6A|FL0v.ıHޓE(wp9;-#-f6 rz zfOɡyeda CM͝4]#ۍ}$٫Zʷ+f& SƻAyOxz)x+㽬uGH=Xhj E{v-'טD} l\{c /חU.g*Jt/g&J{ʪw _L8هcqOa֬3#d]'gmfW۬oeEX氕"oS+Bï!m;Qo-1K3&n|M{;?k?֫u3wknz1Pf\ 7f@ ϫUo LE3g pa~> طvy/HD}&A>=("k8(~O|U= PP\U FO)FOYJN:|sQdJ Y)[\W3 v"kw:6*̋i5v|(^+v7W374ԇ:ȡ-{ߪaQNԋ7iJ_}ʂx+SMSK~JȖ͗(^ i B48'6pD_g%lDC?/[R~ht{␸X/?82Oy bV`|ݔ]$3%x;og9Ʋ]y^&˚{r9 @zR7o|x;;_7`ϼO:Q֩&K2 ˂zD̋#l4iC>b@.k]^_k#hN{@KˬRE&#WԌ@=*o` rZJޗv%ʴ8 y^TfaYG؞ϭ]*=jFvTmˣd־$-<[oZƀcTwg3#_E~P+6]?O'c`[=iRy<$JbOE۬쫙!}k\n$˻l 9l΅J;do]'&d|WEٵ#0M./pyٞ]>x I]prG>%^uy3łgpj)U]pa5ߺpÀv_rs(65`mHX `%#N1Z"f=/Fwc6rtcͮ2SD_;z&ώ KxTȾ_<Lc mnRݓ}1 wL$Mzl:w}P7h|4Q=KtOڦQnݷԼY ׭hɯq:6yS2[+6wrq&qt}+t zЭ)qV$4L?LksY"U߬H7gn=mؔz^ʮ_Ɠ ћZrrQ'>|}6cޟnPۊR ~6_)]3s>KE!g$^/VoJ.. tdKZQQG#5js=rrUR)GW35,][Eo7nO}y)?~O2jEWLυ)hR]Yثs¡ݖ:{hen$@սZJJ8-! YvXR)*zz"!fͯNiIHZdYs׊Dg'GA&56Ԇ3瘒i$iIkt;nEL@*Y5 ֨h! ZtN@:M:G{oJ]*Ȑ iAJ?,Y @T3|j*NRQ4~7ꌁ̻mdonlfp-H36*Kf{ _^ot foˇ[!c.Յ_I!^ӶQVY%}Kkƨ)1] 8>Id䄱TE=:~nI#86~cT3{=n.$5îpǙg߻f/Lv]5UT462]z*8bo .%/m NGMK]gß~ǻzq9=Hq4wLBҵˉ{\ 4ҠCQ=?^PI'zQ^򢛇])[3$<xuڭF_9:%_AE$wAy*}gG4纼2oq5z͇HH6DTRڽ->"Evn~a}^Af_V˗Ioni[%vיH->Auϼr8o[+:)5Wd+Z]g=If^V~Ѻ RyqoZ%nSkSQ5"k'*.ѵҲs20gAsL9Wݝ8$ZSGM@F޵V%_BKExq_YqvvT{kTŽHƗFEӮf y:5 RxqqBvBjKdN }$@kt~kV.]yUS{ڠH71g', Bm$Н%ۧ^_\|Uf 8LN &o&`GvGuhp>H` H-$fJvghm8h`jt=ÖG{r)Z|P ^nM쵟o͗8Tֈ (*YbB k h XozwPZG{r,1uJ i*WfVc(PU9j5-<<ob6+Ƈ Q!eHg3f _Nا SA5Y齩7KO977}+j]iDfPǰsdҾoa$jZ#~:K\yE c$+I51N7j1g$4m6iYW\2+-}i5lw*P6VY7D?8Y?#8E\*eݩȎU@=(Ωl)S*ߗLWIr4E+'C8}Npk{æэ\KBf}Y ߂63p`z)oʉ/c{sƷnh :_4v]jwL6?Wzo;UvBtZ:-dxzۀd"=5,#j] HDSաMaHdCs?Tf^nnZju%@\Q4AZS_$҈P2PVx%PU کnR `_*^dfݝ߇1% 4CDZ%t#î" =4MnCDfṅb£ɴUd1Q)r45`{VwhkT#}mZox6olt^[2U$ޝmPؚvQF~UƎ_c@/,=ِOEUa?e{ܕ>?))5>ʥY66ݫ?#w.lX^'1K߾9<,8.TSS6@9.)/m/ƹ8Lq1HMw36 9ď lMTnMŶTn{ſ}\+ò,$Qh`"ma ʱ@˷ zY4tݔW<8OwO6HZo0\Ok:̂'봼AUN_X9x"QGKWfsMrHeM?#r} oo\= o$CߎiEb+4$߄(tTSб惴W+ mǚo]toGiR9jG>|PU4Ba|@:Ο|2~U#'#kkޙ:?@kE#3N+"RD|,au0*VQ^xl>j||˾rz_Y}LhVKr]@-/~&-m\wwI%7.yw=5 6 2U{1У}p ǽ>5iw:-!׋v2)LY#`ֺT{'sh#ZTGp z}9#E)[kȶykcܫ!M4욎=uf*"pT" 'sqZÞl6 3DZac{Cu< ks*3Hگڬz=ռ8mi.+-;*,OFքwa@/%$fY$d/B@ޞd_K}7֓ blT<{OvkVS O;u3"&s%wvb S={:'ΐ7'rZyO/R<}}%BBP p#4,Oc8YozҸyz\^;} ^&޿ W"8$ݙaY|xyg:&:>Iו ˱BV]c㫴3֔}=4sxmccQRʗAk9U}[smᜁѫVɹK!/zׄ 1'wCgyz?NѦ/?v1_hIh.Cۋ?E.o2pӳji:1>~5-S_"6kƬ{!ee wVLbO>%Z]ޚFYXus௔րHPF$4v21:\1ED8\ۯ:Z[{=A+z$qvBQd/g'U .E"Xv 򽫸TҊVJE 9^Dw232!]Rgg|_HTě 64;o6Ѡ{lr=W 5CK-/5 < qs6Ó,?VYwZW]ynYX͆=.L>{_[StN+znA5<{?{`6B2/ޭRi?hkSH̗X3g|lj`Z;{1jZШz'I-ŁιӠRBcAsۺ,c}H%CZ[]dcҚp..u8m[746uڴ6Ymn eU4㮪>sVsrԸG>nb}&%֏GrAUOggSC4&C1&3+~5 G} ?yգB}k8" ܫX@$d֫9}4fL%fvT6wSWrc IډzjMɦ[Jfn ^.75ϐTA̜j ^P){G)4uј Z$KK):b.ݩq#?MO93kwP;_:I·q2ՈZcZtkYH|8s4RHtwS9Uϛ̨&}SJMu*O&o 8٧&%5Jr||b6 J:fLQc" *1sMY_ ݙ}[| ?gSM&鄅xZ 8iМ.m0gXs&c(j=9 "8I}9;Wz]1v\: gWOJTxUg!` nʠm6m5 |Z?MwUx ,y'vݰ!Q\L&B'FXx_? U͢9az0F}t/U3Rt c@b?^g;k9sYWKJT1* >_3'1&|tㆠϻ>m(uFU`?^E3P%J@g*G)5zv=oߺV[◳mlУy8C1Kgbo/CӬkO Hs\E4Keir͊ozcRgDvlc,wŷňKmYݴ5әm/&֫ o??1֛@_ d[ l "n~4QIO{oڔ\(m:~{Vtg#pEQԉ\tXRIUI#v*Q(GyܮQEVC]dYr-ֺK2t3}N-2iu\kO `(X$. ~ݻ%5̢ٝש;߯h ]S\+ ѳy#57O@3cҕ%dYy&(dJյ_Z%ld)h!Tjpfj}+)P/bVN _%J\=Q}h5[!kD8iFUR>ypr]&jkVu_\A>g?wa)D)zY#%N[W?n'ij-Hbq >_}ιq?hU震ZM>| dpNI +.2%:o2ȷ^;glJ>S[~{~D^/w󼩻Y'|BMu'Y͇|qIOWvEHoP7ltQU{iS?\{u |-xms_:>/^+sbzI<״Yz8q![;Wf:!>&vHΆ͏iqp_<K&HGg^bf0:4xdQg.L3,6i]%-N8}\ܢqv=m;IziY8v#F}0l nS2~ڭ 󼮡S8)Cgg8[lS{v(]; gƧsORFu56=^ 'Wfs> D3_XLսdaqjp.$T(HWV;%WYxthU}ȯ'F6kK;9Pxؓv@ws4)sy3=JC/ko')/d6Л%@uv3J;Me6fS$ v^wr._՞HCY?ijqfx.X56@Cj.֪ɝ {2Xof=2`&J_rty zO8N'!++B٪*Ns=BpXrK{gyܑS;Jj"f=aP,/NhFܫ.E~VhJZkPoj2TraITuZ7z)S&IdvudﯹIRST~Ϣq#r z'tJ qh5*$tü.r)ufjGgV8YDu։9%q:9 MԮT\4Ы5B?E1g@VVM 5']gZqf*U^u[|rƇx$MCubF@m̧dB}BkIwfE(&qxHG3+M"BPf#CDpr#dRDw\wDEe'r$;]H:l1T'([Na=pS.&KFm 89'- B`5f Y\{5ti_ciWc.8jWdJâ\)BU/*n^IAerLu7}6Z Oq@]$y/fbĿ7jH2P>EwE.;#^9vJ^mgzX!gj2;-Ļޑ-Fnztnoe)W6Qdi ^d ҷك(= xg,(]Sn=~:vhҤϖ0Q<M<.^=tJLO'X򶼹A೼oq a\9br'ITڟaYwgv#.,;9E#&ǃ?X1rk:`iWƼ S6`9/59+)͘"ˤw0'Fۉ)/EǭX#8s$۠}4dSzpW[^>4]j"#^tZ9%ύ.o gϺnp`o;S{ãXZ?&}GփG3}A )}y>5c-S/[鎚W P"}'n;>EY-r,Z(/&Rhrl)pfj9."cC5kӑ qHp0-̇dhB\(z'x%I"̢Y\Bd>tOW?,?g֩5NkOpPAizɽE()Q㠃<\"w[OWZT=Ck *TJ^o{򳻓R@wennfٻLqT™U"{WIFX&qVI) TuTo# b)D;A# Ij7$ %Nuѩ,ȯHQ?|ӕ4B6l:_;97z|7(2L&[qw)ex߫<%c{u'Cv۰7Q nk+o"T2|Kq⭷i` Zڂ_G^zUyȎtsCuGêo?d3[,r^ ([' ^ߪn;;@ۢf8qo4ؾ^$2׾Ufk`mD?ƫ׮6f/8s!fDڸץ l2<1'i#FND"qfu} ɐ9Mc1"7b8u&ܿ~0M.+\_ǨLWס)uN|{z!{Y)>_O.>k@(&Yk띭?=OggSC4&Dw6#'5~%u 26R4FEGXyKB?XڈJNu"mU->I%Vo|Vvh'/)ge(r .G VZ#i"N@>HT{:N?ܛ9Sd%>2)ԉ)h혊yx.HCeELh&*)L4rdAQIhKqŵ/(#ttZ; I/zDHU%T*TZLQ]/)Og*D*LH1}P3Is@y'Yע3yZIr0ي@W&XI#Z?V;+|أ.3,? ;=d'Ξ!]cft{;9^1amړSKʞ*0ox㋏ɿdn% #.0cכ㭵%{-OM)7NGC^W-.|De;a_x7%%xμ.7؇zT}Lrg9fSx?_:H}5ROI09q xf^=SK#z0UƏYRY2|مbJ)K 3|n. KwGW^%@hcH$d>ku w7"ޗS_q-4$LHO:l_qNJWnnRǴb|xwy6o䕀0ŽHTP1hE89W{L'uIYo{EhL%<*y:^x7f?u$@?5~gNlP fVۃ8l[;vD`}9Cc._y\ T<LU45t3'N t^2+S|ѕk_ȩJ3!ktxGfr;Hi) A 5D2NK KCoxM?d/"KC#ļצ_Xu&=Z3kא*R;U3};Ve 鞥2u.?Z.N 3k}J^<IwH0wSN9E24ЙX2bEH*T!bN $:q'2#8J+fD\,h|>tԉTf8gNJBChB:Z1$C+~|YjUJ$'DTUhFR_|r|N<4 H)Z= [sNZs?4 3.-1#s"BvG%`^>ZAĥ0^rOh*,r]vZAq5p 慎U0aFؘk4?d0اn" w+XgMu*o6MLMG[W{!.n@ry`ޤC=֣7{$Hb2p+UA٨T Xӝ+ ڮGxK47]XnkOZ/Jm'q;ßwKK n7=`jEZpJO׮GukN %ft4M*W)Jxۤ6Z%)5v]5gGk7fnp3uxm2:A'O8r52Z6#V洍hGOظW}6HYΥ̶?oNάt7ơ}/wb:3s'jܺݷg=oN t}0qf$M]-~mfIꢦ nXMn~OKF;{;eLB}=_Y#^yZոHVZS5ꇈkmY wXZ({QII:ޥUOtTiYHpC8k]) I3. BpV5CcQY?* Nml2 ^Y tgxAFt_WˤFTnHF埊jqZl jdfS*咝ROYVsO؏/ 5M]At5ZjgQ={HNҕ|KS^qO)/2_55QWw =8JV")5^7%WQ;kHRCBEᑠfȐ9P2:LN"sQkNZ5tVLptWho\AqWzEL8d#_E.ڵJCSӉ+Iu$ H={;ǫKw*C7ŭv=DRm P)9aKkզ[eUru,p9TEU;w%7S?`b^.nn~Fa1g=C fk W5X c:ccˏTG17v^ `oʹM `)U-$ Uo%B $!UDϷN&.D%/YZ5jHT^:W .vi;?"B"Yg$ti0)R>L=zqR=!k@;DU tDZ$F?\-Vhf>zukRS&-b=+ԨTdBtCW}~|~~>]S(du*RSDO\Ȼ"cT9ON8UbH#ݱ1Bg6݀N"yQ.kvT-*Qoz̾1ԊE '/Sw3X&hE%Mܭ㋅Ӎ-m <~WsSL}3X,|ܕţ\]C޲594YE~lTXSNkr;sx@No\?w*u]K z,YD;m/bN1௅\ng hq;y9.T6=e9CG=ͽAʶ|o& O=XI莪jV ~sO|)֓]kz.~ؗU^ʿiMG7p!Eh!*(Ug:C#i(IgLtoZբ*ӥWy^O-ojs`զ!NiMzg9ʇ-壴N3ZRVYK|ZTf fInvwퟺK[,br@#ŗh9uܰOss=ȶ;/_WU]غ458k۫2mwYK.w1u\QRΫq] /|ku\?eGeN[~[[ ݘu ]/SX^OggSC4&EIn /5 ~C)vLzӮ @:8+U+n ?H Մ| j3Z= /Hfg/Y *ATk :kTLf7r7kQ;v!|kxN"F7dvOUV\uA<>SeʚL7yJ)drW#޺w ɞ2XditfF ShwjPZ M;Ny׈%:yZZ̹T/ƺx!R!sFɷ. u!IK)_kZcF"꤆~~]w5Z.&jנkhZ%j% 1 Y S)5T//+g9n(ߝ'ڵnvk29sNǩJm\{k| 7w.%"BǒQCT8 "D Q C:wtB0hg=9ۑ;dc{xѼ <ĠR>"%N25cTFRhIt[="S UG"FϿk#R9${pdE PBߛ< qK-0|P9i_k"&|(Suy|6bIF]"YeGpYj;327@fvzud<&р +W ~ "R8p8R؈%Ǚ6ߙ"b/4ˣnUzW1;a;x;DIk>G{ƽ^cmӼk?R )_&=̀+ljTUp? }b W!g=l1U),'}1-l͡A"k #r[z1W.":cBKw!8RRlh=5 -y=RRnVX#ʱiBKo$qWwwHUUH0 ¿T[w/~V]Slv7f&}kaIqǂxSAһ޶UًN^v;gA'{7s77ҍ ^d5_ Fra2poU 8SG޿ZnF6 ĺñ&sW_ed|߇41~uymR_O|+u616^SW.oa5k#xuCgi[ÌfG]5Q:fGLHhv3Q[s^Y/PFUkNܵN֛q'ߌuq}sꌆێc^m^͠EC 536KޚI垸,zkJ TAs?t5/݀(O-ы !a{$OS[pj=c|>.Ek1SZ wY>!t:VMLүTT'Z5<$W;wӔ~"3R=\#|!bXYvUS?&zYk.*U$r\Y55ά Id!,YA衩1I2k 1{UTty32Du4x=Ez\SĽ6|ˤgԽɌAI4M%g9ىߑo|'R(Tl0tJ2: KAAh ^'nln"X/~%:Ni P8l_ߴtGs'rWy2 mI<޶KEin8gȇx';oqxWrlG9LƟEp={](jziO K{2w⫹ޱa6xe'n$$'&Q*bp }՞FKOI e\Y#+4[mK6z=e(/0Bdy؎j.6QYm7yvq!=Hײuv)]˫߄شAկt>|`\r_ c5< C5ɠcWz׫4.DgOxQV `@, 1_ӘՑc?ouF?14锣sznd޳#_fmZ ӃYdü//sjw֢:N]>S hۅA\Q%ތ26xE'$\.h}7I8>nxxXiGIy%rZӸs_fcSnj:{)}x;uSič-%.RrlS`8?ŮlYƺxEpIPsսNU{G(VҴO3Th_+Utϓsvפ}Ɒe}%J)35LzWdy/}{lB-¥kbk75 sUXf>R7W=Nx|XP(+偨!RhJ6ë{!Jj 8PIx\%pS !DsL5txW& 0#3#qqG]uM|f`#hfQ8p)DF+d \xJ%E}AYd*3XkZ%E\vKQQՐD'ȳq舡["B%4:SjJd $\BBoԨ@*y5';"{@cz}(̭Nj䦀VJ]eZ*5Bpo+":Zx̗J tA])8J' ON:HWZ-jW )c!q$ <*NMjAd80E8SMT*S Ep %樓gJLqmzrdؒjv8F  I.zs/--'O$at $gI?u:G721AC-,;1fS۫K9?8<FnronJlU%>/MT -C ;K>ENLUrS@ՉޥY>kh7\Нue[7ttw6>wNic~4+S^&.Lt>fr-n;I|U}RY2| $MN^}߯c 3'!xҮyY>`hT=8#dh:bQuxDzrwd\ n{M)  VHOvw1ˆPl~>]3| ǡ Y_Ccql'4 hr6%4b4m?=Sm!nPLjyQEw ?EC/s2]_.nGLvc=9e+-w 9^v]&8nY1__`5GzjyZ=# 2ZZ=IyßzLqbjn(^_ߟyFr@|onwNdA 1r&_BEQՎ6,kbۼөMI5Sœm?Julh7OR䢑C-Y{rg웡\MOn.w^0D< `ߟrQFc>|-~533 /P#S3ݦ}UEݠ9Te< x %?ty*\lp\P#~g=T]!+Kʓס(jW[F\/<6['GԯMɸ#PN☙ob*SMDA$YiUiYՕB\Ζx3ݏ^Ǵ#bSm+yɛQ^3HGߵ&qaaHwfwJ.u47gM]̩ʣ.i+wqlS |l GfCf{||JK^y9Ἑɱ&|Y۵fO蕽nUɽ;W5Cgz1[ [Ɖt}z kݥfZ+?z:!]:}A?}L7#^Zk@Og\ m[Z{JZ#,닷࿔z3O7?Vo^Ĺy V[N.J{_-/B'WJQԬ막̜i 9=¤<]h/S\! XŅEd.>.1%qz zZ068|O)[_Uc8ǢYP[hJ] l6n9&:ퟣ;W?g*/ BTk8z LN?/.sx`Zp1eulQO{ /52I-[9 >VmSUhEO5CkHi'>ee: y9y}Uq&Wا]?jHvD{VR>jCЧ=ϦE זiY# TM{/Bpd:YDx{`W^WGOYdv퉏|tt8tc%W<.A] 2ZIkM!MM2"٫svL4N5ztRjM!+E5%*5! ]U@v^ɘOa:Nm &b4IZXhZd's:yͱr-p|% i>!}ЙZmqhu.-}1b{ƕ;έ6epAD3yA3BDpR@GWU'MVp&1=JJONF>߹ZEv^gD 1,q2O J>^)Q-~q.gt}F{YSH[lV߹ܭJ,§ƞo;&wE,>ΐx-czPgZ}'s7Ktq.?b= }X쨧5Ͼ%zW+y9wȟO!͉hj6t̄֏m.U9_#m,JưQ;/ ;kC9QߑO>,Hki=Y7$P!KwAf-b3霆Ʃʨ5]O}ҬQs4{S`pOI00IMn_7哽znVXה_Q43}eLo*a2ris{';qSH.76 6wEk`^hס?`#byҸb >G܅^uզ妟:>/>ͻ:[;sħ CUpb{ ^iP+3=?ͧ|O\ilCrI@ WTr)4"Pztk _ rH*w Q40zSڵEz6嘝#QNP3JF}dօZŶI_yEqTBڗ,v`mlz;L9r[ࣛ,Gͭ&F?ty =QO32Xlp5z!钱HwLdW_~ (8C¼NNyΒŐs;쟫}7v.@E٬ _5I:Pe*2GzM6=!jPκ4sw]%Zяv!\zzf9S4(jt>^ %zFV:!8ZHG`lf`Kv~UȲV'{,JHF~0 {Q90Wglه֬JԌ j;\/uii]jUJAצ ЇVBH`јFUΨFh,!ѹ@5Er'QV5(4LvWuvj֧^!hVjᜤVaAѧhTh`l6A#[qzEJ"YNB^(` Wj4y^t6$2-T3ǘp+QTS YCWyN?Xf%;|Lf&jqN]~NC;]][i|9GzhPUkel|P/}]w;OTgl+qr*UƎlzу=)6&TZe;QGa-~,>xfV*w\}*⛨f9tεg:Zj -r6oFpECnu{&hϛZDzQ ]O'H6doGjQ輪^j7淣.ѷ^{ڟ>v~XthLu|Ó ڝM&ЊIwjr f*;fxqtH)0l+-!n Ojl͂bܾUӤebB&KWDh0)sKq h{=Q}nG.;Qwwtr>֖"01Ntt `6d8c/ϤvmHK 1%?b0vW%vMaW,@)%6@&'%1"\vVq\n)( [z=dNW"gJ/'^5yC\"ukso7*dPּ?t.6R4Vv6[D*L .rNԞIZ%sU""EHU$}5QK.u^΂^ש#$棵CkD.hOPkeFK|Ӊ *zA@Y3:*g%$%'V~\osW hun JU~&SJ tNIYCjt汎Ǘdnܐp|+Z@JO8]I`][%bmE8PIU ]GEkWQ; 2gZѹ-1nrdJ6s2B"@D^ᆺFEr,6qp)0ĕuge >ꩽk[RMH|A0ɺ@w]-{uOC._6>J:LN'rt7ʹSS G3{ֻ|o=sϡwayNƊ6'^oPPDp=K{~vUBf/[L[K~>w7ԍ>r Ů!= Ǐ4 ~vλ1WֻuBGþS)ra9?J]DUZZ <"eQzl]Xl -fL*Ũ+?״sLLmOS={$$!ݩ_l67ƎYU/gv_!4Sjw&˪7I Xt{ؤ^ 6Tcln}_2Ms RL بqs_͵Uba}zNTYfݩ [^=u6+ H5Kq ºu7WWQ Uw>j!H(Rg^~y{?vpPQ/Zԩ8PtKsHwIfNG|S4caMjuR+KV:ճ{#cwHH]7B1]ǑN2M,Q{ hyD&Esu@JTO2vUk#իTp*z+ ,!HƉ"9iђ+wxگ⼠ڎs$uH3KGQJ@t-R!;ШbwbeMdOU$yp&0&\Qs 2 ZkTP!‰9i)TjH՚!zr 'vl늈0wdSҤ9q>ɺGɭgr_҇=2?!kC=-G,bcd3>èǢ5yJb3NXB070ˉDxU7բcޛZgaT`> 7yxק%;Uewq>Qj†$G;ux-r37g6rZo?j?~Mp$5=wNvN]Y!]=6{\G[kp^g|^ۥ1]>dƮ-@R+Tk":{,(of Mּa5t՗Y4 @?^ê±!W&[,']vsU)XA}4T !ߧE8WIي;tcc3D׍g2/?9[!Y+G:rm..{Hx@iyD:iޒiSY*d}8ݧo\_UăT%zKM;r'״WQZmE7o~+sܬ^j8"-nsWBY՟䘎InikE7Xk2zz=&<Odi}rW-Xm%ȹNcmq1L5 ++i |n&f~XGxA*ms~Y`.NJN';_-ZXULsEQz9{A2.)*YcSqu`( Yfmf>˂-qnHջuC]VY(aښ9_?&=o2GSL? 0Ɯvv+-aϛ]_=ۛ~IN/ѓt#T@ Q6hȮZw3V2gC=bMRu'd&P4"S= HJ"S)x^/Zү?%NґyTg»Xٗ ٠hi{38^iu^W擫{QP=ͮݕ.\CxT sVt1s_e v}è!"G sn9:Nqv fquv ۧhA7:$=Aq[M`}~R*N)1~ ݸo9*<_cTMn"qGjKߛ&aKJksEQ 9Om Y81]y6nHMזc[O^J]X!h]#7 XeH)DOGU2*S4X&͖fHDW}}<:[-k*ϸa<{}ql ?lcSP!Pݴݗt*]7cx m.E_eB؋ //;ͯKӁU9=.dpor-n:x=<ERe+@$ L8CIvVrit{y VSuS)I?ſݳ_k=DUy.c&ڭ|&wRVNW O$6dx^lQk0ދdo7c%1װT[NuZ,j{1s1rgbB>1^Ϲ5ta>V[/˝nW^( M|_}?5sC{XEj2{jG:Ԉm*U2Nw~T7MoN%388NjwQz٥siZȨYI8%^UffתWhM ɤH8U*MLS+3y TE+\eد^ЬNVUϥ7oMmͽVMF%&v@q.C%DY@Yuhm2R))W;!^#J`6+RpA݅Yz*Sn%ӡ,&Ӧ.oNQcu$Eo[6hjN^/[J\E og 2tgT=#J_2kW^7ހ_4Tg(o&:] %U5$k }E/9t MV.Fo]>o-eBXq]'+ڨN52ew1ue{DE%Ve[/&QxG-XgzIaqH?KSƝ_G#:HBG{眯(O>μSOZwMRũjZWhJ͔} ݟScE)2 Nm>T~QD^nuNw;0 Q4GT]R K䱊trĐ55'ՙU%jAZU)UUin(ǔ\YT)IfUI:VqZH=YAcelA UΩp$ sE_֡NBԺڱUɞPi"qJFX~řDUDfwJH;Y!ȉԌpV)b;(_Ybc,~)4WvjA]䣎MɑO* w : 6=T (*I`̒̈uLVlBl]jPesvvKN](-[ʹi_'|ĩxz5)8+;,>[ȟuJkD 7Z}iVlu1Ke]tɴj b V髖Ε[T$~mbH0HɫwGvb]m& ;u1UolcnwlGƼ+>HeԁᥔhyF[*lmkfs(\)W/gfZ(BZF3"$e _|*Ko.թ槥gj/} lpɤ*OYٵ*$hAx?ǀ\qSsnT %^vO/]^z2oxbN+3n~dFb}Y +#_#:UK)'o;-cXQ+cu r_H%?Ed25d[mUue7<_lwoQQG61q8m,ytu%6Ix_yzZX}cC}lQ^RhOjV& ~5#sA\2&鞚̙~#zVyс {^OWŖ5<8+ʎ:`CGU_3'::H##3L:upzw' wb9TKNԮCEU}iו.IQS4͓f=CkN)z_9U6MEejWY ԦHNٴkH*S;]h_sU"Nk[oCrgu'w]˶|틤;I j8)TCًVo7  U}=kY`nܦ!ePF(aj#0Ig@Hؽ雠_~ݿ1y/b>x=@?b1K M|Oح7Pp&`L4_ݍ1>WsQjb6k8;@gv*V#d.9wp~f4 j/a]N4/}ϰgu{ݥ_quʙyjBTAqδ\IL|T].O-8wTNHY̬ӧ1Plu8e1CwW]v\Nuq6;_Gez~ (My=ft̓KJwJ"R䗜:i=osrŷk{Ufkt?ȞjaWl ZOaZxޖ1 NDQͩ.VP$X]SVe1nQ>soCtݗ/dc 0vY} f1e\E dOggS.C4&H$x53A<"f>ئLfW qH!8e/N`BVdrfDm~7@DFut\g%Kc̒zD[_hi\:yL"AVOZkv:2U?k`.愨*}L'kRk 7h߿Ǒ ͣ|| U=W\T*<dK謟[\.}ti }%Ь ?5*t$9WmgDht@K_֔U.E,MVj.pjfNRYp ^r19wKȩNv74"]ɸj8f`Uf^R[mjV)b ,#ܿ>2@4%eh;*N:] &ЧҵHHL8Yz4fMQ¨iDCB2SHaό)5A8: _[n<8>ᇥN`4]3瞽[3g] "{s!(V85#<'mK&drFh&7O}|Rzr_f[Qbpz\z6|=%Ue=PG Ujk+4T|1riMVT}vb)N nfSiIߛS]WD.I^N%[!,W('=c{Wy)j*KOvQ- 6+n\#so'#R+ҼNzݮ,/'y:={_\],X]O'u/ԣ@^qs\^5ә3 ѩ43#8=Lpd:[p5~k|tHM)_TUxޠG՟PvN8쁬{h_hV;4k9~]`ҹ4 Jvͼi$t{eFK$d?^8).-3Uҙ 0rgIJpH2WIfOڪ=hTZWD$P~r/iv=âݻ4ڏQ3]d {g)R)R2bADQi}{Dԇ(3TgJ ݏ:e,Gv7GmW:(HPaoq`C 7W$#%+]Yv?*Cx0wAYҵ>$3 ԙLi@X@`&hf !Idg%2d +j۸D`@J=Ԑ-CICGfDmvyٷIH,2l Cq12.ItM8`ٹ*Mc32Ao^4X~hOd)J%4/6M=,b3SSA֋Cq?rOY øcYݺs5?s:ҏ[>-uH֮w<]ʸ}Cdb=oZ†;2s&_frbcy%pk{c,sNW{+t̹[$Vn+ dԸA*8Ύ<ު.MQ[:e:3汳,XP-J0όԓ^yu>:VY)+θT56=Xdyt%zÿ -MWe9m"~,jg~_|4w3\ל3Ee,4} 4{ qfj3Ct"?p%Dtu(:gl(qxa(h٣#!RsyS;ЃVoνS}T4 9IrT .vDE4$+1Hx8BrB?ףNWh\'Hܣ<#\" G5^iS_PS9IhvAddRujukh>9]Z=!cd)ݿ-9>>CŹd~Y'mbNf sd"g"Pc{]cb:Uq仗 #/Ti ihũDu:2Ռ"y&DФļ S~B3H9KNȉP]jt%mL}p2&Rv̺NBpu0\P4q#z@}|͋{1fMxLϐ1}"7߲iO;_y=oze_j=ͱQ-lЦ0|/n[~C=Ɏ?~'mu#sdg3uXMe5 qb],WgPx+3iۇGGN96)3$Jwmە㜦\~ړ݅1++lU+ӪஃᜩSim\^nG: H8Lfs`%? g( ַe>z<4v~הS`8(ך@#bҢNZ[.CZC _ W ]LᄤB r_S+</54P0_.Dm=yPV?`9rJ MZ H*NBk3Ӈ+\vk&Y&ާso"?0ɔu;Q::Qp8;:ʬ&peڥj*m)ˑ/oȑ˞ A)(k;Y[3H95ժwKY^T-&L3Z3U3"Z.5*@ GHfRg7qIL,~Yݥz#}YV9/gwQkW}4h'*J&M)L8ftUr;t)NDSƉ W!QgwB! 'h_·_̇V6^.C"$&5k;Ԩq.sz''e̪gߟvi`Wso(;mc􇳗lf$bs-°KoQlk!Tcn-hZ`mbc rQݛslz]WߓgSU?#Q3VrȋMXB jFXNߟDtDB~3yW&qw:(?zx{DS M"͙h*bt/{})dF} ='Cձir]Oq* s]?%e+f^gϽ"QCrtx:( ꮽ?٫Vjvwlbn}1Щ 4ƢP lC6rXr*dwj<^ؕfiI.d6iey8[۰kpح$憙;|] mKh$d+4Uw}WK?M9.\9(hѿI=Nz,'ŬY_g^p'܇C!7c.p7&cm@+ ZEmV%̑LgS"wےliN6J빙?5NZ E)JbuȽ^N:|&JPqփ`َpܮ~w=rlɜw|t}R%C\clD%_"VdM}Z qԧ߬XwߣGw7ukLqcӇVYlU=c~:c|F}Xv*;\4_ 3ކG5u|kH>wd0\/i&@I )/OggS:C4&I$ܽF' m>$Կt~\$y&}.egFY #\iZBM䦳S|,"UgËHf`;-Wb'{+,fvzND1'mpsRtn7.Hz"~^}DcV0Ff\S\e4 V=ܽ/UJ+0a ܝZ_;޽֣Q5QS2TC^^M}fR1OK%ce?,9'n;z8mq NH0̻`;B;ˮ <ڭ̍4fFȵ̮yAT8e{OGtq8r׷I/:ee̽EB^i^9cqS{w.lzo-2G}]JtfzG~fo1t;8?>dJV:G %+hzW/o&ɞȒSK>Vtuܗ`@4iK딚晬]׵: vW&:U5̽,`^u&2b=i[}ţZZk9K^]~J}Tv \yl{ILPro1|\`BFr+Y3-#ve gVq:~t_0* A&؛F@hg%nmXۤ2_3} .T\]lM0qG.7ws6vguDM,:aY|RXg~ I ⟳<~>1{76>DþoFc߷'nt|Z}~,{coH%)<(Hz{RiEd+G~㠗Ợ~u> 1A5a RӟڳM4plf뽧v{%y+$Ko;$r;;$Ld~4L{Z7[>ix[fۤ< p{2YsXKArd_;?Wa@1MFs|;o* O<2ttx#&1B-Q2 eܨ8G6-1sVWe= Emh g2 4?Z D#뾽5dV1g~jnm[]ok7͑1O?]_Um#͍g~v-jzךO=9F\f;בL{ƌ#F?~O_~-Ϟj&F.<ZVA4 Bhx9~% ($5B(d(BdcGǁH74= RhU\&]s?'{jtڵ^!xw}WKI`$*zP2HgHrB$} $rD쌌|zt R7Ǩn̙25/xF6vzl17Lc[?>ר?wҬgrua À֏G><=LDDcSi4{]{#-qUmЧ>&:c^+wbsQrLLQc:Ci$O~-vӶYRކ\y.dq;W(0ʛ험 ds0 tly5bg*iu_6;{rt{mL|Οjs' 安k~.|d6mAVmc崙ZOpsHnK _ܿ\iuIM[n2Usn ~7AN~nOov.K 3H[٤_QG!g2`V:Q$,DHgm=H|]xBRRCکΓtF54_U[]944HNƶyb=Y{|/$$!dFHrASNC%:kCkUˊq8]N@}q}͸ݚcjލ ПG\4f68*/-bP-qڛl϶R~?kM>vO-|O~Oz I<>7?e]6Gwvw<tw3t#kv yL'$̻ r~=B@+耿4O/VMH+*\̽c\䜼vpNNF;֋jzǏ#-^y]NVSK*~ M?N~ ./.|WqvoF^j9:SRV–Ҽ<`*ė15YJ@G..|ݴW76HOggSJC4&J9B 7#f?'*imm\( سF@i5$ۚ"PlAŋO4߂]iz8tNQCT" vROƢID ID2I+M*z`Vǣd~U}Qw)T@1ז5++Rwd[{)BW4nz=J/02)zlk^w-7ouV>:}P%n6)[罒;Bv8CE{&qBg"Di&$*=e07B8ℇJm9$ɡКT ]q(YkO3RYiЈiS֊;YE8Idujք_+h v+sßKOCJ(SMʈh⯼DC@sSZ)uaaa_ƧO˗(Y emkg M{ۣ $ xkpT W5aNjKc:ot{QbIaRK]ͦӼ':zOX-犴 V?#e>KX76I獴x]?wDܝ+%UBJ\UaV2.6-1%~>g`ҿỹ}{oq!>04q64+P $Vlmō05_vxwƟajv] f|p;gwB:6s<>.bGy/eLpSZb˥,.T͓/R=c\qw;_~w =-}u |XJS1Fm,.slcr?s[Ȼ=i %x[;.=) yvPLtDm$5tW}wG6~c?ďYn:{5HJh2ekb/l!A㜉v}Rޓ,WuOIt>霃Xl< 2s>.7ɿ'@N_̣.GΏ}D7fŏ3:?D*OZ:倌lu-a;gz鹒> ;Aq{R Ƨ K6 3A xuqc$~n65Ly~m:s:E `~̯u$KHhwYvE6$ CC 6{}>YI$[y!AڡZr檱C1_HC$S\Ujmc싗GϮCux%F]Q,Z,g%NQ(PQ#ZS;ʪZԟ8aMJ07Π*/J֎`"(9rvhDGb(Dޚg]KdT鎩:DdmD;HQdUU3K/E%}):jg"OW10~8ӪAp:ٝEɣ7]E=2d3z4IJéG-%erGx)(aڱdjd9 'ɖ% kP˨]֎\G{~0%Pdoٶ7wYPns/#-olܧDJv7qeK)`)ROZW-1o SFdn^,]nK[wG2m@vZpGFKaCvǤc4W Sr}dzI RJ! \;v % s%=C=S |G!i=V-qK/ZBn;3?M2~}7T:Q)i==չڝ]q9(53VV>Ic5 M;9 }A㊚J~?&pq!\vG*Z362h}S":[ǻ6wmueYIl;x3F_oG3^wXp)/ax˵E%9F1y> lGüqX[}v.&T-Wϵ{RIz{/vQX":khmU}  e=5`h ocʓWڛ!5qQL=2?} \Cw3) CƲ l*uO7/K*SR)I&_ 6%0>@dk&U@F}}H*nB|{gV{8eӂxm\5*l!_.[N4* ('qjGI|ǼsB?; :rgEtՙ ]We" urV_+-^18\5u'^O٪sF-2Tj.2Rzif|VbӑF5& sEZ$NG:h {A*2k3ƗFr6+#5&S'/\6s_/ΦP HwHt]iנ8ʧjmS AA,grLާh.ݵrtHOt% ؙ+{k`L17ԓ(V֚H9S.B;B"Q8Z(,H͒V9vP{GثU;TiishhDoλeff->1D@ Y`! ߖ5}S4h[crLS^]_KL]'rZ2&i< tg>R>ǼV|Ǜ?.ngN%z7IqFhPb2a p% ^!ų ܍k Έh'CZx^*~sTy:G="kc_{ՠ-pU_4xݢ# xƖR~3.%V R& /\~p<0˿WPpהcS}rOښ:Oq)sf& r .S1M"tYw"؈k<̯K|TאwXڜ:}9_` y84fRo$P~X[NnȆ1~:W6<7Y&0I?`oGVR]dɠ~ >7doU%lU LV1G{6ˏ{t՗qa_7E5[".:]̘{6.;IT}t- [~ څկߐ+%g?ȓy<$6Ǝ[{h18K巠|{OLo@{G:cB1>7{=mmvmj  a+a Q@2$x+s;?~}d&і~M}5{ɬ_ZlrKF%$m u/>nBN긕=\s"ZIMf媔F^TXЇ'aN!3tB=3$|Zz9Gn3?~Hm ?*G;-59+F5;%CH=@ b9*q[ɳɴ//-9Rzͨ$SK(ڡ="\]E|O ь9س.DW~rKF-N%U{֕WJ!mԚµh2,?E<{BMS"Q*5D3)sթ":%)S@sp=WIhUdAZT#TZejQ}Im;{DW!yhW)eV.;qD8 :G1ߔY"{W@3t5`(*ʬK*t:6f,g^:)PqTw*`*.{&s=hiB<3Q%8_o-}JgјsXn֥+=i&5@-|cc,h?C'vvZ~[7.t{ڻ'UUܑ iܛa i^R.Yɐ`RGOm]}9h2ӃX_JpUBKX/duT8[Q]Xg^ncA hʹjmI~[+r}\W`O[+2:8ifն[nKOggSZC4&KB6ۂ50~ c[(}MƘO>=H`,z'ZP MS?^hk8}*gfRFhvjf"u*t#Cw4*5ȣ5tҐImz6Ż@W҄FChvXWDd/HsܩRSs45Tutvԧ(W"ze2;T>WLy=RjՋy:H٩RpԲ?ݬNF!Ujq)bF29e֔p36,,zz8JkKRQ*e-B>Аk K 'R[ N41CLT'D=Ax# =?7^,䨴B!R׉]Eɤq̘*Z1/<RkS3 VdpTQh9Ѩ88Lfםd!o xD  ~GPXdH ݠU_ǹOnxʒ8$cQлG/➜5+\=7bg#TG.V cx9~=.@z!s>i4XŦ$ږ".6EWVmYi{\.&ҭY8H4 4vRs Ne̋3j8Džk|bJE,._K7m8yQwQ71x$v nbvB/ AI(<y'#0qF*VؗcV<ꉥrUeh?:E156e}<ƥ>_>6,h"|D-}s3)!ɊH:_j6\oN?/V AJ. XvcQ7Pn]<w* LGnS'ž|2EYOsoZa>U nMO.[fdI qvpҵ5KS3Y>mR\=\Iª4]SWjM1 o}` RǶ9浸.ދuB\IL=ޅMIB待rC"㮽Ƥsf!lnoM|o?Y{PmunO )e1^le_ ˊ:{|L{$ks;^S?.V(Zuv&.8L4c-[}<ǧ\`Dk.9(q9R/~6[6F*ⰕΌEřM7ay z%|jS0׿>c̙un [hA5N:Sz]|x]CE(Aݩ'HVwL0uEϔ=z%oxZyY[TMdZdyh*=EvFuB"燮$0%; N'U5jm7n!ըUwDpNjD]JUF/GW&)< ̺֔ՑxrozdN=YԮ"W!"JCx8͕YtgY+z2S?FJ@GTj5%k,5d/3c,*dB)LQnMDzX8hӃ$ YwIYOS#D+U3jZ3KM!vX}O6q`)\ՆCԭ_Iq=6‰ro_KXoz*{"3ka~"Bq=8$n݀K5x흣mG_I1mwd [,H'z]>s:fg+fqx3vŠS '8G7>VKs  l >ĈL)R9c8<4wϷyq)uK:\1J%+!NEU ۹OoU#s6>m]xz}S&,r`GASEzf0w6g?8_"'& +evQ7ƙ4e)%V!:]UҬ+=k_aIOڒR.CD O5MN2`^.z()2>uLt @_p6;YO=n*Mv#pJ#Ab'o4I"Ⱦk 5E,-=ֈ~SԩZAՉGLjvV z_"j͌)EJ5{G^6tQHOL9Ak(5Ȏ#{Wa\/*B::@2BuRVArHg8DLk:P"P A G21W ";d&@A :g)}c=/"-2CDQn{N_'WɟpfVе0CK&pT͸nX^*X)|o*=6X/7>s0 CX;f-g{8jTτ!8IcqG;!jdϩ1o`.j *`4 iu]+Yr?;Gݲ~H,c x*z1:^T$_f=Uef* R>ȚLJaڢ9t\n<:AzMk <\y?~On.S3}w8 CMol+i)qjT'Y<|uq.%IyĆGҡTwlILfGeᦗNH3)@8ܜnyEB/pw8ݜG|h#Nuc&䞢Fժ7ߛ+oB_F=kh~@DQr}[VԪ:]Kg'ɳ~9vͩsîmm꛶_JTir9T;~QA㫉.AaQPb81}؋rye{T,:DF^]/rDzWs#*s%j:2MKG~sct>V߯~,!Q TJP$&5[92R.ɠ:5\$ j>˪)ٱ֬ǁ;:W(&*ZǕЬ-rhC$#\Nq˜]uHI%L Ν)S*'FDHǔH3)Z,1sC׼>FgҜ3T΁ӻfGJ"ȜV@;EO1Dλ#g7K҇jQ*<>p|TɪSt"DȽ;'_Q=BCpT1WsxhtJGOQE( ޙgvdBEv\ԢHK( 8E)AU׿\O}:,^ε:OJL5yu}LW>I=p*}u|TQi|.( Hmf=D& }|pW"?P چMɶ4&>yZww]ە {>`YlkW`ѵ#0D{|m,K̕Cή=絮 `4DUo&q ]?͹ǼWϾg^5vyQ<3˝֚;^WS._ǃ#*Ð2?7c%!Y{Juu-J{S!PvOyC'_p{qv(HҜ><^G,S!rnr1!šV7ρk6\}Ѷ0R\(̥w(XֵVO +yqxo<$ߡCW0pAyymmEOv2՞rYⷺʼ޽bn/922_& !0 Llk/$~RasNC;.D qQWw<)k²0mG9-Ot˫ JOggSjC4&LA!>66CTpxU,aӭV.B˅&!:-b}{7#aޮS鄾d2 S-sKS{̷V$"5N"nOQ) )syYͣvx%Քn {tGJ41e2M Ru"l)`=V,?[TM]uZSI,{0+tY_.U3g"^G6RDLtkZwwd*-sǤQ ǹD@DJ-DsT"uٽ+8rS3Z"3+LP4f|@Lj@-ku!?SQe`G|TQiB5qj7dђ@(y y5Ghk%d|BDg0GᐵP*!* 1CQHov!je){nXw[1}F {ӛAߚ;i *D鞿oyFJDYg63׻?7\yxoMBJ볭׈5LVg{#d>QP)b>юaj^ex]'>bfX&6ܺ>? XGw]*]͕aljN!9&ڱA/ۉ˝~O4Ri#u?VFYK0NÅ?PqQ?->La\MȪ\QnL=xwXPĝnO٥¦x{5"gʮnhzJal}jk~2/|% i[ߪ3_'OywHLu^Dh<=#v2?~e]M7C(cH]w\k[`ˠ}2_s h ?W9_@5z0Y#Rnm= W^C*H:򙒳{{jk 㽘Vh@]ڡ֡~Z&pcPS:OgWOOr0:+JwՃ+ڗ>U H#Y5dL^gftya5P5iuJ ]G:Jk]^==N}Nd}NtZkQ]ZQH)_y *{kB_IFdrH<^g*ȵ"2htO%1DvHݣh2SVSB錹+⸵OLL@#b@{忘3qh "wGH ڄX69m^^ĩTmIevƜd/,]UZjVᨎ~ìIe?BiNERRڙ,QI |Ht7Gk @['fK^fLBI"p֋)ܨ|-7<ݽIڒ>8Y1ISS?w wnfwC95KBs2IOv_?&>iI[#iߪ' W}Ν {aA]ҝD3r_Tvs./`jQhfŽjqHpOw#o?ET<,'|?M_܍h kIfTqA2<6^C0?:N'1y(sTُc=vgsp=JshLJHOOr*(ҌLƠ=RGث-8j+s5vT/x*.D˘|Bfw9'S${N;µSzG-GޔLFP+xyJ/}rJsh<=lD~4݂oY]޴ėEmkƾ&ybKIf0֓IH 6b,*i3u3q08>L<+[:m~zܻޓ1&Gω8vRA ;>5w Tk;*\Oڧה4R>^/*>w!f=sZ{j|g!CvH:O:pн#iSa +芑|NǁTq@| Ԩg Pw'U5@P -Q) #Z2~婫S|fɼ4jt̎āDSJfUm#}:ZyzNR#V ZdG8:=E:t䠭G:/SvG*WEdf@\E]rDƜh tD꒎֪"^ACρ#SMP8At|rIDoqy_`9(P0ævldB1\>[8(IeC7rw?J~s+_ٰX yYUC/ĄݸG6q2VusRM{d}^nMf/FߣWVT|!kj$2UFb.fO?[;2dŎe'U)t&-ozEf}@}L%BÁWNtSl HW.w5RG;^[י+#77-C9=VDqw5Wϭ?i\rtX~CW>籧oGt_W:lv3I0zN#j3+Rmմ0+hj!XwVr4郞֮;NB:z ЅֽOOTj؝"b=szEfb6ϓZ(TFsS'̭I~`*K'M/ ( }doqέd*|V..HAxeC[īNzޮKoOuvQdC~~<8d#t<<:NkXv:Gxs] ^ҍioh{\N&5K`1cհMYNq8^1.HM'h dԽ4KHiU٤5PlM!d)jviZwD>g F:(ZS,:SQ%vwrB]OuAjkͳʴ__Gut`ּ@:SfO.g+S't!s-Z9.U1/JxMgw(CL턷,{˴sbRjh:*%W6%VjVy]vTtBi+Z#CzlN쨼JceL78P% β0=ܳ[_'FXaEs63Q256Omq%{T=+hCBII"CJԮ3PJF\$N'@2#+gjs/^aHV 0э(?< {Ƒ;>ŊB񊆆rʻ]78ʛRV\wW~w7\}+P|O|;+޵ٔi.ֆk͜Bk3@`|{ Ęhr#?ZHhRs"j`5>g&&MT LY;awW+tx<qoG ܖ J~#z錯2*B qi%uY|~m9?2>NԴF5V7>'_䡱"g#=bl`;77/yY1}iG -}Ryo󅄍a^Gxxw''q$~rH˿__տwZ/zWhrث,mZV9pE3n3øo^6|g}0c3ʸqSGgk?o癛"D3WtFJcPN Z>dzj)naVVԡpعMǜqїoYW ep5Ruc=<Ԏ ٢-[N匓\Z1D{W禎Ґom_5od.BـRmLg }TŞ/_%S$59?Y$Bf* ~f;=j Q^7.jg2)z<'o/sZ]5 o\6!/[սX,?OggSyC4&M6p5#5Pqצ+xXlEU (R= {YqVnMЪqnk3{8-28ˆF&m~OY‰&tQ궖򚳗c>C:^cȐJ/19eS@PMuZS e*:!sR܏{TGlY;Uc9ǟ"Ԛj°|ljѕM{F1e6/NS[#蝊4dM d ~RgiȐ)j^pdԳ>y8ijdQk * ΚMtZkч)! ]!Z6Wԣ92i:^LM(gfй7NC$)"3w:S6|Sk@]JZD*TQ巳(9okk,pMT /tRtí]3A21q3180BUo+;QP@>)&jiI1;5HHxxe*?y{'Wz7x_pĽ {乒a UOk0u\wGgxaΆEٓ$Oas"kOv*R>fSB1Fw~ 9p ɜK/ckS< ZW.5 WJЀ3%e>]#OHN.te'}Eo&A<͎g?~*yAji?/5]!F҇W `_nu4d?>W|#oM7J%Z|ӰUX#R/={>gX9erV[-G>aр"Ty,,}rAY,Vl3cZ T k.{&犠O\:_XrdW75kUʒ p ?\lX@hP&rO,[خ}: &҃+O|jh2;LIu52NP]7YƂ̛<|E Ӡ:L襢ty'IyV!{sz9oJ^ yvl/@sf\E}Woי$amWjkѸ>Ӵ3kqp<0 .-M} gOZr[tg9 (|Fc/O$g,B m6[Ef[vFAmڠ &j9kJg^MV k(ݯkZ%㶈Dhŗz2JHm*v7 5P+Gsه#LPM$֪]sWUUh^NdN] ?^z^MQ9H¾kg^H Ru:7}Q$a){W$:m)K,8S+WJ!-$ٚdI88ɂd49E;A>yu͇LBu2 AN9)Tr5''TXD;SHZ@k~&Sze{5L8 *oz;uq2׶}bw\WLVҹdĈkDqɖȺ+T3(HđnFkCNg{:D+}Er%Yuĕ:rݬZ+eq-xCKV3”C%dt QkG%Q" A[S ut:H~r|ȤmeTٚ Z1"2R]_,~3@bgk7қZ8\1פ}Xˏyք.3Nv96!Ee02#b.;tD~9WҶSߨy絫%-Wمh/5̘rFz.@X-d=V7DޫuEjS#F<_>T;Ib nNU匞a|]gҍ5|$v ރ7cOxqnk]pJ#}FwrW2.E v,C]`vZ㠴HZ?=_Tgz,͓ܣu܉:$3א\%de^t2 MK̽:m '4s];%v\^K7]cte47IR9 ƺk85لDOrq:=UsgB\&у-ev7Zhr(}bG曃/P*o#ysD_7zWlDr>HژӸfqRW\VCfswa~&TDz!5bPLI1? vSîUHHo( w#ƊV[9I:sI^K8{65\+Ѻ9u~xh'^x{zߨ)#_ܚ-f@J6;1kGvh .Pz];NNã{~O7?{yyxᓻyDN>gwĆ5Oq!~o|^ڳw{S#{<n,'%V&d_)?gwÚi>ݾu7Ǘ}y{UsG-Bwۥt_\utԟy+31un>Wk!rn^71w﷫7yv"/ 9{̙7S/!\ˤćrIKxQpƑtqW9td|u5p,4 g%+d&Ss鳪q Fֽvk- WT%@LtYN"\]\ꑯtNG%sDDHsSR N _ PN@ȁ;YSAfU3"tBֺjuEPY{ߺsVPwOTJt]^'4lu3TR@Z O !m>>dJğ AP}*a=I1C]?/G㫇uiנTwUap56kq4Twi4y9FQIixpqR0jb{Tڸ #W#β%mv}Pb/_>l#N[窧u&BJYa@%*e3i~~hgPa*^@j ,wc@-5yCfMy4Roco^^A~qRzu/:*dC~'ȅr1_XzG>AkZiisRˏ^{O~fb|~-PRMNZTw*y#ߓu,h6*ߢYsҿo>4Fλ+.aP2sw27oC_}}Jv9K{7N]GWVnY42CNv56>̦O}VX 9hx:[=寤 +GR`qjiR!jz?~ǟz:1:«Qݘ/w)ytgMX 0QDqm((d#~E'{ަiסKH9T⾶zhDXRK\q+C\vod#d7 OU䮳~y h؏#̎!9l!,[5~=[CZ% k|J)ཫJz**7ےq{75psx5-q:~J_ʄ6ӸXvGW*?y:# Y~ 5{wMŷKCBq [tktOggSC4&N:kT:?UoXh{v.x::=)o_w4?t}gՍ/e a3Xq{j`\2W`?I`OD=ʽmr)J5gR:UT>a %7jZ_?8K)K}[O)}V8\&oN v֤Jb{+~ضb؈bZUekbiQ`uCL5NT!M6k0Z1ӊ0b4lvZ VՇ|y>ꛝoixҽ#C#HgX"C X"(u4 "jCrQ5D.Bh.%d'Ƌ/C1fh~:Z]DVrt*q!ʠN%]lig>-b4)e}J[Ӣ#cpbE" Zآ`lؚJ8* XuHB{_u= HNwpS:!|{@#p/ +nU(ɽ>kDL N#剜>֨tIcDe9Fl~l}c>2yw^G v4_~G6d1V)]p IчwDψڵҙO\"]Af;#_Gu|+@=qTK ]XUlҏit&鷹|?^XI  pBGTڳ=ƈi5EhQ<~锢ɤsj޶r @pPTQ7v',mFaLOncMݾk%eZU?Wtq)ҿYgӕ&Ǘ׵D sXwj_s5}8T|$1>y}]9UfECgh7q?W$JDw^ߓC vɻzc7}yO'T\h)b_Zqlս d9eo5KBV˰CH`µcн&l{ڥyJD%6k#-EFjicUpR4^ϟxֈ飁zqknVϕ$=*RB4w5ZYh烶aLRO$IMizHVAG˺7[lV-0} ɸCk:s!`M#^-wx4O?[)O:ɤx+KOWY6WrxөkLJږ驁ũ:\#pyyŹ+^juꮇ9qz]bJ"e?$ ,/"W_᳏,:y{-KR3Z]oac]ȗ&CVa:y ^)9gßl%-42ڋ|wh+gza|jz3]tib*]13t;dϜr%q+1W+k >s촼_ʮ )6 /g:^<5V^K<-N3-Ոa< aӨ \m;gyh|ď~A;=gIݿ4]}\G|pNRD|!.I~n `БF;-G<*rHZGC񴗅}`aAs:F|g~_;o5#u}xnf^?72yo_wm+gihz].Gk 6Ą:L?zdt _LJk({&ِ>j$L4V yW?<v~5{cmT7w).Lx/$2W?luE>i9ʛ1u_hEZ;ic6zN(WYkٽ%~'=`?ckWox9kC+{$|J \T9tzW@ bקI>u8' |`śz^;N=R,-uUy(lxoʇ&LJ4Ǻ0j627q Y3/ϜP?\`s1+bg[De~P`dMʰ+E=ѡo[~шh7g *EtPdG߾|{Mc7/N0`&UK=5¼cNMlMj9xMꝮZM\JpyK:\O/x뺧Cf]ϯ*5N0N5c0}C)ڧ!8W?.(EG Tɡe`nxKSiвvOV]BOY"jW^ AF.yJ0ƗzswW^Ps1ҕ"p3/}LoS&Ow1xxYxo/HZ5 Icn=*˺ddddcz夏z  "rIwK=kf2wHe 2 32e1yw*Hadϊ 1ctxSFɊ}\W2]bN4v_IPN 3xYXL;Q]UY#Cs)W~A_ Qf^;uz^~{{nЀ?'c~3Gr̊; ɺX&>;-*3Dlt a9qM)674Hvǘ4xTtO{|[E,n<*JGp-wqyrFtӜ|qљ8Wekv 'c r?]7w?~Z;=>IG[z]LݶӇK?/\ZC>U19pݻPj=pɞi=sfr[n%wo,;n;7?ؙۘK/^ 5;+LxiYpnߘkA9xA&Gn[4t9l js^!*q{= htw`JjOggSC4&OŬsw޸K8~uM9HOWQP\@@C4n UrqSՁLc˵ч~F!4*L'yr-s݄hJ+5Ϗ S誧q)2iY35hɡ}&GD_D=Qe|ВW1O2^;I@ЖnXQPUm6;۔X| i[]kS(?Hr EB uA'Z+&˼N,e О%z]X^z،Ow~z /'ͥTdc \怵P}s΍(YhƜ2{du4*"ЬApJhC䘃19+6ٴ&b=9?~ j6!{ϰOd;:Y>!YAu!eJ5XWg/aܽ_F74&,9bT>ޏ!jom.͔Y$F%˼ X#)>Owaa<|[kJ28e|oѶfhm[eXpK t|zKXסԚ`s^ˇ7I_)!F?뢢IEEXE5-{lj^T<_S^[D{?T󷷬'܍_p~k^*02_WاSI;DGEwGZܨf<qAT8 [DόUH\#_f"~@HymXSZ "c< *5Bm!h֣% z;[rF>I44*!kE@4nr^"ɐS'YN/EÜ7doZe*iJ\;qפf ӉO4VkV$@aYZ렰kmy!fûv9g7 `i'S-v0aW$ʪMUl[ϸ8)g+0=JKBK-x i _L2bG4i`9QfӪ[E{ I~E 8w7}Pf{+,bnoZ{g+6LG7yg=dboNhlPk Εnf'cHp+g}KLv ˘KdS=A#bO>Q貭Ȫ?t_}6mnX'oЁ'NL9 yፘ&^ő/|<nzluy;B)X6kix!E%ʝ1λYa]owr\ww6p¹{N^+Tzwq 4oi.J޸/)ۚ1iC߇ڌ+(.Ox⹠G8@vkJ^CWMG~i4lgzAK]<H{;vAxjVr⅖>_Ⱦ\gC{9㖓FLkʦjyۻojCSTԚh+@k.) 񌂏%xJ_@^C'47]٣"ljcFϱJ@;zϏIEMpaHROD$@ע2tCJ + EUݹ Dk@k TC;)1ُ=yihX{1ʭӴf<|3S7GG]UђY|*9CZy5<w|Λз;YsZSثiWYKѐm)6{}F(ywݻ<͓Bl_Cמ/~ǝEz+HC5N|R܎VBϲAExW =̿OMҳCm Rߵ#|?]#("Ru-nV{ySojwۚ;4qݥȴڼФκ!~"`Jp̞l:{{+${oNg!1:_Sʄ#0^cm&4{;l8J--]3uu"O*ʝ. caݾkJQN MU[vQ˘z'|gƜ+C֜!=/U=V*0utV!~eW?O.V=>?dM7V\_;¹TvCn v$EbZՋg!Y*jvK.Lr1"%`Usj^ʮ.D8t3$y۩(^x;YOQmz U@[_kkbO4 gX+[}RjPnK}o1oiU`[Fx[,枵 tKesG\t>d]I]9;VjC~SpW3fzc^jE|y;N Ǚ&?Oa}.v 9Uh|bW*rX̵D ;c(iN䇉c<n%C} ׼K ɌЬfY'z))~.,qYƧlimbO|VpN*1?ɺćKB?w>M|jԓ=PBWѠ9p]H⳽;?hL}l_fSus"ܾ0_[C`vϟ9l+?;pk<)_#_{CA~>KuչiyZF'*:GaOX.O,:l}:C{#PƘ,_G1g|K}Mt"G/o7UWݺ2NtSlgkӘ  WexsTqx#B=oZݥj)ľs ŇɸI(y%qdac ؟ײ]֡sN)ZIWh YYjiwTY)V8p8{\K䡏]lVp0]pzK rhr n#76GN&yY|: bextֿvat@}:aNH?LZZs`ծxB]&^{]? EzVqݳmT=yG30@EK/96I vk&E\wf5z ܭ-?j 8׷v]Eq_4!EѺ_돹<7Ӝ>[mw#y#-}N<ݏHm2A=}}OEaCUHau1+5l. [>78[ڵv5%9P}yL溾"iXuidnG~=:rxjESnZQZg9E=Bp7Iuj0)`pqV:[&v/iO8Jva27"V$:Ӫ實uzotKm6RͧmƾX?rϝ\YwM#.D-Mmq/ q>2ު}|>b oQ}v"}D9T_ql:e+]K:Zh9f`iVRi9r7xQ*Z®\> 4Rxec'OĐ@k>lSb٧!+w>\x\gߟ vu/j"qy.EP;o۔m|qz؉uk}@WNϘeM|3fJu&)rRt#SıNQLR"8ݪyN+0Y`9~S!y=. ] \<'Hw8W-7rmV>f96?ΒN<;1nsr9߻=k#n|l޶dX|Srs?碑;EzܼfgMɈ)oC{8+h_.fH#TR*Nޯؽ+qzi{9\!" Mkjۏk9OB-GɄ[bD퍞H[܅N-\?~ \}&Et^M~xqy'Ĝ֗IyBi=׶/i_Ͼs[EI:leY4S>M[&~면(އ<.r^ ^s?H94m< ke笯Vk>壴.'4o&PmD}L!zxR7QfbqlVN}=h=~}wC^CZZuZ1cOȎmۅ/_S;Ws*6jy҈;m>jO@xy'M7+OwU., w?a*{mBt텑}]qQTF^ZT:{V0س=_fpYf5eWu{Adj^eX52b#!U஋wفᇾ9շ+~|V/ƼY^׿DD\fTN֦E1+|cp)_h!mEQ#;E()R}h#6_s%\y5ٮ}9.:xu|}R`}nVu`gjTb0֪ ^ixjHꦏYKEjkU×{ge5UMUD@ 'ۭ)aXl6i5%aLbZM-6* cP;^{aڏuz {)D w:0ETB.锈êUIT<34& 9 '=6RJj&;~w) \l2)iR? `fVݰŔcmh*@X ;2Ŋִ-* Ub-ZnSsnIU73+ R5U@${]i=1e]\Sk7X+ /m1BUReiDdGf+&D K2>vk$r=؃Nϵ%@!HKZʟEkcQcg3Lq+U;P?5-XqVGgۉ#v:O_;Yq2|1-lbMOk%Q332_y%Yvx)9:XCA=%@E8N]H k-tk;fkk$1肑}<öN8ŵ-q)/+WnW-Z|!|茩f?n}jjCcEaT)9nki2ۃ n^ڛwD'ky~yTT;eO(FULҼ\[h^y<X~ņY/~`f\`@5n~B2U"Y J?]֮>cvOm밳gٸxK-S[Z<le;"Y*B[r#ْwgvvqfc&y|JufVp<ϵډWrUo̹œsNe>mk6)WJ㎑SbG&r֟ޕP}M),[\ů>9 a(LV/u?G2Df*V[tt7$8 P h|nu>d<Y90aDW{D-=!!6#svB/^NyS c=5Oa ٸt_z^`.D*œ[dKA-֔ï_b~5bu(kGIĨծ \dUWs1:6s/Iw_~k7RzȴYr"3/pe1՟/bD ޓhPWk,.² 6"oYoKWk8Nr qzR ~E dT+9HsQ}P`r\6>`, U(9!Ֆn'\Bp^+wrRsP,`Im8æobCG{{<KQfdgZB.+ )}pġrfl]QAA-r46W?/!6jw8=MhRL0I^Jc&ۗf݄%jaEX7MU3ٰ O};Lf9Q y!i'y_džS6AGvIȪLlikg-jXdqR"MSccGyϣ.?h9'Op{ {1-H@r"m~,7x0wY[{>U- sVf ְvoΚ^}LӜNwhDDOcoSbvl` 2"_6r7NǠ*S~oKٛ5hwEUTTU':Ŏ#:΁㳰ɛ4YG2c=c̋V;A'0]Cj4*=Vg2pԲ''no4^yd-.(Ro{L 0"u/ihm/Ήٯ0z}o:4{~:)UHtvϼj-6v{^u)-ɲ$ 2~YTB0ɷ<9X.k= <4j[U=R=4mݛzip+)\c3{j9G~HC<&0)U45j.GqoEvmvC:69KlqKE֤#ͽܿcdr^x!BJm^lkji?|Y<|;ebS^gIP4>xHQҿ39io߱M5ϭЃ;<^:?uWcU& WmW_,}`Zm~YS;}՝D{-׸Ѳ&P1x:j<n RҔ:UKp0n?=v$'.ga D`pof~o9d6\fNL`Br@q92C.FGZ}n;EմEJMynNI_x m4]z\$ِ雑hHkR]1\o y/%Q7DdQ\#F#tkW_:Qps_)5uꨦal\޿>m:ekf|ݠuzxmC‰Rtq3?]h>Ņi˳l_7l{.Hb//weśw0eP *1|菻GR[[ 8)9eDh<׬mt괷JͣTP鹞׀}p"V+<I):k}MDc5Pt ' @j=hJ#5c=Kmg`D>N6mݐ}s;Nܜ?gde 6[~NF]V ȹ#ιGsKqF]\NT"#c}#Q>t?2wyP=ua xaJ42(.'鹍3o_h|o'Ӓg`Z0!xux4H,ʕ ZEnz5û - Nxv@,lPym<I}ϴӴ&v+]}=K+? (A8 _0284xLrPu&ԡgXÆw/M9J~5zXoa*CKM/|tlH,2> 11/HW0]Nwikr@I:.7Fµvn cD؏-\YVCݑMi_C6:Bi4;﬽TG"{}L?K|yߓ?NI6]x8{]wz\:qhpr~mumn_x|o?WEzs>OI'5Қÿx;Dp~u)죹ܶK%&z;ӹ2_ ﲿ^/MLfQa.[8.jtIfy{cSRJ늟3';3uݮQzԇ$rnp^rY9G>Dg2^ނ5~qGČnz^p/W>b;~)aʚ|uN۪Ϗo]u@inSUUWS  `L!'_$}/\$[P=fC&Ij /< A֭:Zjt+ƉxX]oq5mwZu^$TV5KI>8I1% ~.um([e.^ą/}]5]ek{?]ҮPcGn5EyOA-5OggS@C4&R ?޹{&5鷨{)m p4YBzފ* ic z[ƪ \Z@р{riψ-n&2?GF'~{g% /L SBq,T ) 66,o=_7Nf@Ti/ @aObB^rpmpct G'|?-ݪ=MQ.}>/Qdh|L+@G. I7COuhK!B0LVK:{cnɜDR(CHj2Y) -CI8/o&D?/)ݯOTpv׳0.ywuNza&Zf'=,A{NL&QDNV\g\S/ZJ.i%k>/E>,,ݫhPi4(lZY^u&'eozSUU PxܦnAZ ճ`Df}N{p.|GGlvwyb̧r_lK8>X.v6I &lgh$ip3^,Jdn qLb7׾`'M#Y$Ÿ! Sxiǽ9OWitڊM< Lٜ+yaqU8bO2Dp}=}G%T_˺DH AXb6j:;y* HLLI&1{sC7I.2yQ0P6dhfL34H[i$Yl"ԶBDAh6p S";W8Cf&1lYo`#wۋqdQTl{rj-=ȔI rd}x G%eN4Ra'WF.Lwpz?%ثm z\i8)D_=!՘L\%æzKuPGtN㘌zv0?vԎʭ9j{FVxsڑv^h椕9En*I ]O]CWgP,NCPGICWxu"{^o2PK~wV:)[.y9FǤz!)ƶG>|JhQk;7Ld!*m_@BPr 8TH&Dřp& "5#8u1 ]3d_J;[tM0cOwt}=BtHQ LV Oٟ6 f7Zf昈˻⓵z_xv $dSjZuM1\ei{7Ltn~ iZ$cIOlf91W~\[C1؆tnO_wm{X ܳ!&_\$mϑM|{XmP%H,: ^sňCțlr3h;h[^GsOr?~#;"`xtυBofo}I#/jw!7KI2iu3ƹ K#݌eб0^n\ŏ|C;sZ=JgH=GWW]⹱T鏼F@!Q?gw+[~lh{i =bGuRSn,z;u*'B*W~J$_ZL[3) `)k|m?8n׬> (/re/ ڔfp꾩(uMKϦ=GTgbMfTKKX_*M{ULk%1++FF_v 21O~=_gy;ߩŽ7lvYy 2Kku7Fb r̢^{yM=3*oo5efep:6j֩;~K֭PVw~]oQd?Dr?PM@b+ PL-aN+.q'uj-+{(|2o~yy`4J}46I˅$WRxQrf;n!pũ8)}]f z4s Y\9 RoQ[*Wƞ;hhid+]w{ NdGrɏ*xXصt 5ʬ`y4" c׏6Nud~rWf(.ٿ++T8zrJ3$ك}HZ=׵]o8<!yFB0cz[3zIC1`B\%u7"N!8>=e7iEûMuI'k8c|d\4j^.哎 %O{Uz{k+`'r {=;yWU:cJߍ+VuیL@LXȸsV!KB\z?맶&~FO<(bon OFH7\\jyhu~ 8}O|mU߻fH^^HS#N]c堊*Q?%@@!xQ5&䤐Hه?&_ӀrԧuXnΩ!GŢ[,jCʕOk nV*ZYsd A!Q&'F;ԠijmF{u2_~N)#)UOH*qcfqdvt2IQ؁uwd~mufhq"B!o=\¥wgO Q?`H$ r ".BՑ#<Xsh)VRnf_)AX)D4Kdy3χTj0^hM*+}!}Q\7 }=f}v{R40ʂ[&7jL8FHC䬵RVrcHkszI9t\r @STך!kP/=!;1\fD̠ﭓ8Q؋ nesROx,a1FVULkX^% 1z"Yw+|=BI57przXj%[n;l!`D [!e>rXͤd213ڼxt]Y)hR_Wp? 3 X3NXx{y,PS]{3_3u_N~aD}6,=(-\;V_̩nmtȺgm bٸkޫ V'7a ;ntN%=Psr&>N8|kcF 7,<7vfQ$[y;n)um,4i WJ9N[8}[3ļܕT1IINϚ]vW?T:z,Tk43P^S%h-"\ڏ9Vt4ͬRSP8tV*N%qw0}ۼΐvif3.zC:.cV)R<@QýîR>'\<F ? d>Ipϙ'CKNjry<1ǁG%܏=֨hH- Չ*Md~*5 jfH4Ar'%?J)MNd'UhZ:TyZ.:DC84Rwi<]'yG6h7${Q%hM82 "\[HkPWG @@2lQܙx =q.Et{X^K 7 /:I<#v j&ER-/λS.$3[Ӆ S H'-#2 '_sʉ||,o}wY3$4j!p\)}run-ZCW'K#6)e:wAK Z|ڏTzFyyn#ߵ!j8PO.ڰW$cSCG5ΞumVBƟ19v%Ri1޶2 u uؓr/{"3rN&?OQFN;L0xr7"q^sm|I GwQcuGz!v!"~1_f+37w{`bȝ_޺nx1VD;~kYF3[kQ;n jl#Qχ4nS~{UTij|[Vzf;IoWyH9LedM-|TU;rVQQݵd1s@Qg3??lf3Si#^K\$3Oq8j6՝ 㣏^g#dh8>(֊tlkbvwۦʌ^9X#=^lMu>XIbnSDo=Cmz?ɰ]GTyZ7ƀ &(bv,o, kWAߩ)WR ^@^ٻ)ӓziH9 ƒzސ]@TAE}W"jGM(7~u> W{dqoȓOߌ~?>Yʦ5813쾯lHƲ\I~ΕXW~{i#^G)٢>?i}wY!%$kEUR&C|NvU%zhBHdy^RM Uޛ.<&p@5F\~/Ώ;VݛBix! !ى GwYeE쿚3YX{t !ҤAB@kmp07Mb_3ܟp^+LHlP`Lߛp$&g`2C>l"hmO,.m]mzC馮sBʯp/cp?ks䵺ƃD'BfD]e0V6V,94)Aznp} .o݃%mV ^ HΜA>Rno⁍ >S,:Hu3d{hXΜ`b4r>}>ȁnO}r\W)$|={ `fԵ\4]!z[%x}%}m=ߧ_̘?򤰔'~NC^9BpfhCJYn[C_,"(VXWx}lw]Td]%~| UI ؟}ӯ nDו y-$/+9M!x8K?3뙙v Լlb:mK52> X~WW#K?EE+SFi@-rEl='c{So-ژ` |k-©N#;x+^?:;OI&q!|*8\ws~ަPHj2ZFmo fPqlV7 Tug`AwM qiWC;֜]oLk|ՀX-;-!̈́DA-&]k$,jesnOb=kZܛtyĜC*Og:f^-Τ]&~Q:"14?gZ0CkE=3f3" @H "e^h)AA֬Jbi~1^)Lţ"2gDOD I:dVV~:ߣ]r̊ӊ0 $ {6ms^5U2$8dHd+J6T*E4ٻShlfrS$PgufRܵVZH8u'[]㸡}WyP0$CI@䠨^ʼ2 1>@ԷvlH8d44/@gsy=k~1޽ՕhXye^ U8Uen >+^qX9bI^^U KV8"_-8E ;sa:l/_'Lax-{0l #o^Zї&T̙a/y}&Nu'3G@(m lQI\#-%u;?7u`\,O|cvLClKv8^{ qk7 Qjr*MTyޗ)&ɊL :8wQu:CS%kZB+q@Zy*djfDHeh2*;Q3#~ES&q;5nTGcS)gn*qI~ OIzw#Hh5 <{qPG6Y8 I""s.sFm^L'(= - =4-2)z<'J+}iy)/YN[>E0Vf#LUo)WX_NDsDWcm``2 cCXoHio:>C% LOv8\eF)`\Z F#& CBH]Fׁ:(8mn6yJsb֋ <ĵ%M_O-$$6 t텣qj<};]omelmoɃgpKWԫp8%M͘}:}1"\D?_:Yp0p#=}ܗknu.r vv[n\d&>_B{%NS/oyS oĀ"#^6kAu$CsM^. AKpMT26̭稧h?  d{Z)Ns2dziO._]]*!~?)GYGgɿؿ.8MS.lpn[!T8z=ӱ;~3~kٸ8$ˮM?.E]ߺTY|'=Ͽ*??afS*]O. g7_5ɟa5sm+оi%ˬ@>ۭ#ucJA߮ܢe8z 4tAR nV|P4n8Q~K^lRԃBW:7ɩsUnPJV%=zUBǩ@F:5y1b,3dBf?k]њڈ0Ef8Qӝr4OJ+=h0$̈́>CT}ufD#R,GȈ|~LR<٣:O%KÙ?R2idCRZ컄W:!(WRy"F%p2CI=TI4fToy Y8:[N,i8Ȩ /CuN(dy<OkZYᘉ"T@:LE'kU i" ye=Һ͑gp(8 Ch=0+d,p~J"+𲿽Q59œ>_x:|ʆ~_xcTs^Iꎊat%i]8gK <9t/~2D)+QYx-G~.`~kHzZVwTՓݺ*Řvv%.t:X C,0!#S4ZlWT7Gd28}P*!('r>v99Iղ&OOOx)Rf}{[+ߒgHRX:q5_,arRbN{4ݾS'Lrݞ9!AxWr{kŦsd/wh;MQ ַxw_7|%[ߔfDT!lƙjV^~iGJkgc[$ʾolE{GE5]gaf]N'm\~ U#}Q$?)U+3/ƅ5vfUDB~>jI9$ oEf hAp 5mѨ-A`VlkQ/*o&jK&88k 'Υ SH'5URקk !gj.4MDo'zB([Vߡb{^Qس[HeD6o!yC4*Vh>?\'RSjDxg4ut U#s*Shfdۡ5Ƚ/!VU:Q;jk9\"*:9D~!W*p,HRWRY@:i!Y*NDgJ螵ɬ53;~g8P9&YU%:ZHf1U)4LG=ͦH!t^?62lL{œ9-aHg7 HT,ɨ8X@VԃY:mlꇟa \x6+f3?g>d@Ky>q6۰fQ,%y|~i?mSQXɸq7%KxL|XMH)\D410ϯcBLXJzKh{Tjν+p%I[,/+&q]D]T~%A+3,ֽV:~ ޢ~V_Gj;Onphu;팏/u̿=n.3ag.w;j2ɿ=ŽuMAC^S`/pGUk'OͧS FFjS\j@7C%GǮKj_@Y{/T۩˹j!7/l̲5%>%ÿ~75.S)8̹ ljQZ3uZےk[bTգ&;EzP[G!2)x~ōcv$9PoO>\@ (_ ԗs.[`/6Z6ԕ#z˷s*H[3]4O/xG3d&0 yS6&5 ~ Q垊-Vƿa5^}ۓ-z q-SUDȩXϺ{O}XMLLNE;)aKDrX? x J&B:CX%s㾹t,Ѿ@_TG3qq5[yjFt)sr^'Og#9X\ywFO0F*M=@߭R I`[-os,`[UR1FO.ME=W{u9W5oÑva5<Uw+r%~F]1hߠQp'I1oOo<[#Emhb/ d"xȡAA6Y_>KT9޷y7fOkU5U\$S+m:6(G~>Ȗa6'Y[˨vݽ4O:gVK}',Jc,N=m:{Z̺On!I̯.OggSC4&Uӳaƹ̽v༚%Ő:̵bD>OHwnM/k-vp8bD)c{r@u8GNffYS`KG}6wW_g~9r_[yTk(^|pǷwƳ ?o,3rju&.ԮԨR*FFGxPzQ~j9`h?tom3$fxD釈t_.ωf׬8ȮpDʬD4SR׵j=US[%9(P+Rvr@-F#DzGf̒q-ѿݟ坩m}X$8]8H;# # ]'< oݶ?\:{0$,k9ίWܙ`{q54,Ԍ,$á؝YC(H ^h9< =66D^ˆdL\n3 "P%C̜ 5Ç7GʑBoiq nZ49>δn.ޯLqp7o'SwZ#scW,4zUn /QNLSɣθ U &}Nۣ_n<Ѭ.~LxtUɍ~*A,Cի77baGǟ=|x)'+Qw) #|R?wecNi圕^G¥y1F|Yq-5[Y5_x59vVjVK,*%cqem<8Iӻ^okKv/1+V]{'Nn=6 2e$!}$lS7!nY>2L&:q[AQ;T)z {٪_ 3$g\I C! $yWhB-F <7KN$d>v B7!/ӷx0ZwvQEjeAelRD귯I5_>8Hݭ֕z\ !jyl_n[evc9hRϰ)~Kژ$tMJgcg +rؼM܎z%/ɦ>=,on&]\!U]׿%ߡo^mۦ7~?iH{Zd6i؞plcp6/m\_cj}qotYs2ד_w[: ^>*vu}qPA@GRۢoXc>4l@8{1>_̮RڍZg[?YUelo#uINQN$ti'F]BxRq =CE ZX?7[Ekdbq dy_?rkb16[v"ὦ;{:޲IR>-?p5V<\3\$ K6Ni/)Sq\gd~>u> F':/Ӻft$K%kǤW'3!`K";  qeXBe6D,?Kqc }Z@巀kozXk*T}Gm3F(( =y̛h|պ怋޹03r5'(}LtCj׬ÙxNop|_qB}ܻs5"@\ӸFGd]cCgAZӄw-^1͉F4_-7ŀjc[d&c@qѣ2B ?֧pol,FXMƎnCH|ʖ\sS1 6~-U%,qĉrl:RhIY%*Aִ<1'}Kw*3SUn5.v(hŢڙtEJg%nrmwlU* ?vf[6QA9,KdbjDRƽyd3-Cv)_;;QfE %:afma Sjۻ%U1 jب0]j=bc[OXW0Y:vhJ^'8d_P}x^i%ҕ( XN5_g<ƝdN 7_840R^Plք??wjo.v78-ö؍C1qA )?jKJPϸc>{8G3X*OW텬n*NCPt^ !6&$qZ1+U>25}v8gn'Wl$Aʓ";|Xdc׿~00v[=jj`d9':݃&MU3uMhQ''Ǹ5v/>IH2ɗD[~w}{=Xf4[wKnKvR|Zn[޲ʑ>k=;E\F |ƬuGl_#7V'oO.}syZs%=sžK %Gv t.NmOTS20X-gO ~/LͼvӌZGyoNo|SDd~a5G_$J?_6l{n6Z9~Z c3Ri+H- DyՉj-.vCVWyš[UͶi~MވVp*+fm{<_^Ah_zy\zJrTǶFl\T^ᰎ?D)^3G<{;I25sL2 L ;^$|}u8s|kVw-~ 3{Fx9x@je5@cz5Y `n~o{Mcsa^_=w*A&r X:H YHJ/Z4Nƨd\BDϽ/_5=]x#)/{e7ׄ3?};^_fwN9W^J(W;Sfk̽'*%.LIes\U/^7j'pm2GlL8jeIiqX|Zj岜*S5ͺG'ylRdps'5^g |T_e49&-xrVc&cyT~p;_#w\ܵnnG1q%{Kq`C/04C?̹r3|}ʦ+6jb1=]b(+w3͠}>Yd{2f=?!<qo?}AVOVx fZ{DNAjX*7lw=4^[㸉|h5-u?d ׂ#IfB.t#ǯ~,SގخWrt0pnyt*۾(6K%E4F~qclvu `Au*{1GEKΨ fSF zߥF aXQP\0mL*^򚨌:~DXv{N3sP9)EAW">ggNnBeY|ߣX_7U=jwv߸*<8P lIQDfږQc0^7?GS3.zFs|x9kOysX.Rau5٩2'r*pR%t<:5,C+ӷk@+z[Pe:XpK>FDeiQMe責wkDRhF#t0S֮=w_O*/G 'az뜘nOz?T*4t+_<m:0ɝS% &g پ%.ęEznjO ZzѪr7*:?x·&Bit9뎳`9h3;48 xd>_ H>RdO;;@0}ҕSW m$~^t5|IJ!zB*J#7!mlױٛ]/84`=}'lLZ9PkJWWi-KpZtĻ'/y2Μ؋&AٯPou{/X\Dm,?6.LY\nƼ ;G;bfٴ<[ H8g?S|{֝LK]0RyLݟ u@.غ*.Y Y[X͸]W~_dvWԣͯӾ )gIW }%7=֌ J2nu188B~hGO!J,M_ym\%{yc.o!˯S=[w&pD\>;ҳ>% X?x缜V%jXxmٓ.l8ϯ!\·f׫} sQ1<[r8쿖Gzso0K=47}w;@  Qhb$}1lO_y/*hΧlz|zۑJn3[s͗V13+ ϗ n鏷! gs=a/P06qɔNh*꺞݋/ӛ2h A9F3<-T@Tpt_H@ۡ(xQKEs?}@/ $.]+8DGG%wV}a6%],Pet3PQՙ-왣-tH7≖M\3XcpE@ 9fi{[C̽wBGIyJ^МE\>1^.ru.4$2S`MipuݨNme-HY2_S̟XPøњ!挫?6oK|ɍV*QcAݜ0υ2R'2y?qؖh]#V\]0ߖ .(OZ'ƺ%YDDj2=m}sUhAĻG݌&yV-"UA#r?t:t׾\]t|׆)"%t7 oQٓWrS;3HS;mK햼_g>^ew걙q"i2?vҾek}2 N^߮<nR9ނZrWz ٙVyrFF!8@V"|lf{|W4x .csNC%u!+":eUQ>}.uߺiPf:6^Ce5MzH>~M_^lNnMK]aI3|~ʧ5TfZ{}C&1}l-Zs1<[,Q^L000O&d |p*xɰ>&#Vu U%sii]@ ԰BÚZV)0۪)ݝ<.XA[-d^}{p{s@W޴C@#˶e`oZYg9n9'˫hV2~U"lѩk*C9w2\"2u6SA+y[H^׮4mV$q <cJ@cp뇥yZ{z PBa {@z|g(BmfHrs9.S'Enqq@%xu>mA;ǶGf}p7Eqyp6bcj'I|kBnQ'5}dzrw arU"|UV6t6&hջ*ƄRIo*6xJg,Њ pp_t;z,QŇ\Ll3Zq3Ln!I j8(*.;8W^:c<9:Yw'F\9P?=Zgɺ~-eqv{\c=G_E7 s,U%30ϝ ҴV2Hm0K!yY~Q60d`s_CKtK7G}m"n"*IƋ0^s?&J\-Rb$7ePŵ!#c7u (g1i.lqD%}_";Wn3 EEor{0|l/VݓAwJy^VM(8P;z P})ѯԖ9пfl]nkh<-hsj&5 }Z%(8DZ)ZjuƤ&~tAˣdޠj\ZQZ6#9w]⿇\ZЌxA9y}"&$QjVUQ0ڿcv_8\7m=vGRܫ*>~{%1,L=ICX"M[ VhI?sgn~s7i_ѴPyw~3hGvDgS~#Izw^⽲;;j"?h"u}B$>{!Qk\`j8r\=dDd*D #ȟ>=];2ccĹzjS_`{NW}[Vֿ\Q:ר>,AY۵` GO{)_q1}1I<@^s^|C?Ý]K͗)h-ɲ%* 1i eh)~4kz-u"w+XZV~iKAZlڨE* oQo=CʘV| Ίp/)Np'f~r)+K؅ʄ?Hx \\$Ee0 0yu]ŬKǙ˨⩑wX|_0 ҮJǯI`v }Dg Z!66Mr5#HY~7&!>s4DLQ\^hv,xs낋P( Z4;yln{Xs_6c/aY||K.(_$zvy DlM͇iqlGⶼR3u|,gs5M:_hx2vvU'oA]4l ԗa7-,4'M^vaYFf98}+Yƅ'`m~h-Wϩn' }|fkV%?]q-N\|L ,fX.a_Ԃ"#Z SkS.6ޓ+ #Ͽ?gQ[G: _pjwmm @m @ Ը@ ew4!sU|r#) tNģF>? I A9WDϖI2i 㮫do> } &dcP>%#> _K3|@?ʏTEҕb*NEOr˂}W1l>,5s:bEpviX'<ƴw(wqH9|G2\Q"OL*a흻ʃWOi<_mt㸗~h+E׃`0N*#_3]zpi,U>_[Q_fwUX?p0}{9G\]}~MkWo ,H. #~ΥPDzX|c9;>wsE9랜c~*JáeC 7kHf=MTxKSN;a2zWSw K\} 1 -D9tRtg#%t53)kUkoJgG;N ]qUSzrKqBį̯bHQc*4w ?;ɺmJoqrj3֫V’F_ /١nI?_uj x;\(f7]yƄ`zq{+]9*Q bޅ5E$yq݉F]R(Degzpn> "ᾶOI6HR<ˬgܚW-o,7ZTrE_ߝ5]+Mq[>mq\0-RBbs|i[&kuvw0>[dKz0 o[d E1 f*Q+ q!k NXj@AQ!\*K,ErK{滘UZ DCR ׼Iyxk\zߋ4֍$DQ| 1k.x+bjcMĤX;e+]szq,\}΢u[TW}7xc^@I[,-7 _9^.z?m?6󛱿s<{ -G!;,`kN.콎9*Fr6#j'PlQkRC.d["Z t󱄎+4ZdZHA!2.ew\˫#BqwW. "_h!BiۊFvmp7?,bdҷcmh2wZ'NelfZ;UV7 B矎4q.U~ck٭x׳nKd;p!OggSC4&Xv HXf>2c̓,p:='_E%Td,\O0`CL,EM}u&F?x<ڪ yǻV j=gy6!ʥ)"SZ!jRWwlaϪ:gO'gU3`5HBKz# |WNWh&t\# @uàm;AY }8G d>A&'YǐG&=` ʮN= 8ZD'^QdJNt*!l.q8#ɜ Y4 9CB{gJƶzm}vсy?*i62w4no<,CssrV›?On@N]@YMYrA l }wQ_c|C,|&q]"S~)?E2.eM KwhY~՟i@Kc)Sa}]lc3:Y8}VWe[MU2&Ӛh|EIPs[VfW~p*ozu2e٭9Eq Tߋ٫u,/"iiyxuu6dl23q3.)İ0kvvOS7pQr!pW}tq2(Vs4D;\9ȿdYCAqeŻ L0~8Q ;{©^ejvXɝ<|sҋxU#";eR%_U'ٵ5!I pLx-F:.S/R*Hur4YP4NOy|+5C"2g{Wi^ E P6 :?.ph UlW_t*? xCd=8=B%#p\D 3zfVݣ<g>{ (JХAn 0H@@PSFr!6xo$Q_[R lJ8Z)'HpN=I}.w."6x(4 ?T=~R^k7YVݛI ?Ы?elĵ MiD==hggeN2Jrd2dp:B)rby&y9p{ŋG/f|<ZWJ?~gMԔY`]ˤOee^}Ȱ.C'5<7B/T-}:E38o_;|I{-js΀[$F_ p*=;z+QW_ p'fauksJ9.kNޚ}L<;VCcZj}׷*%y%6N"OܙLyg>tuvj(hz*5]'=/5raR@ixKVč[VLtru&Dt}§\qa+ǃO8duf k˵결I]GUY ̢$Kħj$vc{Aܹya',f^]qufž=Z?0& U xˆgE: l؛-eX:-:{K̏O}Y[U0 $.jkU~ ,~w p1C5X<2\0KfxTz,!nE BZ9?ΨUR0 n7tЌ6GH?4CF0 #@ koߢh:1?u!sQG';ғwIalpa&ʈfhMg[I'w:QVvr;|<<ɘfhx3g7Qɾ?9f{MYiyDGܖ6f іx>8DKDN5(Rmc'R^hz՘Z6){^"xml -A aUnMnt ϓ?98j.ͯxŷ]䤜zCatxΌ(KLF̺\$|Ct-du0wn:FCaj*:Vxv6w`/A; C9S Mlc?v:R.'ஃEJe BLvY G9~`r)uqCdW8A6jN2-4v:{sW@yltyNݑ'5 w]"/;q7^5φ5z,")ʷ,}a>sk`?J5fH h/d7 VIխwvkS6}KlH#P~Kq}"ӧQL´vHGQ%2RS)*czCi?\#/8}y+i0.6ITzupUn{)7uy \_vL\1wY90߫;'jn lrY<3 6ޞv\6lC}a_x3_nWrێᘠ9j9o< ur`4kt| ~sCE](4khA1!pi?L E1\lnx {J:d 3ǀ?fpcf |Btٿ̜ө۹3<[ ?{Q!6gtmV9ݍEs>nSqYDE  B`ݾpTm>~^4>=cآAKC\+4]UU}(5  _Pij\G7GE{>c1w?ųufJƧQ gvZ)فA+pH=Xb-+c<0C%$1DvuCć<:PaGPJʿP@jl%jnY[1HŠW`yb'j?׭;D|u8}'Y3*A㹨Q#aWZcCl[=Dl=}\~^~)u~;", EܟsFo^p|T *_ԑ Kx7»kyMr,.LnahTf]||#E)~8imv[9_OxUɘ:~dx}%-I&d;\+*۶Lm੫dr 1 |neٝgƮMQHD4/cM9 mB1lZkin]_V(6ܳ.&sxOggS'C4&Y]ǛwΡn[VbJW.hF,g'@>7qK\&V'[QE':ZV)w\ZYZܖoEݫ\<AˣHDhdД [q9N~&Oމ**`?^B*xh.ɿyc<0B5=U_ te*MU0`#ƤCNzvha`sɳnI3_3Q(^Ugj醣Ur9IUZtԔJDEsPu@kK\>?~gqHBM3HбgZ[@rPw&(ckgRR"a}^bE#wMò]Z%4JUϘF,ZDÅO:;5toC`|N- rPHU:a:jp3it==ivj\Q-ٍ܎6]њ?Nʒsrۇ/sh[)ל3? 6k#&5>;F{nwLg #3Fooq1PiG쾿B* )%35sbV,XEJMg0c>G *,]~%[Sm,ؚ)"Ft߲4qsl1.q}9shN~n_n7d\pk,{{k2-Jwl$8eɏP9 ۲B-78ޒ2?#*Kjte'L_Qt_ʃ6oͱ;[= ;cdHlH `{zm5ޕܾ k^&Uv"?qᇂ`,[87O0ZVZfOR5c~ 3^]hﷳ {6t7IӅt)r1'q_+7qWiq`Be=|vޫf%e\WUb1!2$*>ξ4\h/x;uM'FO͢mAa],->TKߖ}l]aL*[jTg?bV`cZMR7052{0q56Ya>̼XWNA$5xGE!ͅ×' wv(L|=ﹽrQBWcׅ/~}B>NhΏ*):ySHFu[+5eO)O z" A'`88E4SR\Jg:Qi'Pt~#n\?-hsh6?>QT2(]V}J lM+ 1c<E bHK7M:ISAb;oeaq.Ŗ@'mNUc3o3l͉'qW}ٽfy+R'ꆮq@ e]s@պnvg}(M.WU#u >53Z(& vF^B4[7OlbvVTIۊԿ5]ڔ->B 7U&SRsnqܑv? P#eM 3֒:%Ī?~i=">+o4H;B 7m{}<ћO2:h\17ב@?#IRk<_TUKvg}}!ݥW-\-9vEBo^Ol%Ä}Sj]^#j T*T 'u!~!PA"F 8葟cu/ f# T' =6&Ghcah"N )^"#g8BT6 `Xjho'1Ƞ |POբ1+ ^I:)Qt;ѵ k|O׶Ԭh;+I;5R-ފ$Ydo#..{eAX_̨/+摑[?,y.IIk;FPI|CzxK4:@4M9rإ tsx `^遼إBƨUj*G348o[f/6r"EUn 5R 7s՘9-Uz%I5LCI(&@::V] hjf,jRʷd_?i?0`+7)i<د h)˸gC>ME~ L۝@+9i/faj[ec^)omUϦ(ڢYBO(M7$S h />:>>~PǼfy] Ye@ߡžhQv#-(w=EFo!%[U? 19<,īRQi07^AztWm`>|e՜`|ƿl41+ES#Ȍu}'+6E0R=9|FB'=&ƾ2\ VWR lb9cDcTZ)d؇5xnw{bKΗw9^Նؽ?@>GQj<Tꞈtӟ`Aq g8Ċ۩Owmi~{6vfc|t8%~o:ox2&dj2hGUX]Ext$IytAb [xnLّOg6Ttם»I͆[}, 5똾OGWo4#G~hʼ7Ot&ݺ ==: p@ިT>rp1䫯ƫuuj**:{)R ) Oƺyl-|χ$\LDA@J:+d#Azsu ˉیxKKOPT{i< c [&I$Rǫ\ЇߌgBKN(ZG|8FԚff.rd0Y&6S̈́zuMԟݗqT d8=ɂ6=-'rx&G㒨*48Ph**3!ű_&{;Rٻj+ǿ\&z$>NR-jS*$թ%o&4kC6]7R8`,Y+N@=e*8#|9G֫5}uzmCnub7~ K>:x:! 2TyLvƿTv3{OKp7u}1n{dA;T%rNťgZxM-Z(>N"UxqRNԽj^\JzCKW\z ]qqu =\/Ai&d?QOHPoKxj'tLE^D$K\c{n*jqZ<Fpw&I:z*NNI'Šbq3nW~/nQ҅>ܣI~h+;vq];8{5Ux5)zPy<>w CM@fZGIHn: sh{j6]A {Gї^MJdøEh}ztR^idwAJA~cZY-}b0dg;ߧbټ.ڍO֭CY?x9D!1!H`<6 ˡoKS݋Z 51pՀ"]g)@OggS7C4&Z@k~+sw2Q7b$yЈM H\r{^I…_rs;]kP|j*7:!SjuxnqNdrրbaj>{aI!ח>iTj""}P>3O3@k& ]Bt-h~_jzzxTPГ^O?qZ!z ;@?E:suhԺlYR3#] h zi֎n??9!Qz] ZiInZ_}sj|LV?I>&'{ EB=Bеan.4ti^+5PRh jPX<˒z+7qFdg>}8̊@79@#YLO sD]כhNAމJ>^&m:]ji]6ڿoNs> ~FPpNvyu>1"m5 7њ`r5}: nMYӓh|tzRᄓ%i\LlԍbM?o:׷^0a (n)~+4oLo4J4bx} ZTF)EgcV@/-+x $IqVûSw%Q!Tzꂼh6P~!: sV7e>`tby,mW5/;TіTqlΊяrB h>{ pWS@cf}5WgfpU\ԫݝl !+ &OSq, 'V=JsJèNECyrN*W0*םU|jFLg֟FKgz.r>Иk=NSAkn&V SmeI9}<}lyS*ğrh S?6/#ZL.^6UazձGK6^OWȣ忕1E{ٹ)ye Ɖ.?*u%h=}%$m!-+cOָ4Ji\Hڬ(~i=lswF3|<6gj|d޳|(яű_/&x _ۺ9kX];6[c:Q;m@ܤogG ג-b Z~J+3手e=ɟ@Sˏp4<zr"GjΔ=O5<sQ]?uYэ#/tﭥ"*t+ D;ѐa~A4N hAzyHՃ$KGkT*Nt<>GÓdJSJ$5Dc tO轞nIE;d2H H8b`\V϶1qp_=܋ ge缔+3GX=B3}:0qpf>OgZߖvb-ԹӪ)tϘ_ڵhsKԯ{ŀяA4R \r&T,?Ҵ0&un'^+, j#fV/r &mmEp=5/ڎxW R3./˫rAmٸœ%SmM (!uV)P=|arqnFU\Ǐ.;xvUۑcIMNjԃ) }W$:_Be9uw2V!uxtrRnD9xT}Ẍ́\Qҏ<ğх@pQ㿸_k% /;μ~KG?R5e־Gw}$:`ūsUc !J689Է!޼S$6ԧ@Z;/Sؖ)LF^D߭i72\G =[{ᵮՓ]y T2ש7N8OQ#Tx'1E_*={z=05+R8MgݳqFޘEr}Vۿtk\!*jc͞iO54C RGhEAQƁYX0WJž@C NT Pk =_h*T$YH䒄yyM3R+T Vu`G6 hvX ̪|!$>I@Id0[ΰl\_=cFaq1uuP[Ӂ{HI LqJ#AMD̎Y֜,ο:mTݲ,@RGj$~D5{32$P%;h +L 8 .u(ÍBͫwKJQ{ʽ$p64\Yx.ַ_gM/ᱰ| qxۉUY?h8rex(VtI\ӽs:^h_6[pv2Ng#3z5Jm/1(Z_49Z*zO ]~T1Mk.Ҭ08@ 6]/ށRw^{2d!"yL+$Sbq)S ,nj 2<ɗ{.[YObsʹ6OJ9Sְ2~ʉFOCZWSzgghX/ջ;g Ϛƫ/suABv2Q ZBkp$ߔdz`?s] kO ^s'ob_M*ݽq$(=u5[~*:!H?Z(Ӷ͟.g%{ܶg mܯȘ?CqP]IesܻIo:B^eeh"}@tQnPﳥ,.Ajԥ9b8_k~Aj^ ,F23ww9:lr]Fo0Q%MX yYw[Tx5NDVEońDi6uH{}\okmy`pk}|m.;93~QVJMu݋+&OggSFC4&[ib+soʄ׿[NxCZ|*PGtCZ.=m[mkE_G$jI>;$Ғys Z\?/{v͙T5jRkC%N}}_CY5r8{A6q-:Mqg٣>AAT 0^C I}dGu~OUF6G3rd]vy$9^:I5CԠvgy!>w~pրʤ#xl+Q/?}E )H|/β׸ B{G;O\Zᡥ}#2DetvIwa%.a *Ĝ6|2r[ۯo~֕Ϸ-KzbCye-y7ܼ;3Uֿ}O8gMyz+D#,]qUK5{'¤dҀOhǸ"a{]VpY`c,{+7is'ZcK]r^~ջbJ4ya2skx &ɉ-24lNa9J/앯+Gs|}{Q=Lqf~$ɗF_U}P/?>L,fF)\on<⡿tj/ ~-)Zߧ`yW?-&];ϬU ePf-H_9e"&G4$#^g {cO0.qhJKܷyn3};Iv¡Bo2 7/1Oh^lOqգS9_1zjICڏ>Yשo>?:dfL:sdQ7s1/RWLMjr0)vc"[&1gǂ/-q>yRͯ{6x٢2Z6GQd;IWlhU+`5iO`L(ҴRp]@vocLlDsS,=dzڿ0)|6ˬ ݢLl~b7o`d!̐%/\X^ p8їBQ@|#2}WMz mc~s.YPbCCkdZN^kA]zՐuFB݋Yd%fD!=&x5gx>ȊCtA*%3"?ElZ_W-ǽicMAo2{ =EOY3RytOQ'ɤ"%CF>EYM1AJ+N'8w=b>$I̡EfͯNJ,5Vp¡cGs>,\7C4ά$J_V6_Q@brl[Dz$/5=-նQr0h~L0ۛ?a.ع5'qRwхo c ]Y!}:L [OKC;^\0@@ ?tR\t3z&ifk}b Njo{C4-|5}ʪ, d-䑘`5֏cp}tn>8wV[顲rʗd=#1sߡ=[\k2}ӫa^Z~؋xա᯹7["ٰ/܀}S'7vZv=X+ ܟo/sgyx.R?skK9[sZEi-]9 "}o?({۷iܣxHC Pv |~L&:8h~lDhfh#nGL*Qy*Z䚏(TuTwuT]ZP#(ڸٟpN]"iRui)NRN8s缄p$DM.?E_q͙أ&uѹog_;4+EU@ Bp>旃IͮK>\ac! $A.deNκ$DR Xiq&EHj8PQ{}vBdB&jOA.MnqS3 =Nl-*AgE 9c+O$ND4XBs׼΅2U 15y9tJFWxOy,@T&c =@ G-PxC [\O&#h,rxNPY:zL,ˤ#nWw2y~6ỽ&6oޫK=/=:'u_rRv;sIGMӞpU$ JVmf[p%uHUwT:\2dtp:Rs*g\n:Qw{GiOo8~$]j`2þ-v3&%4E=r5f ?zzc -Lf?:؝u9n&{f~5IS Uov6b?^+S DbsQ@}J<@|6 x1lts,c\._޼Lhw M}`UE5SP* 8gYϭ|Mzl)2z9`x!E(JL)bfaI+۰1yyOǏYv8.rI;Yu?L(I!ڨV/n`/sK m!S^cedk7MV^Z@TXP GMr]]\[z[3d"sͯr w>^'{S֮봜˧w^?~s~s}PD쟷oٕ݅n65urR/rӺZﶔ~3+zӃ0iTn?7Pfͻ}OJN|j~L*Bɫ&ZL55=ʱp8ke4\)ã g|{DeO ;̬ҏL4yLGBA)NQ hx#j;:'=2[cCMzԮ͖xz*m.p%9;|[$h~p˘K@}U{kTu]OggSRC4&\EƸ6T q0Zl ER<&!/9n5AݟܧvrNgWC䪤D͚֩FsM"̝},t㳷j0gEc_>vnOӃwTy20lwGrǽL -tTݙ^;Tb54u,D޶ʜ +>V HR_,3tݠN W7/R׻\k&$c~~ Qh~y{ɯ9|Kn\)9xuk7w#T$Iݳ*[*s{?Qq?)*SkWNU1q~co{yXؑY+euz {O+XF^^Dڞit D2co k셗ܞ{wIj6Z6=Z̫<MGIH.(jO|U*n|I8Rvj[DvNNU=_-\8Um`߯½5jz%8(P_'w'=ϘLkDŸMޝ#r慟߿'ˏ w3 ke=wbQYg)={|gG?p֞=BEj7!v'50goavvaьfd;7S,4Z<{fùHҞw\2U"Ժo#̳/l/XLbǗa-1a`8e; PjZqŰ3žZԴ`bbQiS˫"mr7q$FhX.̊é2c6ډ, 69[HthK-9J 弞+8xn㡼>1sl\X^c[c[*(%*qy 7|~Z^;A:~h7|˝2XGgII;5W[y/b%VuO 9xˣzFsG#*4%gܓ\mrm3tTt&+4AWMK㴍я_Z6E.܇GƳM/Gt0 sZ5KȀ/LzI.dؓx1KvA~QoѤjo>*FnN#`aZ3{o"#,UgҤ*_7Boyb+hX%Kj;a`.;O~(4Em^O~>͑cVOJKs4tGL=DuJq'ZA~v>їTbVKҡPq#<=ˁsCzB8p'T0h1_RÂwL6rGOpEWwϩqxcR!Q|v}6\fQgE5A*$X{=oGtZ߶oQ_<땍^~Un~L:JP/g*; k;;f?Y1s(JH*/dNO.uܻ?^'6vyļV'⹧NgiXnvS>楉o1~{\ҧ +'DMv9JI] `[NyjShSxYZ'1{խI?F[z”_#n0^Qj>[]j7zwþi_|>~gqڛ>z0~ljZb_;vϳ_k|{nz;t|H$u(* H}{ggb |g U͆F@ s=\tDf*.&`J h,s}u{VSgZ#8Dp V=~Ku2jPUz;/&i_5Mf'^0(P# ˯v9LYHF3uxw]g7pQ4~*9z$ZFpeA3y]H 2Ri&oPGn~7wKV8\-C+W\TXmsH>ZҮ߰.L-> $b :0U|qpڌ{5Q{'?ƤˆzU1ZoG8RY~伉 InIA/h!3rƳ,BJ f!E Mk*NÌ)A}<)"Z )"_ 3`^JCFѻM=_m uz_+f̜+\~#-C8(<@U砒)q>*}+XΨ:=7n~thS+|sc-V,*UwdlLJ}bpbW:)N_Y#G -l1ȋVfz!l5;CUP䅊KbRzJ)r>߹_3RmN)i'5']7w-(egjTvbSD6Y}8#4*o(a8~w_ֻUnm!߲f&Ms8VNw'؇b^tsFOoZBz~io\acߕ]g< 1vX?Ϸ_/|EWo5YuCo,L; dIrq<\$:ۏؒwKؾ}UrL!^ o~Ǧ?]{]#4ENEߕlRv; A9oQ٩fraʍGycc%zTE57 w[8REv"oɉ:ז9蛌r;inji;Q-شma]M:.:݋_X>TS0ޖIx5Ā#,̾~%}Umm?[73[ˆ>pzu)z Xyږh@k'msl(O=q?7p8ϰJ#wFz ~Uw!TZDRJ)i{p:/ٞf>\LK:=~tf{W62r# :e 7DeœLj8R^~w[z:L7u7 Y-gM˝ VqDzy$Ci'vh;Дt>6DD˗̞c' dOG-?#:NR6~?yٖi¼ #/Bo۵.0z!W47Vv֔#FPt"ߛ=r0y`PV(b^z\>Ώ[ǟ/7QDU<66/?۹o:bI HH쵽>_rz`~?ә6\?}, z\xX0 {g(&Ֆ!z|@-w ¿7kF:)PzukPVQX'jqzKR~+7 D}W f4Uϩo˳>U?}q冿wx6|'/ʾkrܞAoMrʶ[i.FNUXk{kQ]6z_b<]}ʐ?j("#eSW÷FZUj_GkjV_hujSmB׾#}*ItxS:kd +'}G#cwRE>5JU@驆`C߿ǿ>y O0~-ih1]]] =Tm%&[=1nlTD.nhOŷw۾bb ?1(Jdr_ 3^+W;sg{. ~&鳌Y7nOv{W:7cDZc]o{VlJfˋV?Wx! Qco}+1)|I{QjXsϞW>n<W`Cps)Q}~\,:]N4uFiBH2>Vx:oGxı}a~sR:뭟]xJ:GOb/+}J2.p <2x?Y-cV>*9v`gEZdk9ϪH}̻˹Y=}e*ƭ߶\4}=ﻺdexe> Y=?^qqmhC~/܇juH\"N;9-o"&^v4=_{T]]rm_Z5/[Mf8u9ܷ۟ A=o6\GNj k˞ OggSbC4&]>|[8}]&'FSACi]RIP.XR:G4.M&p5W;T@'1t*|\p+`=ػ~߾ ]kkg柸;) 7:SGh֐NMACVd ֔TE xK aUt,L39gj@(]TN$'PHˌ24^B,׸?EF R9(mRXS ghNօk;8NRu(eF"QݵV%:O~([@`9O.PI2: }^Oh֬9 2h;RRЩ+Y(,i̓`]Ʊz&z]_Ի8a%W:gk$vҡn{A9OwsΩ׉SĴJzr SYN]?%ϐF&e8K}ul݋53J!"7dsXKQɵE =sN2'jIp#2/}r6p2:I4 W{jZSsG&1XQELq~7/*\-{aɁF@qynw\XIiE?鵪/ V)3'9zO'oM"sZoЫkE~ʰn-_K'EW0 D2"󻿎_Nn5;Lt_nc:?\>/E?܋RLv+.ȕm"O Wsr-]W׎շK!PR/vDѝȦńO0bJ|Fq=f?o8\\/O\VIu˕Yl#=),zCI:UhuJɅ'KJEDtȜ :O̵OIN6Xc~?xNX uhuDEp]-|W}G+uc̲~/3|W]^ě9eMpViA 8|bلa0O&~e0~\s8K+I:o h,M1^*l#ܲ@) Vw6OwxE.` C8)}8sTQN(.q 'RYXgJ<+oKJ==֏U_Fu_E4FԘٳ|ڈ\3Z{-\c=uݮ]s/P&}yaiqeS@8p{C |ZЎ'{dG=a`qȈ~R.D*/,8 q#Bq':E I*ztV$)sPbvQ+G矼q=j"j R?>Z I$HJ8wJp*Dt;]PZ#l%S.G2{5wYќ# 4wKEB#6zA%rZz `ۿC/UɏCVsŅ 2>y?_}땧.h/TvbX_CG,8_|{{۲|ǂ蹊퓜5Jl^ʁJ"+Ex\M^u\4_^}jXN7GbРzzO62qӚE{r{YnسG&D_{zbN]`N;4Y)( 8cZ_ڙm@NfxL~ִ1$Ų^ ;P띑bvW M "@惒mVjvN!ςN}T=ŐMo7ǼƬc+a%9qzK<o*xdn= *9a͚p\l*" *iWa`L~<ܡ ;֮UD-E$ :齗!@+B {ERfDG;W h5O~TL<<:s=6ǝ&Yv9ad=̯jFng ;ܻ<+,^g!krfl K  `>,I2OV5T_^L\mV Hd>IV.z;NWΗD~/I,-2g'Ife>E}:.mӌUjW Jrtf8P!b>fO켻iV:b.ȁN=}"Wl*^"@2u`S;@X{;@-8Mу|+Ʊ,4,ŷR~Qiw~eLĨ? sB'[Vv Y/hnSw nA+o'S;L֩#`{ #C&k<:KWS<8Kb;J9q'po<> G/1ԳvO=>n_#&o.NcCz|Օدz1ܧҟs4*OIVNmZ-pukM"%R49g-raa&[݋,r9.ys%4YgkohI~唫J*l?5'? _kbf? ?w\Αi6cԝW;w/9'=Igߚrnu8ɍbs/ؿϣQZ!B4{n5N)q`3wu5|gzp.Lvw5N~.z =vyݥ|ޛ{L}߆I}مݽrdҁ9'2)h`~[ܺIKCy2Z0RP\Zgҭ׽_*YpaEI\& !G<;bc`,TP};ONXZe7:r}7iיEeaYr6[vo|d$c}Ri>ٹijNޞC+S[2l?F@̃,T*\ Y}p-g5 !rc "ٯgČ]" P&]HI*!~[Qo~F{ԼIC"콮N;h3S/9?u6g_^T W7c !*G4LE}l|jc)sOGG+Eיp9 hP/j"RPkp$Ywe%:( ۳$ =6&Xf8"R%$GU G^5]!hOSDߋd^GA"DgI ]u2PF &}yhBNQ!c0t H$0gl؂eͷN '0Ąn%2/n_~'EwۛyOX<ڲ7ʽYz֋yy9y$y]Lر֠f9oW34;A$qħPFw[)V*f9WC1s ZъEymV$U¯^x*+g{c6Vz%U(q1`қ¦/Wf$Vۯ5{,3-POE}j]ۖm[qn lg5s6x㜵F#g]M{RҲ E_ޛ|i.~VEN\Tm׍4rIYZ| ViG3Qg~ن0Wfx9_d{7 X OggSrC4&^`ġ3f@zU:Ub>M!1\eS`<^_ofMt3оq#^zZ?DW~ݯ#8Q ӯ@Z̹H)׏J=>j@vd|1^\%,jbТ܄ 4=5N έ"?9r!+^ۢ)V]L )CO-r]@t\yNtJ#!qH;R@NrAEѩCRZ_-?.=؎D !A5pGHT;:<(r#9*@D4 ɀ&TZQ0n eH;&RV s0n@ND_ ͟pW%sWNӳ@ ?Sm]_ ~y'ocλg1aU_/=%>$ ܩ6N4DL߭R@ю'&ɢ}hg$zؒB?Yi ''1G&nۤp銤Nnkqdr,)TRYJà.녕] +m12 ww?+*EhqɖieC]֣xGqoYۏT$ Eb 7dDy!`~Hrm1/RM}o^ǹ$N=y."dR[7Zvq)=Ec0+Vx yǛ%U*gNHkhE&v :KޱXto[p:\m1}2_' !!G|{1/G^;iLz E"fY=?5ӳBCr\] -_*O8d9lv>N\juQ )^Z'lEhbo#8StKr/Qq,VcUc5NyOjL]ua:Mz p'nY&t:<]~U?s)Uݣ.n**v?%m[`M-Z^xko5 0Է67GZAi[Dz! yGNܥS/~L{(PÁ1\p. 5H[-3>?ϔ;#_blaOdNyNϗUhu5SXZ]s"-D}fWu]j֢pKFS+L~7bI<P#BE_0BNBϐZ+}__G)!TR:^rqP+׋>$YG$yZpX{njT ӊgM:;-Nj(^~Fd~{Tu8*R$EmxHa9gvݩP{' PT 'Pd++12W Q4T$ I.RH^\${ ] (*w! ?HQ$àq%6oVUYF֢|kOp]J|y"sA[ S`SE4Wbc!mK-S<9=\xZZ?;岪+Vf06Rqҗ9Fϊ$Gak?#v){ hHb[,8p19FN"RxUq@Y{K" (Dh|ʾ{ǂ_E@GۋG_WԘIB }vrIբ[E>d]v ?w^Èj^>`s|uAfδ}vlj\j_N_5SgPp|%Ec=y7\WrR97-㨕:yNgt]jyfk"~sԲXxLgr#>J9(z2Uz7*u~g`.B-/EMR`FodxMk@]/GxT\y &Md8ƫ^R->]!)<&L@@< UP]\d? Ȣ%)3|˳>DO48UTG'9Uɷ`[F:_HE}їu+wi~JDye]t9wݢhRjhXPQ0\ Q =t F1H}q&90E $;C⬵l.Ԅ6ru,QN;Hz{9.GlR\c;OP޻VGMi&NuI tu;~SO=\'ّ &R%WyI|sxc/?y]>Gh I{^j R { O1$:zdĻe f"a/*Q~m=7m@|}Xo4ϝj@ yBA= 8W쩍.e_ h`$a͍4PsYsL,TMήm[, aSomVzlޕϣU}ȄaXll-8U7l&Uͩpxʦ~M$mGH?漵3\]&$y2\y&EjhNm5O|dc|sd3{4myQE TBZL(\}(&2P9%9CWzMl~y6#^QdUv 7MeoCF _0_̴]{/~ p_Խ /(1;|?1Pq =V ]8믕nT?k\|~[AY޸ou9K޹v iA5m;>^r&m+Ҙ aw|O:edukv,C&A\s9u.Q{ W]~- z7^چȈ*i,Z>"DVw(} D6dUV* ͪywuz~}rmDQ0!1;^nvZݾ3y>CT>sYdxCeoZuZ|a-FqSTaZ}빞[1f"sx7C&QYoHT4Iե`7%2',@R p)m;[]Ny1SUЎ]9yRy6/Ǟg| ˰UobՉKE^?$W2gno=MG1֍L/Ϫk-׏yOκo9CkfR>3=Է5%Zfb9h@^S/P>›(ݐ9y<ה0/w?t8;SdVpQ\U"CGpR2䞱3]!kF!}V "Y)#"ĩ5IfԐةY{t)R^Vm-&j2۪ؓ;\yװc0A0)5]=칌 _iIbQbltmc9. hE*,q ¼mYi¼L- ,\SCF}EWx4N46rd^P1o^ڣvooz(ym aTI [Y434A Q'z5r]b'>-'Oo>wRBn@H=\vN9|˫sƿ<ڟL^`jOh KQ_ͮhAl^)a”:MKi4ۘyxl>S~M9l/_g[|)m9Ti6`ӿn޺r~ov|nwnןoKiY1/0)3sP*YSYY{R~}AOggS@C4&_"Ko-τj5n'/lbSDû.+ E V ~ |֜?R>{IjcͮD?vc'9g]{Nabp?K+˕PU[n\v:x|OlCAu2?6 4jLGnS=}(AZNJ`nWK oET.dRz#4vsvQiv񒗦3W~s|/$Z9OyT9^+KvŜ]@S7"x^+<UGΑ?`hpgUQJeߢ(|^`m` OʽarcxOo,8Lb93!\lkMnlDxQERomI/޺<$?(pPyRի94Z O}xv:yͯʽxQnC$םQ' 8li܍Om;HY~Ԝ)h15waLe=g{ndYE}KwbCelU˖DN^k@vn7>SCq~aF֯nnB-GۉH9%ܹfܓԽn߱CCwM؟=2m-un}E#_xIrTO1K:H?8v9r'm FI7^ONa:ʠ3l DjxXBA~c9<4\Cv}}Ccz_n \' 8IYw^fm^:k{pb(wRs l%?r]eu R┬7UGn׭EG}ⳙ{k7Ott`*]4Ӥ%~> nZ[UlRC<4s4պ2zl]Qmt[\fZ$TBs^Ol>b_K9yL |xKiQ߿D?/I<-B2>':}sru%Z.hk6Q_]~_s]aoa-vGn] ,/ɀYZ\Φa޴{8˧ǘRU?TUjr.|Q_EϰNFGrݼ;q{75ߎjܿoxo%,۷_[~tC~nI=0ܴ!7 EճؒiA ݴ\{7as|D$D[l˗8GЂҩ2^AZ&B+֥:/rYɬGmWxy\dՁa5w)8ĨLq ""Ujf{կTgPнT*3feEm="̨>@F/"SȆO\$,%!",f ®=#mDFf?B؏9(QP4^عӱos]*=Awȑ r:O'-xsWQ^V\R|mwUۣNŒ:{G]eʡ.z1׋Osz.[XqVz3 8ٷ.}Ozi+\~^e]~OىJE)=K>W4UyMfNCN"?uGst"Bs6E @ }xR)ւ k#tlʙb"4*I4VTz)]L-n5زaOx=+_~QҏTRIQ 58lQv{Sb=qxӽ,-ni*{}XiXқoW8ߔj"4Ub'|@-Wd.c[SFi\>xDG ׸{(_<4zZ wC|{.#3 J9{;Yw1n:rV22ebI2q>))>Go= p_ FVl$SE웰 I{iqd{ f=ylC\G?կtUT79}?;y05uG<\! p{Ȼ{=~{㽎~tPS>taz[}>ڷ뗰}lg\WT+Pο͍v#ߧ&m3^h,gQoRa>f@g_+\Z "a+Q`Oؿ<]ZM)v X 5Y5h3ő|#ևBg={G yJE+"SV%Jzܳ}׉溶ԭ$!zn[v"Wx2-Ǹο7+>̯MkڼV5f^Ƴ9 JA'^ДPlCݷc_\?G]FdKP njc:JǟR#Όn'QIu ,(5kW:K'8hǞ+S<]&)[uSOB3*8S8t`S%#jd:;̧QEإ3U~Vazwĩ$ 8:ODg4#i)DlA'0CӂѺu+=sgߡayK&4JӷE)eEj߷.Z ?F rNhAk$nh,㻍|*nF>{C Wxئ|-[fm11mtPLt61ьxBsiV DBKAQB5CK 4oc`WwuSWKNX.ϹujyOy@MOwLw &mU4rkkD*πsZȴOvm[+\Gu }a0ۨut)62S׎~9|!crͿwyq;3x뚈׹KePݷeX6z MΝ:=(oԊSI rz6&sMx2aiz&1GN^{#;х0۪ ёhz{-qb~}&V:@egcf8B*= ъw%hfNɦr%u"Tc]MV-NJW鱮i]>giRGO6ioڜflCֵM/<ϛu] p}fuq?]HHfWl" (\-G~\@VFEp ];6[ B:-;PJJG{CgmSRT8#k- Gӻ5ה5p:Uj hH'cgM7N\k +PkWE2V'k g74yvibx/ZT鳐@A/kӾV")1O頱/QM@wǞd"G,짹c]c;hG3j߽W]ԎZF4>ШELTK($ҙs'yHA/sAD5+Dψ}6"3:nnUShyҟcʈ+xzܘCgnȚ)j1>eH<N/cl~C3mSJHcƀc->š6/nmB)v[W dy*]̂.: ҉|S*X@eBN]CߺXwf)ߔRdj~s '8bgsD#WuK[aXcB4 1nK> 4UtBK6ƘKyfP㦣$|ǞY|b> \ףoi` ʂ(p譿BC } =a-`kR Yg7si>Bv5۲1ZD ;]%ȝz͢-y >C.>oţ&#DiwK R 2H'ꑾTu`@֒l!]mXgxEpH/^uA@T\;H~"9NV[\{ 8X Usa"[ӄVFD{6V|)mTDJ jכMF~n]+b_)$Y.>L// $i(]|LB^7QuxX:clȋwJ/,[6F9ٻof5$1zY&X[U* ט,պ_}_K[}~[ӧ`FUw]mՁmnC4-HKWOgߍ./W,ά8ȳ(OggS@C4&`^?~曍̸Lsi,dWC"'{+2q6g/j1KdP>TݛO܋`'O}qbp`eT"N/\Ɍ#jOUC5qթN|@t\y̩pʽjD|\=엙J" D)^CȗP"ked(n¥CT{rTt\y=Hl=tDPUfЌUгJMȚGwHwwGCtejwmiSvܗcAx(OҫȻ Ip>h=i+I5cDVš :^R/tMvH+${shz) 8gzJqN! COnDC/'0#AgW;ۑ ^ŪjJq5DY!!m~R7l"52yOrc4f/D9xFдqZGq|s!nTd;E:b頋w'Kxۋ+X&\9pQ;/Ŝ=G؆V6+$K,9:bVރH EŌ}Y]Ņe]rԻBOzO`(|-箍fG7yXJQL5XDhW)Bݍ[_da<“fOs&.|lle\dVUb_#i鯖2K<kJ˝A]iCWinu$?ss#>q\l1ʓ :/ЍeN*V?Rq֗=&׬r϶H;8,ki_%A9"Q U:9 /v>u2n\\ex()ˢ۝9'9﻾[/{o{^b7_)=߷nM_DMYzD=܊5G fPΈ0Yc쓾e耩ל>2~r+@ma<:~'`+89N$u /厃6-~U"7n2lf$S9k?-s^_J\ãx<)RiX4뷹joKn]G<0՜C߳!/y*Ueҵ)Gq٦Pn4`:xr6p|vq9JO-t7D:p',EIOFBA2N,K> ]%jעvdEW%)*=i_DA F ~)fF"KAOݩ8ɔvɺOHCbQ}cT=HUd{sm xs't^sQ (rpRNQWEWSܕFjL6=>쭳ɂ'`!bP TZV*oDBBf"vJ{v(_~ U*Sj}Mk95esx Fd^2\ۘ u'G6n=8c [1 wKSFc\гeLPAjy?>k x/i½D6?]u HFz ^yU iAcHRe:iqbG9t09,ZQ| >j<"wNf9>7>{)_zM!ҒZBʛPeHt_ַ ߑCvn>HND7/W9c%2cY]#hLNhQ^plod&GUϝf ԯ#aOWmrX(l; Vt|nc\ .]ÃB}B2+2 yZ;>L{2v ԛdgwo=t{ޓ`nVi}>ّ`u`+\b>vǵLr颏 śTrfZ=;-Fl%ӫcaU̡4f]Oӗ8n$,J[SJ2SF.N ]eIlIt`w[믍_'o_F7qomW@pM3}>Muz6e%<NyF"ВKI]v[Q/[v~2-z^Jд6z8EP h%MIoZ^kfUy ^".75CEtgy|{Fvw!F&r\$/puh"\FV6__Z^I9k@y`ؽz|NgQԤBxCiЖ])juґϖ)C f '2u m5kj8U[}dOG hHCKPˣ\8Z+jCl1SL>5*Un‘y8sV~<2٬L\|PE 0QKIɞu2#Z qBn^h/39q!1$b/6 =%TlӾg(+[#:_T'8 dPmv+Uoο\T&RQ玴I" so:z}z{aٛr 5Dsd fB$mߥ뱶1wxq#xܟsKPkGǃ3M~>:H_wVfR7`K{fTI~u|h1⻘m⿽/ f^ =. C2ea{ܫ(.so?Rf#p">lC< , .$rN p"?Bjt 萻+ 'ɜ0‹-MNwӯ 4̝ugܘq5Vd~ >6_f >eLbOR[{~g}l1_9r=z>-X{&e*:U2KxsUj+MڹZY qnCl]y"ջiCźP}iDŽӮQJl 2lboY_uvwPNuqmquTx\뿣_[uGFםz;]xX>71mUyndϽO 7A xe"#(3JdDXh{?At_1**?poP|u[{Ւb=#':%u$zvvy^Xi&VRM]}b}6ǛJ$3ae'sQKK-ͳ^wp9dX7&-# 㮇?&Ca[s~ǚ'|}OMw%mԊk<韅nxdtUgij_4˪+Rg 5Dƥ8}|L,[{<V =~?*4UP`١#}D{49?lnYdl:uOOggS@C4&aw>՘g7M-]]r;~A >bsFAG*J6.lܵD$ve'A w  q4APHzj YC)8;TB=-To[}͈~Z5Qfg5M]#x7i=^:O}. ՃyehoxBH qwGNwh5=c9TE!P~O]44{iO_ Z/U"(yHMgKO4>T+QE1U#ɖ\3;_Q!u>M+ZNw܎Z@]GQ,3s'lW(43S#q@'xS0΄BT=<@wvنM~2x_2E yvxz?C{3$G RI$TCGy<ګ(Uxל!:vS;_w#lc߮P}N~gˈ, HDL:>5n-cT8 8VŤ+NUbВp1:>LsJoU?}]L>X ^a4c}u 2:T, tߕ,Y,NJR";3(e$fI:UY3]/NT`${.9vJ/_D"$G>abnWڷ٪Tr@\l9 9:lsͨ`$"|g`p^?-,907kyS9d_k ָiRk5J;]Z1?by鮃>n=-y'"/# 9{§ O ǂ,UJySʔ-drMď)xwUIN߯_h=0G\ uuג۰ܼTkbOѫ̰CxDtJĿQnҏ簮#wUƁOzr9t+q[",>7\=1t!!56zavZRyDPH~V[G@l^e5v3ŘNz 9꜋cˊsEw]t2wM?>Ԏ|+j2 ZWaܧԫKo|{ /=qP8I8̠B)O6okoDM*hg%b -oC+eU"S+ՁCI%ֱŭYScVwdqB%>GY3>EG3D+0oO)QϢR=ήk^~s YN% -{PSN$+u}N☇6-5*-dd΢2h5SSNCݳFPS:#Tz^~_?JIpP9|FDMYˇ^Bɨ:Tg}yM~. Yt84,5RD (r *Gٟ*"{B0L0Wql1s% RPWSQ, 6@BŲ4{2:etqɼⁿy!:o b( Vw~v[Vv&ײbiyϯta~ၯy ٛKX@̵7UPFT)?0c}%ڿy+V pM[Gkחk+E*;^uv/eeϸ2XzI~g}'] Sl1bJ0lto =W/<>6|K,C!)Frߌ_::6KBJ߷)W+BYujD؀0F(:@ִ P^Ғ+i, d7{Ϙp\T7jJvwK+H;,hwv#JF l^(6WqRu%'^)wN~T3W=%"1&W WM,>.0a<5W6꾂@0UZRkʠ 16Xu~Dh51򩛬% 뼊YoςfOs<_)%cZ=~ C%~f7? %s-^'εE3Vgrh-S:s$&zĘsͳ|v[[]wWk3mP]lwVլ' [&s@ٺjfBdb_GSקg;^oVrPͶn]1Pe1%۾߷'e6_m/kW]{_@j>x>:TЗRxKR}~R7cJүD [RC/7TJBFC\}*~DR{&|Z3; 7娑 -ޗL#:yڰg":%*{ɚG1~5z'E{{w;i혫> SF?P@++Q'(=IV3w!9 >ׁg qd@.8|nEu\^طzN|OqhGSFKHs9|_u9~v8iHz^nuZVYrQWeF!C鬄 BDJ ړvvEeԅ|Ɓ>,َةQ5c|e#t $'T"+Qsdf͙kB2&CdcCܡ]&Krq.HE쉴1z0brLjJj݂ototWČ+pr#r;r1&\LM@[\]ob}z϶hM& *Nm2&U/Q>uUj?)\4 !zsiq)ͽuW͖lԠC'PU:w׶6-Uiݽag^鍱Rҵ6q8E$kěz'nf5o)m~uNp:>۽=,b+q,k?fsS>:'}yi 7&2%xǚSmyZGo2i<\bpwsaM&4=$e?mhM/^tgs5̋8yg} wJlp5 R'$j?&Q?nqg2JR$7/ftWAj!U={کӗk.*2SrzIs/'L.ih88isr9_QXi;HEj3V`Yo[{Huvks]Gw҂@w{֞^j‘iWiv|?Rx? tJKs/: Ŋo|IӬ}$ ov>/C]㐕}rijQ%pXOR3h_;.cM_z9toZ JŽ„ػ_px}OjNgOggS@C4&b/[HU"w[>KA7uK߼WT8uߤʲps nzua\Qj@n\(P󳂣 (;(U0ZּUs<&g k,T3Ȑo ZkCH`xeOBd oki.j*{"mj ֚-=O/+:2`AtJma>27&FJ23`C"aO#s4}GrcT 8}U'= EHvMwEor:V-4o ;*T3ɊZ#/z4z<N6ӧ]A6ڞIQ˃tDt4Gȗ}ŕ+>~dhl}: }tq$GiT?U Nȩ Hgj9?ɞu|>e7GQ =%` 4ƍ?^nt%g)\myu(*m{obPξ]tFo}ط=cT\ 3ޏ_N[ )V rGAIĽh_+va%k'!w݃ ֆ1㓗hϘ췹.F|rnSu ;V[nH=r=4shjl֤KK G'jWeH޴|X$KrDލ7k@)GƬo7Ɲf]!8ycʹ6i4]=C'kcwurTDuq8@pGj7iE@3ׯ=nxkOut.^:m_u4z~9;2R WzzCptKޏfkWƯK5%[nJ`Sd\M(|n}(a[쾟GHcoO~6LT ֚W-KE#gz5M%![.Fۑ K^m͌? \A, %[?>zU"{OB֮;:R^Pj*@~ݪuVe>9件ʪIн2iسg31_й]Cf2(>jjL1MIY̺_ѕ@rwF=>u]HBo 3y} OHn/c^JKV(Ϻxyv2U GBW Ƀ:Wϻ1:U3'SAˊ*Skq4:uq:{=^~Zg (2q_5jEAQUeرkOWbP]zo_QE 2jF ^hT(ێ|ΕvsTABNV0_+r6""Ҫ0ҷ;'gB4v6Γ m8fy=MSgXkh/2rH]9t~BegؔN8w3.ѝ[c{A$la^*_M+n8]t_,#[m,U^]ѥ, =tlskr<񴯩z;R l7BnaL+/A?tX|/yz}>*9c SNώOL, 1"Og!5u,GQ볊il>3UE ӽ7B\|bTIEnl< k]#C2zx, ytܑ\[ .uk~W{>;->k׵2q7J&+>Ypܳ;^"!^M/ֽU?˼aʏ' *Åb8==v͏A7秅u$@).Uaq:-{:]:[nUR]q_\$8U*'snmxNZ3[MЕR(`k 5#v\mV(ߍ /INNoľWO^|FYvU%1:z4n%$ۥ8˻UWE eVMu5%ݮd]y+ߕ٠33}v'qJ2yve>eM#_؀.~;sS(l{f@Jrҭ(ůg'L,$.y( .8MDV 0p[g 7|3OxvS 9T9\C44`o,s^3_\N3vX+GvTX*|~Yj;Pns_j"4Qo8{]]+Tk#B7GqH袻ԂF۩Щ{ӚIGxtKeW.di4ѕh?Οq0UHv* PƔhtT m4iVB#/$1iuL"8{x?Żˌ_B#G+B-RsƜ-с@jCya{ P<ZZqJ hivE>gS] }Op~0̛û89|82Kq+ט03dPj9{EMuO=wݪ1[q's[={3] Wtd/Q3܍l1Wă",k|@& "3,EzblCRڃ$6Q! fE؊OX36W~1KKBuZxs}IUt!.C6kْy?|&"]Ks7]z = NMA!i܏'\d~Os}+\Ww(x7f6)oς* ]w 9+<7Tg3#ԓyy):49œ!ۡ)aiә^mV>^C<*Yche+ pm߈ZZ=c-.+ܓNl=O eܴ^8OWݮ+Sc_XIƈUVgw9^sWA9^JFa'z_1<!~X_q@6_9aI7vłޞ᎘OlnoVmeyddZkoU\̻Qt%7&+UYP|Bk1_ svb-8K !IyIR݃Feu'h@ҀXM<"y"$Ub󴫆qn#.jSe֪:.8]l42Lne9~e,ZGbaĞ-e'R8r0Ig s -h 7Eçz`!#%Ej.Ўew9<ޮ).TXtm(q(?b8k5DwU'쇦"KkԹcfUS~˳?϶.gʰS5)5HCj!gO2',0qajA9"ٷNs?Z Ԯ(MGׁZ*-]fGZzЅrTuPD6dկ-TJ( !/U#ȘQ~?R׳ C$̐NF 31#)P{.Vuj%5[A/F;Ʉ en:ՉrTe"ݔY) 6PLk5PBPe-!I6TzL:{]HU_ZzHQbRϺOQy`PN+ϱއRLanY0=Q?.k~{Ou]s;.̯@ǾwZcwaO4<.~.7mIDz 4 :qHMcQؿzS7X=@ZXf@A3r=ɓ6vbNT-Ӫo͑߉G#N\lw?D~B^綟{_Y.I?krAWA_yv:TV]:nNtK ?_/ۯURNK^^QAJsF;3^zp.,zejNRfeOB[JZM j-.HYeЮvjLS(G񙞫!zw\䨤r+ϦxgYdx{Ԩ<~:{BeYQ{:G#.Yl1֛M)H͉bc#Y_)FyEԒғ2_|DՓ8{1)|YPԭL2fCxotP+ޝ>JXtfTz$ 3>]Qk7S>':=C[|0Owu^iFu}n[x~z&V!](0WM*u5:*8U|Ԋc>kNl=zB0HnC䓲ɬ)rirZ}dClmY_΅k߾9ߧvC뺶Nvy%'_7;ilP㛘OggS@C4&ce>G;v[ဴ^I V?ۛ5Ė\nz:p8S\~$]pr콿/uWO*VpUUjg3E7wMy*E]R1$џطx-)^F4gn >$IC Q6[z v{s^qT@㯨8ѻ T=sIRPӑ‘w0Հ:@!zt;ߩ5*t=J&6ԧ)v/A*K:fuI5O!?䈛~+!YJtVjSj[Gv"9(GsؕxiTjʿ޻N|wT(Jҁ;u" "rj%3QfZI-Lhzq<|TI ^m)( <-5 {2$0TQ GA3-d MUjkgm v&Ʒϛì;H+wT]>=K>PRj=}3՟M_lU"y}l:u()o'%]= j{9 5m Q2LG5Lǥ#>RM}`I}ڎytZޛPf"|PM͏O\M q;ZoN{JD^Lu7O]!{||;lvV28psTC;E>wߗAO4[scj2;mShWݷN۹O#N6atyђPBUdznkKi҇[0}uqQT<Ȩӵ(ʸv_[n;BQżf֦SL:wPk]܃1{)F6>Ϙ-ٰvo՞4oS+{Θ=z5_+ WS:_pV>86-6#݅( c&^>z6%dƹ~JE}|pnH{L5jFD#j|\w0s\ogUŵH_+O~|e~fr36yXKrx5}_{-> UzԚܧo<@4._wU$Wm9QDŅP̢ͫ8vNKuX?f[.KU.eىKX5Xth:v59br/ aL4 w=mŵ"ݱ O_i-~;'TV K=ܙ]m<2ooӶBD`~+7]D? pNӻ#`AOƾJ)jW9B$Uxq$45Z?M%V=SxsʼnD^!dPtLó띜%5#^]\ /i" ͘^{#{~Fޏyo-2/׾sze5҄8"pV*R#NtʌTOD4)df#e²=WIv鬋IST {<āGNtɔ(_S(dHi NawoQOu[ؤ=4>YY#GrSj63Gnxk隻{nILz7p5ϵ5P1hptV_խY11!._<UFډ_NЭlK %SvɭE37\1#ځ= SE#l lkg8ps)7ޕhƗ~(+6~^O/dc$lir 'X<[Uo-6[%4' :yLp]9< xAO#Og J϶}auazv{w5^[W,}(aNFۄTk?gZA.oo"6Iƫs3ѧBy|l+Zpbc*Mܟ^irV5gz_lZb Ey]ѹg$30v%JVdF9nWCzL@h+UBA&|"va2*/qi+! pEO/6˦s*1O/ >]ZY"pu/צz`vM0lޯ@[,>JWT|@Re\_\O7)FcsbzOoXG3UfnI=m6|on>dlON##}_'Mպf2Uy4i6#$>6U{uSWv[=/\ y)F6Za6ycm£Qc3޶7-a)7] z- b35&2eVNR:{㺖s5[z'So+:/N֛rh=>"eAd˙f ϴ(ђ }0 ԅ*T4u;wdH/SN0%:Ndɕɢ,A]Y4WѨ[wك!BkG:INqM|9g:QL{'Zi:7TVݥc vڼ^LՑD:U4dwl5]/P.t֖&g#DòD ^0* C"5kS{uS~ܟϗ )P Bh֧J7Ǚ{&͉ !#~. ]QMUjP ( g(LGOA(x|<"K-|U6vճ?9"q.Niǔ@xNdP[ Rl||ΎxڢH'{R\p~Hg,{;J7sxTf9kcS@wo6힃]>ykaϭiR^A[܇?*MpBgv+CoE6FdpN {=tz{DQOq:wXh+UԋĮ~qv.v{T+ }]X{F{?W$bqp):dݳ[/ /tIuσ|Qn9Aa3͗ՑDT#X5&t6}(Ntԟ! ";UX y";M8:IhZ)O]31Gw.8I S(׺̑3w9Bt[6Vsbؙ ~scE2_ݓ6JOezHs)_JuS~9e~bIOe"\4ND!]4?:K&[f]ݶfpN@篍˻3^3-ķ|7y.Vlol@3,|6YA~~ʈp3$8TbC[ c48ɔΕx U0mU02H0[T/ip./Tu<C^JԻB;QAu+2"0#81'MKj_>Z~GJ䕁LT#z)qAݐgHR}?fH(ԹSIBz%|̕|̟E6ٝH1 1|lяߟOq1jtOkXQڵuף[H\9V̨WQquv@Xڼ˻QtS~}|h +-BIѲx@2Z+U#:JR<ԦLX GGrJ]O7v$.{ZxjϽ,"#5o-2i>q SԌr]/jfGY3ȎC^ZHAǤvTjA)${M35ɩ3-ulYpB1-DAS~ @DD"*HI"KzY_(+WA> ezÏC'{{buL8e ټi:W /tb4,[$plg"a?.q&ّNܝS=xR~T#q8Q!gW`!eGoGnX uYåbr>J a=k)^w.]n21{nMS66?)x@߱"*X65j5p6o168G۫[@gQ^ k w6rK^')Dit?S]_fw}g+Lr1Q/CٹXuP2jϩ^n_*Ɇ7'%8{:iu+յS;5Nv$d213Nu|4$(nB`q~{s. zb,o s"(=sQ;-Ĥz0^bNm?K8/^^*;OqUItpQ3P9'>cII/uI*+U%zf|o?CgSkTV23V)WutVgEj|y]*gm=hO#/ѵ̮ ! utk}UY pW4霢 < 52;YA EzZhݝ2A)l+ԝSET_[eS.'HALFvtS!*Ԉ8ZQ@jJ={VyI:U.zJ UkR9Y9d 5['=ϣ"_;4RJHXeA+8.CNF4UQm"CS'G۩P!h7OC#zʸAщ% B jY&.ʤObR0`¦ŠX`urh.{xC?NMۙtwxt )cuaf 3=99$Rڮ kzN.+i;/ĦMٲn,^<Ͱm~q̕InjzvfyeX\^$Xs8ip ċK%پz)_H'wB0\A*jOqݘqy5)׏S{[1Bh%3|g#9 "y@xgi2vRD'v[îby&k陉j*M.Y* v Px?B !,'ih8{OrԁGb{ÕATbő Пq1<9٘[zq^组tXXGɃ|(k&c8WtnGoMr[I{ ~%dFۄUQ%8]nso8]W}r'}󷛢Fak\s1P +4_-zH~{}TjҬjÏ̹r1Z=Z'ٓc[p H<صYW[dzpQ̷̎٧J0Xnx eqEoX8_mr/Ӵ;9cn]qr_m:Y}2{EKҦu岟8'i| *ZBWfn]tnnv=w/vP[Q.4\ti|la` psph`ZN0;>[ׅAbr  S7oQC[• v/6-)2pnn/AttT:ե|zaL4em6,s';N<9\a9,oisW&'eȱ'WgA3i WAgKbN: qӤnDm'4q5aE dYuj qV)ث _h$P=25f-kkmֺt9+ ଝzg^T,$5R w}vRU*"Gg@qyx>Xsg>SLWkDSpjj:=Q+ԡRl,p 8hS'GרUsmNݕ;4;%3='eP:2\ъKOT S0@53QHpHS=bM`Y?~u> (:;8,?1fz}J5HaK1|],]s^~ΣxҘ5MM}%+)."yO\!omB$5"T^&xx0*퓐~oVH%d*poS=gAZw^^VRR涨o&yuVx(q| N{乍 }xƺϹ1WHJ%{܉n)#@Njӗ2'].W4J2++D=9|Ka7.]e/$,+!Kr]+LhS>L –jwnˏ\n*V޴֧URhXU_,Cx5> ѷL޻U0O G"m2NI -cj$ ~/(DuJURp舙WW`S2OPp9c=wQQMn51F4$YeMEeoSq|Q{lo>8bsgܭa5߱&lrfP44 mU6^>[sk/4s B|(h#>[\U1w#Mv2XFZct7)S.DR3Fݫ2ub8Ig}?~_NrHWR %e:?!SQUב/B$ErSN::>YS*w'td4֧o4IrIpG& TѠ!w"&:܈ڙ29$Gz[SJ53~ʚ)dHz*YdhEvCT*UERs !"GUhQȬ31dl~>NOTT^RSvй~&Y̦̿hŜ5bq(pE MqF!ǣu#!):-yOJLR"vUk`  raf3u,E߈tauw^LJ~G4aO{qs)M8 m~9'RO^b ds;w&7d[ '1~ϴM{ӰO$|zt _qwesjM{1+'Mѫ[At읷 ~} Gҕ}{QW<%SOh J>mqӯ޾5U{ӈ>nIA!MJ~0e!9 & >K=c= pCB}s__q{\ՕOKx#'SX^0^*wf&(욥$YMÖΩ΍≸6R}w35(sf#+Ll)&r(l}2iqsl|ppu$ܢ=讇4'If.MFezXÿ􊉺޽^ݗ4DP-8^g ScM+< Kݧ[$+5s/'ZCoca9Fs\Y,ϳiGw;!Dڮ;q&A\rZk9O"Ѹ72_G]a8ݷFZ5GAu$W=t]yG*¢U"N>*3՟+oMkȒ*3!#DIWo9ٶ[E7)a|6H納cបyOC ^[{-S[e/#w|Y+hUQ#T,7u>&Z"7(bԞ( NSO]xE5iUF6OyO#\rts9ʺZ%$zqBB3>h珨 ((:5^gT ph{ |DKVpjc"hsB%gjP j?TuHJܑ% >f$h*9 ˣ2wJNQ "AF_f)S&CQ{B<(nq̵SATpxmP ء$ ԪvA{^}I 5l44-X8r÷jW#fBŘ^l~݃g~i_0+w5D:Q&HN]V0Gy_\Lj?=n9HۿEJ5s" ^@_ {;V9tl%8HN+u6\oq(e,6I=gwݼTzq vhr?JJ :ל2Ld=,wW*.x"X/sBqK-þ@7Uc_Ɯc'.@:g#DC;(C=6R2~~"z r (8_.x{S䛩G=p\UlW^7 S X85O}Wnc~gcӽ;nwvA?Er;&FʊW9#J_*d|hSuS `GWdlMP֦0q5w;j66W oo aFj#8Oۜ?6;xil7 Q*\/u~R~utm7AI}sx+hyo֐]@?'g>d179MI.){ڜ[l_>_2 V3l]Hwa3y_ ^îI~ږկ @*9,8dr&HOggS@C4&e:t%^[[' psfk Ap1_PUeV^8 B/W[]21qKrmB^nѻ\|4i' [hZ}s7 A3[|+|?_WM6QhIH uj]G̎c(6kY]1ɧ[EolߣLH~2ή]>=SD}F{`}|9 2kt9K9Z!lܴ8=,;3BUo@3CMD[YR ڙmGù?2#7U|ΩYR?p/bfV]?0h,] ky❨n&Wb5UO3\q\o mQK؜)gڏҶ~B&㹛 I2^okܮD(N%ވJ,J?W:Yd&[T2!|0G7o7ܛS)(?q;p˅MiyG^[z vRq=\7Pܻ$<ߥp$Q9]< TCŞo6/货1ZiA Q$2KesfɘO{%Eҙ;EOGϗvGO9D +q{^ni?~,e=~L]& iHs-v{?-*6q5'IfSot2A8 :6= ( ^텲'm^!4ELi2^KCg2\†^V8@A/ POíp]ҨW)d@ EJGMg +;g֨N>Guꩠ ϧ~1)3[Fn<#q]3E$YCnjW9*\Ԏ5${νO}0#\CBXN]H<Ϯ{~eoj խY fP1/;ĕPC3IZ؏)%|Q#!Z}NֿkVs ETqN6A&YjUY{ D%5["S%C=Wgȹf*Dhe92! ;RήE ,CN.v51S]*'IQ3kO5Ύ'#&5'w܏Ql=)f0.t+di~ II\^cL 1=z^&5/,.9v=Ś0d +vU7`5ʺ,pH,KzGXK<94auDn{,MkPn=a1(8mg)ª7(N4,5ƞukءo6zQW5;la+wa'imS/Ѯׅ:;>\m>AWU܎ 魠lz -MG M{ W74Ou -^{kܻũR*2?)>?HЋ<0OEhN{JB7BzUnk.1Ƈ&Ox.'m=|nE{{ a:Iw/Νl[sf ]T_1EkGts;uq.Z~u5Œ+ѬҥdPh f9z>UN~s-< B[4醘5=w;)NR SƓ{C74\/h;ND;\SڇBJW="ֹv?Ց.XӎY MOgI_(JI ǍcEHH…LیnzG!lvl8(m:MܛRq}G=]>%U8yo v{ua$+4pc|򽴐:_=#QdS 5;*Mԗ"ʘsql11&^ݽ#-<n+bkY}_].EkOef՛JrһB@#փyyW\ \ |(pť hq&ǨUvtܾ7B*1&K]u. Cnڢ˼lZd^6*_TG56 l gI[P'۝sM­p~7fFvowyYT `]o_g7iߧ<WK|{"BQ޹#r`/OlE/ 3wIsпͷ[:D:.Ve_H1].䍇OPnYg:ͽ]JZ~ܯu:s8k3iNJ#-kjLX|5꒺G%esz5# m@'TVjOLRv}=8Au7XB`pW$t]qSqb~U~3ϫ>0߷F/Zbɶ{z-E=[Y-\i-lDi23X;t?H4äk0|+/ުu oR*F>` v)F6l*\ZyQ*r-,{ot8O6/Wg;%.7rx8">5K/8SeM6'>k\i ?_iQafw}(Cm\_dս<^hU;*+Ii58IO&3yViZ/.5SNԍ?42ܽ*r@Jdj>H hR rPhtw(B8]@ ;:sWDJ"k&FG4'}a#Mp*9+pN0x:3dTD. Sxy3ykl&Ӈs^y6FPk_#e_O?5ּgD|cʿ: 2MgϦ;H$eHO}L̊RM&{saJbFmQiVUD /am2_"7#^Z~&ctdhՖxpֆ|zw$Hf5kZy%8}lȑn+n59_?(-^`çrXNv:"Xn/}wyJ$n?/͔ ۦZ>MJ5/60\{eƙ>Nz*b"4 Fs3_R卑2\'mQ;4s+bwS zff(e~#JEƲW P` [o fs-u,΀x`4BЩsBGÏECMh.:|>dп!v75R~mtnMިc]wHO:u(%LP)!ty=c?˛Xk^ck0=s95-Ĭ]W\(YW|d Gʌb3#CkJ?<ͬK{T&gu-\]H^kġQ#\RHK_HTNԞwnA Z |~?]Ɍ]ʔ;n[?nQLkr*xa]هBlBQps5؈P)xE!6Gү{7:;ȥV~ r0{޴C";?}_'}bqmeմe?k%Z d./:*|9DzT&-dvf91|S͚/S"JǼ+^8uꋦ֖$kY"ւ ܏ZkHWqfz<]B̲ѵf MNgy|8ܩ: N:<ՉRHIJ֣U+#[۞?^rX膦Ex-.h%Ldygqg=un)&E2d׏~ P霯 xQ`*dOwTxmcw~zTΤN$m9?;TITh??'<'a$#j N '5 T+Jv/tGy%}_RL.όm8A$$B'~@00FF* #2&MT\J&Ļg3,x #scG{-{Wk%PCm3X II{;{A8n'E&`VNԢipsrE|yrJk94z8j]v[ -݂W K\s ;kʹ &>xbCqq^۷莪UL/˭/sxΔ5AtD^s~,ϗz>,,.#RŢ_X+'VfNXT~pF߲BW*_'֝p9_<.4m8Vq$}-qxUVUi(9XHNGVvu>?Pyz8F3fX^j-6M:{ysLEg.{2W7k`"T?|_%҆|0eH'? w!2ll=:/}/c=3~񖂼V O^ls1^k xC_@']#_NXKl YGy1e~4I\V'EyӬ#5q-&1uq*߼)Z^W֦|*d~ۗncÆig g[-H6ښ]-{a0Pݤ jh!H0}v1pkܫVtqP)(CdMu]B 8CCS]z]]i5>0)E]jjLYk9=f?ЕYy,$ta|TNԩ5k%38sHKH~3:p@ 5|h85:%dUjX[fSJ-}Dǔs9Ʌ y5H4CݬdH7zbZJC㨝Rf9&JC}HBBF%ɝڍ2rTj }tK)8JoS*6iG@_.blS1z{oX9GfzI"/6rzᯢR" ^MugRo̜wj06j`M&^ rTv%*fM|YIW-#W3#$ i9Mkaž3|܁_,jsokHD~jb; vQ:)*Iӳ5{>]ɧ"|0.Ӻ>nj nr}۽Mbϑ7Vþxݸou+i\wO4\`et֫-1_bzl@%PC 20=^C&nG~Y(x寳yYp1ylkLk樦01̱l.xT~e݀Pt18\`/ .KQuDgc%-xa'Wϲ!h_ ~o-)/Β]L4*5 &p()(Co_|= AՋ~(mp!Cdm9 Otx@^ZۛC/'E4c~2G͞xRܝXqZfYnY9;՜ &sީ=M:ukWE:ܣrz:]vunTk|c`Ng4ٰO .Kv4D'/ZtRN0/R~Hpa{@Sis7ރCMD֩wJlšaO=QrЗPC)Nָ-fA>)KWrlM L-R0dY]Ԛl;`*zAN}S\oʚsL-c>\:b}J~ v C͘qD r9[F;4c;[_N0#~񋬾ոfusvm|YGuɺZS]vzRbfmКį/d7{FnP}M!Ȯm6 N@#{)ýgzxbzS{B=r-D*8@bޖck8RVX0)qrM_*WӆIwZWփW} 0-*d4n32Z/{#9[ Q$ĩ່xRv Y<%PZ(mʶS=2Kk+UV|I1Og>NAdTqsԒ4Jk!4 ( 5vI:8mBwwaq1{-z` \cj "6;>EL6[3? F+ *FDuwhP(|>رBj~O>O%p4Tj2;̲o1:!tnPעcP(UY$[RUYE+UoIEEwsԃ֩뒮ǜ]Vh9jtK/j:L Mej"+uf_Y0D~k_R G>UHG}ՆC^}%*iΝ qzL:PSr{OR|uqDI2eQ!ST;{BzT%2W fԹ O* Q5DF3QC4g(%mj&6-ǹXwS7m.{ G?fpNfp/87وT[\TAGÇek ֊Ԫq ڕ#DQ9)d&=YdC|UxWϹQLHchf';pRbǟ}>ކanK*J>;1/^8e[{Z-4XE~*s5-ճ^;`{/&_k~TzڅpgYϖ/v; =?$պ5ϟ=uq'ڷDmƙ4>~{i@KfJu]tf/_UCSjԉ#zĀFF}'n|7zRws>wzk oYˍɫ[a3IXVnֱ:ƦOJodueZEnmmePNrNLM ҘcQCs:M<ǶY blux*.*B͊FQ-‚qNINqlZzQ5ώ[3GaAw[-8|HDVN틴&LȤϙzxclsDyM,H)5ka7rA6c٪7Y̹w*Meeq˪̻t%_8?zvOj}{}23b fC*F66[EyEԈ_l\ /"S wVKDP8%7Unun ؙz +j@㨓'RFw=9 e9eGRRXeN'D J\/)|Ҭz&Y/TԀNę'֩#)Dp ԇÑ- hӅ N-\ȌEɩ"t9eUo*J^cґnNQTkE*gZ SΉyx,:kP5c9$ΝoEW2F,U>AtL)H:WS,y ?EuT hP$"*KxTX hWcKA8>rn=EH uХǿNvESH-/>;P3'~EsOy`ԹHB$C3&K [Uo?'}Б93{2cxҪa;iF 5(cuIuw_Wև/0I=%)X9j.tWcǂ`yM.|ܚ)e\-YϠmeU"_{v~h!/݋4;ka-stdK/^t9I6TNzݻM .<f"zeW:rZ"-_J%OI|G=:F&|zb?U6fHkQޜ <قzoae,N1ͽG/ӴqAu{'lD5>6fT=Rn;3i%eN EBIKܨfyP>8MIٟzs܎4P;f{]$.rL K\̅`oj's> U$~(7xnUԙ%O\h:\NgzY#XPM *tLҲNNhM~vooƞ9kX`ȿS57Yu-\~6u"JS߃gB? CgYM]up될wՆzF R!)hA Jv̱z?&B>Pz.~4d?^.q0r<)yO?*[L K<@]~~ㅋ;]=WESEz)d"2N7&* liuU:i?/.>7ydyN'TZϪ%mן+$ƫ2wu/Nkࢺd;+\K/TPA SR=Zȧِ'c_*˜hFs}L(;ͻȈ)O:G~n;臎9VK-\,a{\IOggS@C4&hĪ -3*/~6k@f1s&a1[8!A5(X?ʫ)Ն>a _>TRA|o]*U):i5tJɬS,Dht=g-A(ŭ2xc֘xݲxKFRAv3gQ[cMG =7Skg=1ӚwŹ{Gu!ɤܔK}lr&UBZJ>w@ȓa#aOyѲ9E9i jMTDawwZ4w =ϓ5WޫcM~?{E|;\`gV8"=Ȱ~iWpv*IZdlM8,o3%>+t|D*P~V;?p DrPibPtdZd SeBQkF ]gӇ t&?ы&:joGZ[/H__9lƃVA$; @ 7-\02#x=Al7O38~ɏu* $̭Th;w ,ƶr1'פx[6K=ńSmg'4kf*<͓R1+!L}7r'BD gv(gr7v 5"Gkn=Ep{c8Uy?}.ʑ˄y'2^迆glt J1;a"l!{r~ЕO?f?UVGkLeޞD᧌"hX>4?s)VR'Fk\a?ZH[ B}!2cʵĘ^XooUi>K^_['Hn˥jH^Xvz Gސ,7H n;.![K,)Qz]`hG-2_ɵlM)}QOᯫwʙG֭|xkUD;Zrv;nxy<[i◿ /aҳw: }6;Lox?f/ECaA;ix84i1޾~_t-}$̆*lZb8К^_M6["Ye)3c"IwZi)B<ֆJzn7OnH*9?m^VtdݼBk4е':N?=KJ85w:wJBggsG3$ZpxH]\*̢afsKnQ(?z2r .i_I|t=$#PUx «Նw &Ajѹa&el }NK/q~C}_`Pff*Cdx5DTD-if'Q{m|޻F/ai_LPQM^1gέkk G{ؽSX{7\OQȳAr̘np?[sr}}~$:Ҳp]$j|هD;M< <6({ch!Q-1vmvmU\fXVQm< c^JT`^^6}:PlVs^\{Q*p^[DqoOvTZ.i8NC\MMN:XLw!)9QAEI!ՓlZN"Hj>U*'"fA #{Zi|Jy^&L!]髑 Q#uR:#*KSҹ?Z#5!*tvKSA'E IHUE2; {]*ԯtg8yQkWѬ<"D*AHT2)~]]=R*(N\q t/MUM{Uh3ECGJֽh"8g:,w-P@2XyQDΙA 97䍁,bR%TCDo4:D;]⒘kB<>1t;dͲ-y1uJhIR.sض~&Oy4/eOѤ/6}@2r6-,eHzR6|SoKCRt]W`&_m֦hWd"^םJ/YOzkz꜃e]8C_SJjԣ/ o|B։пrYov)+g5Kh_.W4+xs d2~xu=wXB+fۮ|I| Xlj׸Lg0 r.Ezf8s)e(W g(S$(&0KlQSi(x@[;2J r14VfGզ{' %Bq`淬q;^Ro/?v*u 쁵]6̍YEnndpρ1#)Y61ޡ[mjd!Xz=y>>vbz[k sk65abf~;,*cQS tM)'TmϜÔyLu$}6)1\U/bz5{] ?@G/ܻ5s^(Rk<5G>4&!ƞvnl ‹Bss:y2%l~x)#Ěz~^쥼=;])qaOoc ZXxJq{1R&F 6"s6ښؾǖҰfe̛r߶=q/d{̠BϹsr]fL6;-Ve|łV[24{i^wxnRM771[4;v;)ü~4ʁJc('瘌޲|@TtJQ[eZgGX0 9r9~*U9qhQkxQu=ڔ5)..]5kjM٪'U+wp!(ZDX[膨fBT8Z{/KUIgnY^;FVfS*Bu2Wό8 R$zс%U.<:ޝ53L0gDL⼾J]&CtDtH ਴䃪QEk$螳vBR )` _1g6KR+٤B%,qprzT*qjUhѽZ"Zq.vy'ȱ b pq)@+ +G FrݲK4lQG 8DLCE̛G<"2_t5w=H]mQrFBsб d<'JɕjW`,4HJ= [J/hhW4ZwK]<2yԷc,&(fN25Zb,RW7x[Cw.CZqw`j׏zZ7n\APL/Վ8Tf6G?$*Xf;#uz<&IzK^U|!Eso'W=kOpGCtYcK-0yҟ՞.Yo^"dpFuoz.*c'6*~w;^rpvAv|:^q7-1>:s0~^Ln~OJoTsL%O]gOqˀl洮p>*y~+u{YI Gn'zZ\<'-jw19$ 8ASN ~yИm->[Χ:xش.0h{:qmP"@.^ &ĔP B}Ul NhOJP!yӒE%u>4'LZ ?]?<:ĩ{ov!=K>k>ِpmBԊ̚#D>ޖ_-~-l'G ,w;/VOfp%<8U;l&nƻ86#wz}iktLDvXJR6P;׽d6pݎgZѕeo~vKjKjF?Ɓw}U<,2E|[ZN`6?4s[Wi׎bAvJnh+b2 ;5,ROggS@"C4&i`ݙE7D=6[Q0/=lfw>, 3foEź (TSЧx lkyHQn/q{p$VuZQy=)u($7슓_J}q>km™5R*/[}<腫Y[KzǤk2dk:'{vu"@-e=0h<#ڟͥMbdԪDEGW鏁TP5+sBP[;-߳j+]RhL%UԖڪ*#w#3KOuF)dȺDKRu0|ќr( d99D{+MzI(GgYIW C8SMV:sUƮY8g fP#ĩqh2ygvI\[> y߿g=Y/ǎR3[^]w@!DEb&4{> ?fQ[oGnozyfJX8Y?"3c)Ww˦ɘ#D1H^=}[闲#fvG^T}4 ;fd. i&<_Lҗ8 yIO^NU#(k}w/XN^[ۮÍiɷI&U.?j6ۆ]R{XQݵj/w}`mXJYhIŭU&gAۉj Y]NM;_z PэTs=NڕaP,ާ*,Uzw噯ʞd \%y愐d~HS,IfrAjSkMf)"t>FRsHdv:wvvD沟ك>kܫsJv3ֹ%U ,jWzt޸>>RZ>.JS8:j?ͥsjf3UtJIGBMUTkwtQɢ,tĜH0z"Y;p=jWP63&đ4Y1O|iE$0'kPP#AkU@Kɽ/Bdj S\ސ헏} 6qBL Bnj@qd }P"򢐳.Qi]ոDZQbdrt]cT#9)x);5 {s6m#֒}4ܗ(Vr`KƼs'[G5(/96Z@|hRm/9wxp3-+jͱ?' G GWFR}[1l@@^h.Fnqe J|g_{HxDn9Wa]G>Lz[bE|,j}/zzmU\;<5j;jV+;~b][Y~{,ܥ)].9Sa1ᷗJ_(JJ0gej %Cp_eWFimMgzHpxʶl}:H+X V(Hn-Ծn|1s>ŅڮP;Khj{aJ/cjRnḵNͮ{OMcC,GVmO nB[uU]H aM=O9MΗզ'qK#xk?V:(ylUT#^UQ)Z{Y[T9jFFw f:x?^\]JT.=Uc1Zs Iwk7M ==^# ⤶9ӭz|߰^dHP?= ۛ!< <x>ƛnlk\C[l: IEҴ||򺯜q1ʍ1~I~^BzĽ_ (&@HseovDS܀j^dkf?GMH߽|`ȜZи/fwz>HB%!Y榦΀!f5{f;_l_qQ)洷t'W|f[MSW~ 3ŕNjw=/`k`34_=54o2G2A7#+ N 8w.(-sTa">~uҩ0d=8%P~Q8KOvɯnO9Y'뺔xWU-z3s_ϴTl>~//yg9A{ryYin1q.e.\'RjDbe*KGZw uRw,1wNo"|8TT͇uVV?m3>$⢵;UO&e#By^" Y*X3ϱ<nS6LV-?gL|]WJMw#r4S[+߅E"ȳ5+ K:M7w]|Юv[Xȼ W[i1&ʃk _tg~~-!y^£8䟄 x)mb &U#Y ni !eiʨ$*#EL82ڬvyom76U3Cn<| FC!w@džQa9g~6k]0yY~e1Z"F}1vhY>C~P{B:At'@ 4$z߿N?:B*v|-ғ8P\r-JՐ̧s=IoMJCui$ה ʃw}wzHķn?PS.u hNSdyUk\.Mބ#_o8ϣlqUo>[N$hK݋_f>^7D 3ߤ_h/`$5Q,U E5Is9 glJ+1'3OK]E= F=s|io[ɬ[ا/]rOQqo##1{S3] k:.aĦwzs0u $Dugz_[ERI >6[p) *pv 1ò}EXÚz:FQG⧓dz˟<X-[j6|K5M*zJW/u✻֩e'za!(,]n#fY{̼CU+-T~V4{s˕eR9qRuo=OwFϷU{䭬]QAV7̿tqP}DnM@߯4=c|=i`.!=ڌVyO\ X1eGm~XSoZ4~W,~/A8{F:i=(#Gښcay{.45'Ɩi|ʢUpj׺kw҃dy`gTbBQ,; \x&OggS@2C4&j"&~-2+*6;I0/6[2`N*c`֍(d~+N:Dو*)q`5)ZZR>#*C݊K&]H#ڹ/-r]37FLKuiUr^4tIե {5#Bl9{!S?'/@$UBk $~g=T*qhw㗈;ZQ~g8 '&Oskըu} Z%x2\TZ_bMNVRU ' F~[ TMGOWDyͧ2@**gA!,T3`Xթ1Uv*](]w*$DTP9Z!=R+" MPa\kjKZPN%f]jzD3z'#R BkSDojn]bGţէ{r>=ԾtiM{4ٿ~R[J~P&&+JdHHjlrq`?H=・»CNʑIx0H(d܃idΓ/xKKj }OMuKCR߫rd2ͳN׋5v"sЅ+ELM V-sW{N}vGgx;~*\DFDŽ_y)΍i8`O=tOOjc IS5JgUS,͹x\٣r(ufH53zmxś?lRI>j"5GŎ]``Nw?IƘJYZZ=]wzk]ݫ<6WZUQP[W{$MJ[Bnf tށ:>Q5IIzXp~U觷4ŗ[=|-~T@k|5ayiy]|ֈŁ~X}K02~-&W8'`Ywɺg^{N%M{4:[Yuunkv]EI V._)ʲ^ʟvʉ5(K9 3Rq|ry<6+5Z70H'`¼I2&n$ 'S5I+|*o'Q{e[B F;`Nk&}c1Y 00F%Ue L1]~fOh7>hꅬǫ!8*Z*3+[P\x59bIJIZt]kL]>)<kKStC_wȋ\PߑGFgQ.Fky>pUY"̜):~9_=84D-K(RYG*'*{T˾C sxgV 4 5QLPcZn{uTAysT;Ju]w~tKGh-Ot.jstkjJ ^VDYol5܅֬5gR:S$YF!!ڢq?ߥ|靓~؟-JF5#ҵTCdsgT3WDE2[@v]\n,/bkdJ,qӐѮ>dN@ pJsC30Dmoj @ Ump'X/zOC˭g{!Yz[>>?=X/;gImv/5wcN{k"TG+q&%󐜽6N=NYz~6,w!Oc򡕦妷poFft]kz.qbôECxANozFϱf!1T7_sǺ$Ax[8\: mTQq"%]0J I%FTm"g 孝NDTC^͆{pW#1ƿ,w|=2G#]Ǘa Vdި7N(!|9#jF)>JV )*.ivoKM>^ MFkO3[h?h-Mc?Vtr>KO0>ޕrԽ ;~JHf}kLӣݺSϸ lض"4J+L\ԮZWS\r%at#̈H\TQLG|E|G#'LjW*zi65q|ėSL$3dzMMqx\3RBT]{sk:B(r¥m6 o+;g۳{{G;^-F/45}9T4Vܷ`w ?]qJImѨK T=qb[Y]eÛq¦Ivu]XV ۊ?REIy(~Vr3wL2fMM]Sр}09v`yp,2!n)({ynk?qjT(\5LinYV":#Hbv6 mgYWQH%PB2>f3C y~v B$),h?CqsΉ;Qh3*fD3Y].꒔刌Qh_kWFԔ&NVv?Dur)SDxjSKrG6Qd+}OUz c>َu]XN7۝&:S[w M6Lo(Nl![\jT.Q&nČx/|\^ipZ׵9ߧU_JOGDZ=^,bT.7V)7H]\cZ`6ӹ"\t-ɳ_\t)OTEd:TMXS\}#|Bmt8 %͢yS:Qab\7JND{fEAfTٝ_s!LqPw_ݘmt.JxkBC`Vekys]I f'Z+v-cn(Mg#Oο 3'(6q},58'7%&!>_P;[dH!/!Hf;8O6ڄ*׹(aiKAXH/؜R=>#o\ G?[Gw-|zv~ѪoErZ9Ád, S^\\>٣oeaW8;5?fU?rW&\4Ȭ1#$_vvqM?M.V-'m:q2Hy?5sD^#η~xwm8k65F';B!(f^{ZwOggS@BC4&kȝ%+V[2 {l6| Fۡ'h BՇLgmGR=bb&Т袛܄'^EMWf$cf$ %ӆcdy^x.Y!'z2sZ\NDAq7ư{im{Uciuȗm~2@j]8i7-77zn8Q=\utn7W=}>cʴaU[a-Ű t?%Émkc>c~GGutqf?avpP{fH2d)%fp ѴaU,awoW(G93~izG}W⣋X#S~גݳ 9Npݓu`7jRsGMD* O|$wuT-^Ӵ~~UcO?>(}]]0tCz%WTF.XG$]K'8  +秡%F\cH>\¶|fkQe4dwԲk=u;9b?w+}:., S9< kb;w#$&S+5`vgx}moqZ=?&3%f@^I.(q܉p)kX!9t)vЍip w%MDi坘6E=;K8,RB9lvYK`֝=ٽs翊αzݻRg9mǚ-iR 3s/Kצ.XP8Q 5x9`{_pؙl06ubae5݃vVs?bٜY1}4S,6)4@G?>-;_(^8GM=BjJܧǔ:EWh(ByAݹj̮ll̥!?=uaDmz8GQJ>] {ݥ~so=x]?ګFNn8] B~!|ϗ8Dӏ:-k@SXR/B'馋 oP ԏ5݇pL"}&m's!I]BT|fľOL] |Z4fE#-H.:}fqL@=GfuUNݙX4vNUN]).X;-2]ߤPlVXQc>s[)^nm^RYv G- qLw<$wut+Z5.M]v|zk(ia:+lf,Y8)]o$Uv >>V[Mz6󓠅cv*nk`U{@DBP)֗{~?O-Hn?}tpjˑ3U?Xx N_q^z.GJ꠭ΚT9?ڙA49SB?)̜r~@uB^G֚Om$:g.Y,Zs׉辢iMǛ׹ԚOI"9ɣe7ԫsdMhX,Vq&ދ菟sǡv8\NVEVE3'Gpݪ(.} \5t3gϕ*8=6$K~&RsrS2hv& sPI΀j\@xjr(:"tO8;UHpE+T=2˜/i9!P>"}DA)\SD>SI <Tl5:ԋԯ^Kz48r8wcO5jbۢkXf$*&0"AAa4vBy=^jI]yOs>#?o,X#*:trӎ^?NE#9{w*c77+5o mRbS&o#V3-ŃLD^KV)sa;z4$Ƒe)Ͻ9;_JqߠiʥD.0z/[" Ļ@ d%B:'1L)˵p]cM˖wc^?FԞ3|]#b؝hm~ܹ}i,D[ [ڬAGuy͂NN9;/{:oqnKQG”]FW,u,^wpz7ǷQSݻ$)W 5٫]W]4[f+.ڕg5 )I7ڄ%N%V3?&fc&yok!`/fCBt>CD 9 ".\[c>鮳$!sDK4}n:LDDFCKGsżQ~˭69qSz59BIYW՟_ Rߞ 5tj.tԾEslUugI==kwW!ժk4=Q%ALGZᎴd3Tw*72kf)TV9"+rjԩH\\ j菐2;UXu mfr֔`%kْ?S+oX3uu HP3b9BG{"'*4$4ddZ#W)zPD$gW$}D>$ TZ5EJ>һa "'G{/%~T"*lMY 8G'i4]}JWrEW9s  pJr&nlrjK-J) Yhk ] .>:x+&o_׌M vԊ9qs׿8Kj%P_NP9UOqѭм_'`o[uT>yWo#x_F?TM9`5{E&BrᎲy6vއ/$:=ܠa[>! Mn)/bpL#6=IGSIٶԻY&JdjKN#zomq\GgA"&V;29?#^LVuȃN($׍E͚)ߏ~Hܬyq'ݯ65%"!uLpO{j"6NFЎq~XrϩD ˜|.k\0HEo-uQUĭzYlaq D6hQc3jO_wq32q,\ُwJF=:hE~pg\.q[sۙ隫N}i7N$DdwSUYeS"hdqtAOܹ7STje׏dd&R*Y\"vґDă8H՞\GO$Я3]%%jdPU IZ'AWQLI;}yLw|KIJoV6S ]`if}EafWN-HW#ܪQ:;3s`Er'ɦ#%uRgP3=[zz`";_`Qêշp|ẑ|5UFw=x)qP! ratK.hhY %zKNm(՜L'[t9ŷ9LtFngS 4fL~i'@'bU\E2$?Zo9%Ν~@k &Ru sY{;w? MvrG!QZuZ4\߄RT Z_n]pR3914Z[M i6.a[3V<1 9U\coco,LG88 Mx 5RgWtٺf?R*o?"O g>Af?ۭtZ*騠Omw]}[)*e%$_Y\]}{W쀨#}L*#udDXJ_B7PzFwk!:'($AJS%U yBKuPS ga"dw+]CJ>2اvצZ jwRË|d}e  {ƑZE$U"=kC]>h*tU&ID{_:#wrt~ԙ~՞x;ȬTt{1>I"rw I:wESkD8 N H%±1!QY#!9RJfrbHx ;MCx(ӳtޙtp [iYA")uKjOB|;6}W4F@nJV?r`;Nn5q`0᧨u}Գ';clZȪP|S?NH6JX/TdUef׎Ȅ.L:ѳ{򈙐5ja|Kʦ\V^lAW]B<%t1Eƿԫ] 3yʬy4xs>Aw?Q2~e,Gw72AVnLs"0i6v\K5MX:6/vetc}!! 2(?mma>}qnec6v8F֮L?`lvmnY,HtXW=:܍kAu?S<(DX<\^ = IV12#u)5:vZ-#~~r?}a,9wӳ_awB jsSqkܝ.Zs,v{E= xcm:EMu|\3zh 4WI4z_rf~QIQno,u9|WoͣްfD] v,>{>M}ǚbW ];N*4'L.6#9wYڀܱ:UtC\kڵ(T*k =Gz}y8;o,^Zc.N0мPXZOQ4Ij @VV;Nik龠Cm|TnL&۳?^ESA򜜠"u&FꟹfY(ٳ~40ΐ8q!K5HZadvY5EЧ*5SL"}JuNRkH(C2CU B)&B[HBHz9"N19$*s\nS_Zhhpz2U"T8֙O^dSۡ {ܾ>3|>r<͟qAkGv:[3@pJr"&ˆd% ]Z&KTtsXa.\F˥˳D6X5vߙʔHE5^gbkx(:h& s/m6ÓrE|'%9Eyq+5nm=³D"?}\n4Qݟ>^_:YZ_NMNͥq!.}mcXqFj1.غxs*5F}^.lw sEOLˢ>/ R25GW* C2cT={>꺗`ږ"|1~O*]4ߕ"uIeAW/xNqqꆻW~lF^Ťv]C_GWm$%Dݬ;@6¢9W-U`azk-U!$q_XX8Ǝ{=>U"oC}9+'%u Aȩbp?/&MW榾F=KBB^aU+}u6 u;l+1"n5Oo*c!d6鱬ٴyk9ƻI {=ԩHOC\4T㿻{l0'x6pOg,LNv!>;v]f\[j}jrllrb"qK}S?OիN;ݾۋ#q@{yٖy E0VLMH)^Ku^lvST­rKTwo*5ߕ{@F^7 3m&noKD%< 'N(©d(}孖o{2mE4$P%PJ7(o?n*RũT"g_ϳ)3?FULD%%T E-KWWpF;k>y`"W*58ZԎ?hԆ+ѹkȚv^J U*=^ny;pDEk^gJFԖ$W} qTgxs_2VGI*ӎTvY&{zÒg;8)w?;Gϓ} M?4 RV*;%\eQB |JLH(DewT yu @f&\ϯj>^:APԟe%e\wQIP&k=i>BfOn>浍#YeLtF2 @Fǧ܀Μ63(J;oMNQ G3[2홙Mm1`dI3unr^>zH7ۑJ{ڻ'f7y-.-Šbqc^s$mN c=LQʹyKVJ/dD7 7OnYM&M=Q]H*7Sp_Nkul*7;2^BJ'df_s_ùܷ%$ ];0HKXkvMҢuVc)qi`0ݩG4 NNOBw1R/]yEG3U7}zYkw=bzzẻlܛӴHax6`A;8 o'zsndIn|X 7AjMXr2\'9cJ פ?) < 8N|ӎ0r(]}d.mUڍeӠ&o rss43Ny"g-(%UAĎT RW9Q0P>q{K͈?1COl}}Ӟ+IYGs 9{:|-#.T6eZNߺFlWЩ +xO?wB:u?VVeTD- Lwݒu>)2WEj{R[T[|J$qjTGԫD<9Ǫp|WeΞpC/ʀlkO\YbD]hSj%CR+I:^| 'IvG:;U%vt.&~hΣ[JyALUR#U$!{ݝk3և_#+vuf=Pen$C={~淈w,=TvVZCׂ#:$wNRfg>u9敧>cΣ;VHz7-'N "*-GQqXCgOC̢$!LT$a}zx]i`FQkLDqDJ9YD]2{W4^㍢* F^QJMlW9:ڛ?$tKa@I]5F~{:T5-9:,8dD7>yb^W 4dmLy ʸwL&1>YznE>g}8Ο^ru5!Pm}H+ؔ.DS~8ka8KuJJQӘ m,FD+ӞgOЎ` <[v]hl_{jtTmO?u4⫗41XBmZ<4L}W5W.nſ[Vi@Zl^ۇ] SkiIF[{/ֳK>3ҵ˰^4R7 6]x6fr"pj6eag^;/OhߑR&ǻPq"X!*f ewJP,e6s>xݼ~ M69=\@aй۝Կ$$62zxNg ]٧sYjP]-Q"f\""b_*$,-w1*S|v>=^g 7[&}ްi*͆*ל@'6;Nvϟfg01 R}A@Sm@`)gߴ?Yw˔ ` IxwwPɬdcxޟ}^85@s\?̵w4ݳ.xt~'%V4B**tVUЧ%4Hڛ`neB]NV!;sOLfϹ%+ 9ΊFRs%NAY! ׷NhtstEH]Ash"4Ah;e -ghZ3IW+fg8#BaJjsG%o%6ECK)wJ-՗츝r8m nyr{?qyo[%/Y᫜m}ŚtprF<஢WLz+ow)7x{ W\q&xr=>,잊+z7Kk4RѫrM6t}݃KQYgcQ)mD*֫R&b"R4)Rm#"Iep`:^Pk3c8R_Z]Fձvs?OnH)oGml-qJwN ۛqffD𘆾de@:k;u/_W_wZ@4NI]SN}xaA.z'*o}x2M3GZkws];* ѫfQɍ˻#r[/[[O{sn\}Ϸ:*.^%B;eC\ NdH+ W%.,:iя(#sp]gd bUzFqqUNS@S13"GDJFms)}L9׊FHn?PId/0UִuK}wLno/⽉K ?ywo֞o_ooS̶55/LY{qꟻķ- sO_ C ! 0 g JwWm|zyQW[_Q˼w]4-5?]V؈(J3] S;ma[Eފt-/K;}4(ƅt}RLó mk]Wu$J"8z- ]*Y7C#­)~6[󟏲j-L"ݷ2 㖳L9*tM?C_VQ>lZ@ksNƠ=*]+]T ޥk Yk@33M{W$ppHW}EwJ1D P VF̩Qǐ*geF*,c:B.]nE4돯KtJ#ɠҽ>LQwAvEkJt% 8dvtYߐC?~,q{C|mr<"v5v8 T]oJ 9bp:sאЮp@g hy?³I&=[J%k(S<9T)3qkT&p]cM9G Q H2|^ q+r @.^A= &?w|Pl.4XĶz; *gnG4r躎[JÔky,xͩ[cx PKvu*7VFD߱17R6\!A=wwI=o,̚|9NxԽ}s;B4eWo?\{~Y>Yn ) 4R< :-RQ{{&K* u6ګe,1SgU]Ɠ] 6+u7׺.e'v %>$["vHIG]z[ ֠jۏBN2 Qdͩ^Ή\ /N⫘lOykJ}|N塌 9K6˘[1W2|Z*vuz<(]8$ OggS@rC4&n {"!"6[aaɞI) 79Z5< 7D"g/W*h6oǕA*LM髻;Nu u1-|RLS׌ޫ|Lt=t*0΂NUT>OzBļ1']9,S'u6(22#NF_KvdtM_Kח5^%He%A]kR#WBiDvYKAߙagk@ҭu*G)-WvzA*SBbFWC{~s(VĩR*Amɡxž٩1#) %4 ->*Fj_jTٶbO g(2VrY<=T(<(|._\i9a,afdu W㎇ ~Pk|=gyVN=c-YM4skUx^=(^䥙4C糊S^AV3]0d]^Tp~18̫qiu+g=&n׈M.#D8Y3- ?Bm[06S.E7>)q``z/\o@"uOg wn{ӽQuf nا`ȵ ׌Y5__{umDu㪶=Lsli'7W~ dF_BZ3Qg<=x3H^er}^VRqekvx9v+?d8zwYe.In fEpollio_0LCy-r W} vhJ0)-V ~ޣYDߕ9)V@jǦjKO *tlǕ΀?cωBڹ}mcsDEľEBȾ^.ǽ̑9Eລi,{֫ uamԉI>^6;2Γv{"O$-]y.SP톄J ڰMk,N8_=&iH& _ GCE H%BF#K Ast뱦Ft28k"v-*NWىٍ7S,k|,&9,"#3vҳCBQK֏z5[)Qgꟓ*JّYx5%{ƽMf梱S15>!1Gޤ#ESvj;fTk uevchWE؅nEtv^"Ԧ1k.^Z*ٱf22552qDGnz5`&lUeI8a/ykn1$AZ$TPtյ憽׬I "iN[5ә S  ~fV(p-! "_' 'Q-])RަVfúM o:ᗋwM sRi޿}S; պ4}'L<5_b W 69d=n5 ]c$=ݽ.ҫ3ԹJ.qo_; מᆘkjWZ3P*ɵ;nQAنHU|pD"ZN?߈~>ʻNߌ+fdC_8~).yѾ?o,' ew;QhGRS)QpeN={a9ogc`-AG1 {}K$1J}3(vEoϲC7_RA^fSq\7[B]Ψiwws5mcfk0ΟKƤ[T?5j=8]*}KF:rPYjRJ#-p}l *kx<njWOԄqO/%Y E#wn|K|?ٶk:(s%tS(tճ$>.!nNg|˙HMN#-blsT;ֻE])`9 $aM4%ImzLO$LTnbDq[>G]:''ǯu͛DM zVԲ1n=D^R.+E&k> O:ҷ;ݭ-7c<ctw1-鈢ZC8s~hS2F1Oygb6õ_tʿ ҳih!Vqj9BstO"uAy +j֙ÎqCƨOb]_3ś۠}^ȸv[w#}7rj8|q+{יQltbb][P9jabu.j36{aXٓ:N- |Z4L9h/W}i[/oCVLy?ڋP}Zo-aJ!ԇ2͏9ew{4]ا֖ݷdw~ݍzyw~‹ 'JˑG82SϪ-k!8'X,=*t)1HjZEgH Y[ZHEYIEkM$pKZZa j:8{GԀ9gt"hSk˚\85%v}9g 3 ѥ3гdEe.:*韱|hDirk3 | D U ,+\St,XƄ8 -r† |&87w<[CgS>m1ny)ORj" vIN\qU?/MtT2u ,s2wIem`icaxʩlU?}ӂEkN3>Qmp7}sY87eڑgy[ϗͿknn"u*YP粄?7ntϑsn H~ED˱tK(I} jS̥vJm !2J9TQq{FI3Wf!ק5I5^ւdY)-jA=YkLf̯s׹}Ob]ު5ɶuWbTH]'I*%OĖcs_zjFoI#北GscF"1,D驝vFT9ca.1F5;ģgج)_S^檱byW!72 cI6vߴ._ėG<۟; bwxw/k՜Mns :߄z6+/#-zg;NKxܔ œ7p$a1rM_ { ?7<[xWʯ`]UPUBfqtq+m1cIah c|l~xo\?68w{!?f1ޘ%1ާM85fY*6 _^\g7 >vN _V/$}wS(sMqjDVBNbO][%_ңBU倢RT^BhM#]5k(d֦ OAFd8v1S>Ǖ(vR{^MXԋLJK 3h;N@tpD阒B!7)tڒRZk>$HX?A\n' .R4R*9Kz*hQktߢw63G}|te~Cv-هEՂ&ّ4 :pOr"ޓ 8?F ;ak/\$զ7)HxrOV %X6FmS͉7LIkbjڮzfLs<|W*TLbzZ{Y8~) QϚL88o=1ߣC^CÄ[<=_Ƙ/Bsƻ?hImZKdA2{]#vU򌫘 PC_SW5\sϮEi(~1sfVy=䬼Dɴ}M݇ݿ㯊U#=Evq*upJ:SL|dS G78h׿F Wn-8nϝR]xXR*I~Bw'i/t{Zd?ߒ:z^ܱ xd#J[9W!pt RE>_45u4Rv"ߍZ3+PbS._ x]l̗b*v}6%|FΡm~B>oG+]Oө^jᮤ -Rm]HwVH_矋}_~_[t߶i;#)֭ebKXܭa&2w;gҷ븻fi)~6rfed>lvp31WZqG`8L!Ks~^k[w=uNUZc\j 09F::Ȓw_'ؗBL}Z%3m{jA@JWgΥZW-zF4N$+QɬTbw<"Ege,xs5TkԜ显hY#LDknQȨI . $ M*wvՏH )<EJTOTa­(u b+(ΩJd=fR1"9F;k ht8G22HAc_yg8^ɽUW)iŇ1 y$S%íʝ@:_tEHfJTCHygb-l$Evgja䐅>|\qʽe8] fRTZ$ٻ'֎ Z}e߿sA贄a h쬮[@-i7+},!ȪW)tq*mʛNhs޾eǾaSwt+Yth [88Z ޤqQU'5@\ .`ݕ!l19gk$FGfhQ-8 PCǚ^0Th?x'q|`R_Շ l$<^[nSvH/[?H'^Ym2F^J)9^=lW7&Y-S^l~;CB<98La%-Յۉ ܔ}W 321SVI6Zj :IKw'RĕڭUf"ukrI+^k-V+@^jnF&Ԯ&cizIy)1bCr.sT|oѬf=Q&9c3<*Z99NAƲkc0u# `|iW*Vl [w&:wbg9N$Ԩ_͊j׫Vc>;w_ǰDW*}`~~Lky;1~#c^$*E&0>6q,ښlf$TEKi51+ʢRB{ܐn+GM~wK?tIU݂%x?ߗ͜'A6<ga訏WߪY\R'6@{fU>n[Cm5 `P{'7 6[NZg2HfC<(V> pmB@X,>+F#K [a[0fA|VQ ;A%H0Qx<ѭ;J>rRgħ85I"C'EW=uMjԒ&EP}%,]X”w%ƲR=pD2Y*@yۿ,KKbL φ[m1MU }B"tZqHJBMG9{d߫ՙn̑9zf 7?׫*5[}'19!2Z蠣Bk .dg4Rgpt+$gOn:znr5ֱƷ:8ʪUN]p u"#J5EzS._sHMQR1!d}G3k]KM Sw&jXžq&(1*sYgMAJ18]ǞRU2>y6gV= eɻ8OQ=,}>(<'ױ^yi y,kU5X|}{95tޏZDR3>qڗsFA>1+N3_N6kn&Rf.`Ttw"krF*sr^ TpC^V4=ז9rrw>>zjs&*:U Ԑ|ȦT0J9(gOWgcy-exS2 4!R۶RT̟k'>nu=.4]6<[<$/[ݚޘ_Wt 7(]^`[?ύCa'rOx1OR5S𮱙D5d1 0-hO:K'wYJVx0snӐXgz:ےzt83WeV_~w0!(%͹B.(OggS@C4&pCS}!$"6†G%#ٖCDxSP O=DCҝY) " Hǻ אivHth TȚ}k=%SȥXb&Ԩ(EQERS&LKQ'PI%֛&qJͦEM7Z:EՂvRǁ꘏I_z=c&݌i]st"2067u >FqF6 ~Q=O(2Tm[\kkU·Ggzv6ﮍME [}|tV)H؈{z`R<7Z_$ fq6N׫]ɡ^ 6ϔחܣ'E{qDVA"άӿ5'u8YPrU]gRz9_Z;g%Zk%ȪU"8[ߡf4S5Ʌ>ԦN=)Қ2(I4:;G'|4N=ZZ+э(}B4nMjgH"'uG чԾ8aS,(8X#g z*Q?xj֩|:%7EA[x5H s߹n+7.bΝ AK|JpyʜqM7ML'If76 2k-9;9r`f8=zd=' {OWiج}m[ r~ ^N}缍@s-U/U}FjѽwAk3F t t7\?e& [jc@ZB1)鹥Yc ՌkϹ*<_TD#m˻,Fkw;is\dY7Ml '/8hLKzSYVۂ>oYoԝipTKFHڮp yo2>a41ד՜ҽP/..څKrɌoi\iRiKsLKӍzzI>7[et/>.b'\BiusWsC_x,({YӲ\mL|H.pW6G}! 7 Dv"j7!nbEvǤeG;K9<(߳[xUW_IןL f^I-{4]nwd=5AJ?/`lL8',X.5;#V4Z_'zCtSoWO:v;jfo^֫~iFݛiZ̺v;C|X K8Ʋ{fJQƮ_w,>[ˊeβrTІojB y<:Il5?. u;5+L~6 ^۲1K:='!:hTZ&^2_8/_ 8(Nlk#wzI&ў&CafRiD"/(Unz*SԬh֦V:dEUφqsz\U=k%K ‡\%u28;6)}kw (jqkv{ QvKY;|dWV'bYVtn8P"UC's|o%@ۋ@II>:R3A"`&ȵVSBZ;UG'ҩ*WQw#UzmKo۱ݟv)D&IPQCP8CWE5l =:GI2@rΐX\9u/B-jEj= D;Y쯕;.ϡUU"rͬ88RN3!:~3D+ M<԰('񅌪P< ՚5iUVixDZK[H}ǨYFۻMGA6!\{6cǫN`rMo |DP <=Ӯ= tx +'jeLy(h>Cdr)X&ȠhDQp60[0 ѱTÿs w&gb c% #ܵ}Zgeմpui|r)|? 㓻4 z1 Cm%BO{a;ᑓ_8nt6\AŁI}}JOn%eIH IRq{Pk9NGe4s s[=FyNxI맸;%^tH5^͌*0F}Al^}/]X(^i?~\"6 ?)TqX9.%71ܽמ'$=K%0>'4uKS [3Wki {F|*>` WK7SEߡ΀kb}Ŋԅ|2~N.L(yȯ8rOS6KKXk^1텃^E d#?ƨk*YwuFy6 {8ք=^E£d׾o]|%!M*bo:.sѸ/Z@zAD'u&>D!b=vPy65wk6#f2MQ^. a=?k܅֚ LLŶ~8аcyZA bJ:1$Qp)Z)R:ѪNjG={VK:֬BVuZL1H?]GUC.CtԮgT͋! Zkuh@Nr̓4qBw;DWmS#HGEgTb(t}5,EYu:% 0QNZV vv`(!J <>D5tRUCZ[SN䕪!p gǃFjSM!ITl*G5CJ?g~1,cp u9>SC]eA#Xl۰ChQHvD;GQFg](H8QDͺw)Df觫Dlltzw~@>p B>;QOvtI05scue7sm4joo6f1~F]'kozo`8ϋ3q<Հ%س؍_}AtʂD8[tu0Ѳ*e)s`-=Y__K5-!nmSxnR7|?KT?́⋝+:}$6ѕ4,{뤥-t~N z>(KvՄZ\])_iouA4YDqL+a:Ǜ\K._Ĕn*$t8/Cp20o#+4ƣoϬS/чN#*+ q{ j5FEwDQG.G5^#]mg>Vy?xVBM0ù^  S{xz #qpl?߸}/t pbnG2}|kT#S*;(ˎbl_6xne#[ /_=UR 4\}#D%iև8>k_P5@˳6])/2LJnYE$mRȎPA&U%l$r_%+IE\LY{OΙJGsu..yT){C3#.9h4x}Oci]xxik6$K{fHUL쫩${5[ɗ^ǂ.,67>-u}n  Vz'g/+oVQERX,~ͤ&ur#[n L)Ayp'Crvިvg#!$]WʱeI ]ʅ&*Vs}?j@M"+c {yq@Y+HϾB`0v{%B+͟uŽ\Jv~˧ROéXD̦Twxx<2exo#r嵭汓_d/y.n(IԒ/70:m'jPHjΕ/wDk/ȣ}'q_R3viOm-L_9މޫIK MZؙAn!v{7:H>bLÃ>;U.8B=yJ!EeJA_qMڜ/0Ԣ(ը=݀CyD)8H[^{#YX?0i Wn {-7%TvxLQ?pRO0u^7^|yڴ@Չ{嵊-N^)`J|=iQnb Eђ = b/2_w]~dЋ=C|Ba8DLMK.hMOP|$bVŖ⢒j~6#!`vl~_hoT 곂 D~)yDAQkOY STV>+Μ}YǬZdc ׳qZCڵG ,d\5jgyc&EZ]4b5>O'8,u32-41Թ2y.\QS/5~WјFB)b,#ECD݊֘e!s Zb=q=U]KTd^DHS"3TȹAPVYBjd~ZY5kA%i Ip ;LW"x#:ǩAĩNyTvwԜvȓhߓ4#yxWB~vzRYu` C NпQl=2c|\f*NlaD1|l%y{Qˈg5CjM5zL~WS=Y5G} Ү\SD%婳iJCw`?w' B;'?ϮnN<ʜ4kd[en <-SkS!S,֗%GKFz3OG}yjyg0>UWs@Qbe] (om_/kT컼4zi펃x7~YyUWaի ʞ61:,:P͠ԀRpqQB ƿ.[ U?/^ԣU1\A[u"Ϣ'8h[+OF{WQ~_sU,j|])= '+]=Mb8 P?RS-hdvZym4zEO?^byR3|>iyX0f;!q x/dz26?Y9b:7_"ʎ=)}&}&\wũǣS M-{Ɣ0˾=RJ~h!k t!ZCûB{;2u]Cz*v]ބ̪u4O*kn2|LtS=Hg^ ZmX ؝7,o.{v;d=iF-K Mh@ƾG@ s i24 6 8gTi?s!Izo!u|DUX% RERυ՟wxj˻ `k='>ѩDM%INn-3ѳ85+T ImG#帊:ZzCt"Z8ȕEM2CI)jOD14sK-R+u_"23'51kV%Zi K-:E{="tLڪNH\Uf^}jIV9'w6u.phu"g/5H+Q9jN)9[,C</}kf:0v[}V jNkݳDTǡトHQ]pbZjdFv(ETP=CJqКBĐW2؏y,Ogg8FdS$cv (ZGEx^Iq-ԙn>>Dl LC6y`$S B(GdtT讽=[kW49y7dM{xwwu;+) d):0UT}_`g>2^`3Gq$>I$pW߮SQ2ɧqY`9:O{kΤqa/K+<^*)Y{ ,Zuc7[D{\~ȝ^:ZƽtRZ:ApJ .~sⱺՒ[oU)%vwj;^m}>RPVN4O񺚚x䴮JV·Z8/'|FGkJOua/^jR>]!U#s|? }pdRӀ0|mt+{n6Pw6*N~ee@IkoU]˅K99K7JU7~E+p+u?=uқTx~.% {'Q`H5FEtw{bN1Bw(X /T,XIQҭPv9֣>}[-f~HNS}}|sA8]T:tuhBEeǙUR0<θ\U+e{No:IRs~y,.Asrk^@[I:u$$nkgD׹;NL"U9^G=*tIM/zݱOAMr8#o!t/v5k(5!*Ž#]Y^9=vjCT t_&'B?=9 :T%SMU ̔+v(jvH9wy~\X^dhgIuAR,Q2wW Z3(G ȯ< #ЏSOIm$TY#Z4Qjv+P')wjfTHC5!:OGgȸ[MugzmUw pmS#C\@rJK O1*h,LJ(̔ u](1D]X&OXVWqga/6fEmnSjnm}ʇhx\A to׾twӘ.j)NA#?y1«qxk_*Ek̵#Ş'OQs|ew,X]7)|Z*~S5E;gZx{BZQ/$ =wYZ1~t\"]E[zM2Z¼ȅ2۩ح3Ksījd"$+T]wݮS[@W60l6Y(G 89ƣ~^ލ?%u98kHg@uxo#|: xוnn*۲t 4Y_>YE)=i|tb\?~|ɕk8m|}n@C,m]g4Fs3ǧָK7X .R࿐ޚ˭՘? DNjIIM_ud[ _wSi#=s)DcFu潞Z61X'YwC4#V=,/hU"{_ |jTZh<]GjsFGu &K!5PM=5@k+RhO⪵yjf֗^{;%ry'N?N ˢ5XnGj.^, ޥ"IFAI /coV*r|]Rw4 ۝:u|7c:8eR}|- RcfM G}9>n:GpiPk1|2D CP?g:sMNN/cI IF&*PQ7ZR D0~S u:Խ+^"F |َ_3㓽P}O_eBkJ֖LքzRd{%?Z{pn~[Q6Mh=tz| 3R#{[1JW gVD6h@%S;oa2 @AZpyb;(I/{(ZDݸz97jfyVI0ɡ5p.TN-[&݅*.&ۗv D^) ~`ZA܂gոjGDHiJC{4)/ ض9a\-S=ÍQ-{ ȥɏ5SabRmðq7Av>"v:sŒ/׭)M?k@}&oqiEv\[սTۣK.ȴϯJ QO _RXaoAs~w4v 䵌}NN-e?LE¦{\X7@BɭH>)#(h*Ļ[*ws= ހ`Wwe'5jGAƢd쐶](^yF=w՚D>BfBk}ot5eɵz{/׬2wLY=:fE~<1xԗ}kNObg/2?q|7X[ϲ`L>O_ǾZ+w}9%e\tރk{DRk?NխRW_w5Һ͐)-k0׏ ʍ#=%{ͩ/:Dv-E5;*-VtjU=zc=' ҕT9ÔuHUZ7)Y ^ƜKHEҁJׄ?$8ڤjvԮ!Yd-_~Ti%viH)QuڙΪukf[x#5&CΦFvC8gR2:g}׉9!$GEĝ}Hm~HE"ψlN9W#HGlwш$ΐԃ0=gn3e~X8@3Z?z?h'-+Vј/^50g,\ BǓճt[b'wιwִWDJKP4N7uN'C']`{jEu9N-\cgf0/iy\TܟJ]݅5y&h>JERn6Lq8N^s/*?Oդb[=pj;:m{NEC-|i{MK OF;:N``\7!_ɞz =ʩ?‡DWzy~Jd0z~8{`\ڙGL{r;ݘ˦.& ] .K x&HUs䮏x3iF/U:vv[!z_cG֯43k k.-ޠܵ&C C_}>+9䬭ՎJs7t'Ů5vX_ݳrB$^_Gn>{y|IEdcN6>iכҫ9⨷cAՕ1cG-Gã޷[{㧴} r_[j0uoWQ7Gvrt;ܹNA-챶*|Z|e9n,4ݲ^|>S _bwK"{fҬF2wD?z6`P+PŷU9s/sXe{gTfr5Fû?'b&\T@8ދ#K@4e[*Lܒ_7 iIBtݪ]FU[ؗy0ݲ)sYYLj.Qֵ8km*H>sIA/@5 8>}0A>-]}9G$h5~|o1/hOh$̪zԇ,jpY<*-UϐQh|,RFO&ޞcZܵnP\S2=[x2V>cd'IqI)JRݮ;#B2lk e^ N77SOnD "G΍]cmG6gq37Xr~ܑ,Y|6q}q=ˤw&NCJԹVTZ/\~ r]c}]ɹ8Usk«a2_Z׊N)^_/ϟu^P&{T2Gf۞]$!QOjDHiv CQ@nxL.z^~YLro؎a~ 4lCfsfa qr~AVT6;;)n&%Lܽ 094dvol~o˵cQu.x}M-eh˼x{}ͮK;O{zAB1s撋a(SwSs?xz{MJEvȾxl9ʬ:C(Fry[f$$0g:[ ՙg"]u}oUז5>}"fڧ/3]}ۿwo_?oƯMv}v^t݅F%~<RS.[_6{)}v;kϱ{jG}`ͱڟ{^V8Vrƿ$L|'\ L/ @ߞ[2W cd]+VB Jv3Xnoj'ko&2n4EUX?׳ۡ祏6iիˠ&ZLdOhAa t|W}=G?nWK,>xV2>j-zDc_EWuk=0j_k.Nޫle)~+l2/{m~ [o[g/J'| ݎӁ1X煗Z;O9l+z%nJV TV"V])L]=&'Z 2ey8l\k<׍:p7zb>5=_7oeOdD+Q"gzFUWf)8p'IͶp=Fz߸c`M2 H~yݞ۵$q|pkWs+ozk}P,\PSe87qOzNźZl 5M,v؈aCV\a0upuL1tXlLkXM)e`[qjuvS,OF{*gDc!H(QGI핝,<$MOA>)MB#(w)XSF!a7ݞGj*'FdX%arEPgQ+Xjz!~uu[ +2RYW#a53(z6Ӣioꀄ8=5 $l}շz6=>5^ .U֦ %o縷݃GKl=ҭ-&0e/XjK\lul2r:NbdʖĞkNtȊjlqma15KfD>9# b$^z5lC TԞi,6"*!&Q+qJXƘ!2ߋ8_dAf34.WNjeuZPou/y4<24dul]u^*K\*&>}ѣ6Eĸ\R;ZDe&o5 Q*^:,Gl8Wm/ C9KlΖo2U6_Ѱy(xums)w\-!=MKⲥK,yV"YEP'GϘ8}}Z;Fidzʎm>ENJ~\bչ#SٛHD'#_43|oot2~-wh+ Ɩq֥9/Ͽc{h:rMRPZ<Žtjh2HF6ǷpIP6X{ѰMI:ׁyL4&!X;{iS|j?CTG~vwngf؏H%oJkzg/?>pGհbWM)ETQCfE$NV٨>Tg$,/ A^=,W!ˉ/n"8:8B^T4FJ&|t{|6viԟ]e,Rgha٬-R_멇* ͨ^7`ot8+5"]Kw;a "hS*wg#\;v9ߩ}}Z4~e4v_B;KC11|yU޷wktGv_k)g?]dӱocykFY L0sEdjfnѾۊGOeJqAmc}uxw'~y׶7:Jwλ"ùE^11-휄I3x'o{&.3AM0rA*U3T#?7$tҫ cʱo&lYՎ0+R|jta {c(S_ćQCOK[xsEڧlׯ{C81e*Æ!os*6o|Mfә}]6s5yTrU/i׳]xom'\pE)j}ĕcv+4?=E R:2Dv!|Y{eH6< ĊKLwFF!MFQ>)%`i(]T"nXlRT ? 0fկP9Kۻέ3B~qc?r#jY[*\ֹH'7tS0LsU~HtH>~\idRvG ;&(A^30v;<;wT#t{]z}Z|\w?mf?˝e4L$wRVJzK3Fk~7yco$GGzMi=9hSTA.yui=^&J= wx|=f j^\|~RsB'_Uguq7t2f >]Qq5W)<\Ur,*}+X@)JFB[a_Ff_>CK۽ul6hb`~g UU8ۯV6A||' oXޡk0VBr$$_)m0 Op DN.U -R]_'f޻rY\RsEx?1[{V UV DU08-MƲxW+0pws6]U`ߝ85>/8rݶ wg0. 5ԢC^꣠ :<>RaC|EA,VtkO$!C'AofBgq)`bs$N&af\Es78zvT>.iz96Z%./kzҐJOF}]w/U|`=}W6cO:4]w}Ygv6&N*?H[Xd?n"?կtQ =wUخo'uzx~JJ&]Pg ւV M*2&y8^߄P.p5#q>[/|Y>RkO2og1 =wsKDR?:r!%3{1\s>F;x2P 'CQ+t ' -ZiClGFJ*('`crГR wRwqD^7mGZ,/-WqඑhkŃv磳vjhZٵk׾v=zo}:^R.^.k2DkX(&vc'c]LC[]OT'Ϲq˻>}tmxey|_=b>r>UOFWwFFT@m~MźSEQ  `bB(T1zOvb? A#cc1OȕzV%\OcNc86iju3ѻ:~% wshyz79vUpK߳xJw fҰ|إ)pjߍ+{|}x_>9^%,Rs;}Vl WݩGt˝yvӴيM1&2uLR ޣ'OO? k3㤝8>jM0gun J ={«kSIpzeZъ$뻉dl^Qƨ3"d:O;[W&G<].Hw;ĤB}&*[hy}]zJʼƂx :9a_w߿Nw Z =|=5FH *\JK33u47C 7h{?}HusV>qjǩ s-!\7XSB60:?}{n?6{Q_?E]LK؆nV2N\o9S}e]qSi%oV?n\ݡNgI.ʻc9eowx/iVvyO2mz|_&??e>cz߿&vuguή5\PU_НWWWYwqsoY*,(k~LF۪kEEUzgO݁ KŸ~ mZP n+R-5]{F{\ OggS@C4&t5# 13EXnwrM}q>vHj @Fk[<H\zv>)"ptvV k92v,]];%):4~t^E gJZB עg5}a~SYtHZ'P4ZM׻?SF\ٞ /4POQ1-ThC`z2 rSTji%m~ =rZXaTz ?A@`[C}MY3㼱Z5iMH `0 =2 oH\0@)P'[ۑפHK6iodEF&NbpqcbvmvƱT<!s”p_2:7gHqjr7O9խ S>Kčr[We{7fӄqdCQkg';$HL;ȕ\[?!ږ< @}xub8k^VmƋ;w \AQ}guM`j.ϢZ"aIrwa.?nQKo9]sM”BJXмշ`M֤KcfUۉ6|uɾjq*UoߵAB9kչԨ~UQAc#07QA?'FDzFo6c\p#nJ3+3}5۴דǮS" ,"b4O~'q[D?}i̾Q/'?^h|AHpv1#6,N&KgX}D'^I'dYb4qGYn,5S}~C6E,:an=$k.Nja2y6RO~10~G|mnՀD_\((rԦK|ZQ=׬Xۗt5+MN'>i~1W[j\PQo掙Sd~.>hS6P:g&~;#G7rp`xXkv7tNؔ d)<. h0$Q@[NW'݈lezvJnO=>\.n)S:׹W+VbBKu+ڲtiWY#>:gUǐ]kTwPK$>tukgN^Gk=eahhEO>H-x^ү #NZk~]\BoP]Գvm*Swyeu*rQ63p=dz'uT\C#Oc<ѽ3 INiNHgwÃQ wqUКt:>s;`S94{(J"yeBγ[7.?/Q /g!f#l2g݋:=]7m#mྡjijok3a٩8P/oog\ۙ=d07]NeT^71LX5_E2rk88؇h*q+.@u$rݯ@^+lgSqV%YkAN[KO]쀡\K6?ON]dɐL܌WCH(=aa*R0h\I1D43̫,<l{~>$GSO>Uժu`{t]UE,YMFmF) fz`TC⋷a:[6&~2Ic-,O%("lJR~G+}OރeJ+ИDBQ~$\FԎF: ۥjRKjZ=9ߙ,;1?nSR K'+cB݋X ӹlvqke*~96V$}v?eddb S4{ 9~ϏV6>íD>`q$>\0}s^0ƑFno8_*+WK"gqnݦ8ƶvZM]([yƜ"{Z3py٫~33Yʵ|q 7YϪ 8(Gdnf!wcgQVT7.˟by?D ?'KlOѯFq?H4^:,sY"Zb:^ݽb2tSSZd|M8{7?G-(@vuW;4 ۬L9矸Je hx EG#>_T:Lg# 4U|N;@kTb %>S3(*Bj]5*5(;RȖ ZБu.._"WvO G ݽO:scU P$8JEq.~bgk>%R yS=kӳT%rΤ_\ A~'y|!Ap uk(jZusuܡi`=v+qe8?=< wfnȏa^{@yݒz??vУƮG=Mtc:b1 >u-SMiA"h9m?ca:Yh\o{x'eQP;8.QU\XG21Ovrbq+7$>sĽW=gOvm3b4󢙓DOI::fn$6x>EN;Wrs=l(VLj9=dZO֛Iq+R 9ٞc5>f})WvC YsT|ӝ^҃J2OhZjUk\Ҫ!ܐSş 96$mCK6K?>2e:QWnRVjkȦtܘ7HX^k*wWO.dHܵP{1c-'rj$wa {羥[ nޟžc$ q,?8'WpjyٲbSݯeUKFĺ4DOmHR/ټwl9,y_GݫG>\ikSLQ%!6S ޅ/e7I]G-o\1k>Ox4}uu=mYd!)&(p)-\7lgzjT bVn*GM$czz!-eP]H2Ͽ*ѭS5HZx A#:#gфz[v!A+Jn|mB"8=M߽vR%lg"Ev*IbiJT'C đ~9EBjtPcynD$3jЙ@ځߋCNM6 ˊ{f^g;Ț^2Wra2g75̵ּrmikMQU'e=m*/2KMI|3[' 5N~87ٖ;Ss[.$i`ߨNQMzHƱ[ f⾑G(SWz& &vA=Cr6|&5EUo4yAߋ#5;[)}9oͲ.)-a8I:ͨX5.ٝrqi:K|T5 E,J*dmM+$ /+vc Ž2B] !#̢w/!p' }бDɏ|S+b\YIz2BzM_ G0y VS2WU% ʆI}y$K#>H 㚰G}gD(w2n C$W'ousLz5/y%#+@5}vOox= KcW*pzJ +8֬t0I{ʗď~_Þ LDVWE#'u_G2\/#ϊ$wQ&|JyߍEߔ9o|x8J.]?yn>ٴ^(+BpQd:4om>bhSo3ƀ qc5`?P OggS@C4&u"~uzێ#2weʢImڮM ]0nW?ɝwtG\c>kD hh)?Jn|\pŚN8=~YKtIQh·q9Z#[]wX떗nX?,0v9S嫈flnkط#2j#ZDnF(}?ܝ9Ԝ"-" BhevA'aտf0}s"]Cy6ɠz{;d SyRދъ"fZVwq|ӣ87.2sjq.+08<)E'㿷GHmnݮ|ƭ&`EvD}iΓ\ю9`V@i1c~{ĺ:ߝg9';(ラ#7?  E1E؝I(vNb85UnpӞlԈնcxzJK[[2`km6].c~yV?9k~ ?:*cǽzS #c8X+VUs_[W-Ŷ^x.Nk9m eF| 5y~0ASOXuMoWUl<:htIz*/>ΈH7Ot^%Ԡ•k98UHqĥ_joI_sK+,WXҽiY\N:2x9?N}lQ^c4?.opB㗆!kխ^Ve/ӦnwK.ݜ3V!mQ._6㭙ۦtZ1#ܩ~9j,$i$ާ[whYw L8XlP3OBH|: tLӶMݢ hQDZfKl}hqL[smi//v;T%fY_=Ek4 [y%JFފE[I`4>Խt:hc*Y4.C{Q !r`[)2XN&{P.~OVl,i5̑MF7L)G[9e1Ԯ~*jkikre0Tæe1 Uc'a)SjQNfW[iSծo#P/tԊ-ѧ1T)l[ULEɗ~4U RZdtLzĪY7|} T%\r(-I3(:fUT#YC0$>k,emlz0<wDa/}?x vc 9 ?0jE f>OpJ n O]yW7}k/2<{ƒi@o"}̝ l|`-n_9$GI#}:"͉}8U9~vwDeFG]@8[gtGH_r0Սo]gc;uwOO|@(vbu }X$~Kr>nۼW=JL'}뼎gXzQ3TR۵Qz ÷:/~.~}ʶg\Hq-s^>b?YFϿ<@~;WJQ~K%8y pw|˂SݐUhXW^]@W94_]m8ϳ/7붹}4~%'d;Zg1N޷}ɭţG[qSfEusaH,¥Q#Ir<3$uPjVld@[Tj)|ĉԀC# cn?ϼY۶5#/\[-~퍊QȊv;%y74;W^MN i%V<6x"oJxy+.\zRxUKp" T#~TǏ8$IءM4[1f_\iJ#XE@5uT+@y_?K!y3YlFV"b% WYwlVDϮ. j{0-~{<JߗuQI{4~!l=@^" j>!::^s7 2`1֦^[P717%*KsRbGHoK$۝Xlcu\Jŗ&"}7gzXˈ[BEk&?4וUx]$=fЗU";}c Ufam"\M۷Y1.ͯٛ}v{^gR9>[qj4O1^ms14e 7KgYޗSdNGW&W~ژWv]LoZuCWvφGET,3a8~S%߆Hv6-CQ}K~*y{MTY>eVѥENTz8m3;Kq7`g:z4#,E6u^mekf;qS}9]LǶl*eeL<+=nV{Ps{.RV`_2OggSC4&vErTbP%ms./suS6ExBhaoU ] |{{jՍMd沾eJpkk󠿂Vv=;3 ~Շ?aqj%Әy{7ҰN/)Nkp;Ftܖx:mslKzͣz 2{8s()sk=  (Esш53yUBK:X}S[|!8Y'\\]j;er!r%\l˪:{?~];~|dH;X.PM47t[YER Ͽ~Ѷii:<}^eq_h՝N![)+ݬ&t(T"f=Z8~_o]ZޝJ㯛"jᯙ,yܽ?^'M] ".p>& qaToLNuwsn_&Xc>׃xlއ}:3w"C||ҚGd!)v 8۝i^XrݙYWOyx릳{'HaɼUH̞Vd~Ϟ#:e_~=bRmz'ҭ7C}xMbs}}v}k9| 2NϫmvQ.g 2E5{R=NrDXȢ:.@"2L@ mhg\}]HY\s{zskcм-`X:` CZ^|}~ ixܷ_z֚ѫ QvJj%xptdU):qCLmHddB;CjmÖy|Zǿu_uYjnQ̋=nFw]k$#TP&#qMd4.43"HUly}O05ĐMoYT}X?7{=H)\xIzng/xSp~urbq[FF19` _RY-#MMwVsKd5Gӹ^ݚ?ULSijN}Zp$+ f;{{O@gG&v Io*oCԀ< Gcp~\X;R'#rm$MFAjE ->`w[^7tJdl"y=F͎vǗz=yYxUEۍW/{/׳}Wf}1Y::z?R.ǰwݥg}^ay\gLU&Qcߗ|7>8߸<棋4xrymg8~ucُ/Ccs.{e4޿}Zna-=MCwWtlC_lt*nU;ܼ1W+Loi{|K,MF ʚ[t --?ż4[#ٽ:ܫ#or{ZLS;Ώ˕VKyf!kn+3YIdkJ5}YYB@F>_4Z#*o]OkS^ #H > 0*p_O7Z )?JtB2}~~>CtKf4J(2#S%ßoF3)l;lI؊ީ|J^ӽhS0 1=NRaKSE4MB~tXtu^Ӹoux_XϽ=Jڝmwcf͞2]?mtXJ&ć%jyinAibT+QxxfOAk lh5zW>&߸?Oz;ib9O/)U_vn-l |е+*J_݋ }w:O|`@jP&gwcd, aم>bQ>:cAN(gɍ$.gIor_I0Dji_iF Y+l3u1mERB{?S93[|Ϙhym+se-u:VuD[G@׮7)JP.kl}yB>93(Y[ŹamA1R*e[Rmk!eqk22Qp`/,x~ henqd\jQ' Y*cMeUvur^1i]U IK5Eg:钴H`#WMϮUU`_,>!NQѐ^UG\bۼ#rm0TS3N)߇ʄH7mܜi錓8;#'6k(z5c[pL˷a6:9lkA[:ZBҬXp{~q~` 38EL=͹kOI&2#G1neyEhq4 s/- 4.SՌHiqݏlw~]cre|Ѥ詫 { _0DO$Vx=KI#s 5kU#Ar G\]ڣ*<`< zq22No0nC$GƊF T V-3YhYOCFzFfM@vA1S(YHO#[W6U>Gf{6> M3J﷛G_=nhs4ylo+۝}5| C 5#)xO-qN\J[fK`QMlpR˾?r"?@P=~F3'Q-6i)&˘Y,} giՉMajzic{{pX\}cuJ\=t{p I\ƩHޥ3H;}a3IFr۷{p_}",@ffViR:o\u,&+}yU@^,O(A=ܧ:L?7{N?A2W,K_Nz3>Z=q=meg º֣Ew@$ؼ_Iڄ][{״_dqx.Jm"v!"ɚ8]6ޛ{$4{{db*mf.c]9n'w9mombYS۸a2]<刯ӎfh|0_ ,u:~]Z^HN^6OggSC4&wlq[A-m>­/; / |NTy7B]ɞ8 sԬu<7Dw x@ ?(\׎8 u@PϿx<HA$hNSjG@FG?{С+&>/9[v%%}tXZ@MK u E[ӽ'JC&AZ @i(t6LAD$.5TN͢sO/-CUI)dGٞ1x-~$j*ʳYt%f~\1R-(vHcۇFJZx"`tѮd,hY`# ѬX;k5_},5+n!,~޸/@G=H!7neZ{oZ}-0PG'~]sc6)zjQ0K:NWEg1f] t8'(lX}6UJ>םt?B5Z{9_y)ZnZYekt45nrg#&J9X8J di2!ȝiyooyxs]i(G9 &x:Ma7kG|K{vi&c׎6=M^u>{Mպ.ΨO|I^(QJ=iś_>邹ڱL՚^zY$J]ȧC`RL@;qv`L$%EJ4h[dzBRdiIJB!@PDT+ IS+R*M;KOFÎx;wfڿ\j8z_Ϳ Ƚ#*5P3P$'D* w Er)~~},-Nmm%?ybFXvt*:%S_ ښ$ Jn)PԔ5u>Eő5.#:ee}nGLgc d sw1̞ =1OWzt.&bh@ⳕ:I;R5RgTꑽ=r?s]}U'@5?5kr_}눱uhh,udXE??G;cֿ͗wDJ)npf&0_d˹u_imtŕۏ1QF $@^b@=masXl= 㙮˗+bbXs+CK_jdb*oW{aRGhP"(D{F&ʝ?^}}=&T ;7[uW{RK [1~thީ˚HODK  @goao\M4{%mC~e{_T ?lZM:/[+?@rOLhdƏc/#g4.6|Q0ΞK A ʭTO~hrus DK_ fG^g]5;f.B5Ax޼먴]O3GmE,\Kkj!shˍ}6Bt}dDzY3̵޳+~eMț [zO)åΉ_.Ƅx%y< ͗С:BPNc$ڍ\O6TKa=Ϋԙ+^zkGxn/.>ޮW2nhUefUF_qgn{Wϣ;w~xz|޷mznWVߙ1}(Pyyke\˟lg+rݬRSv0n$[ U~۹c8=fawp>7~]г&YUg?Hh08Ljh$ @ԹJ:Jy;@VK +6)OB*HfU܍ǰ/E*A{fPΗtC QR"4%[-{N{|Qa`ϐ>cE*Y3R(@Uvi5$tE'eJaS;smo~"qpL rOtp 8VX luAѶat R.w=caNGGޓR&̿7?%6Q#]o}T._vwG`OZeL SYBXWCz2ٌ=(okbXu aj a@ohmƠdC=\q9W|4GX/2:mch%s=6'Uΐ$qK7U?Taʷٞ{-]ص\%"Xq&&K,a|[XtxqkL 0j r VKn:h\O-׫I35'Vn9.ߘc8N'ȥZiTϹn@4ُJ$Z^a a^^;kPbxv+ЛPAݏ8⹪.zA툜Z:WN򖠌!:Z}Ό|Ű" oߪq['Wbq!`N^*$FE۽wCv QV]}7k/^:~pَ8^#qqm5]J`yKϓJj&Am}`߼zeXXG6zY}wɃ.5 ڈGc'߯ݳjKG$2Nr,6󣿚}u̗"jxDb9y! xL{OwH?\*w d/A 7g OggSC4&xL;ܼs;SSaoQ[{"jr? n ?mИLؿO ;2eG@pdLdg32ߪWQygAYu̵:=wөlTRԹh w:pjR?w~[t71Ov[7d},֎b*G+KOD->ǡ¢}ji[PWb'hES+vkc=s )/kYtzL ;Hģjc>prO$Pi@ݕ=j5vҺK| ԉhG5UhvuKtQЛR8uΨˋſ=SщRYQԳF抴:EJqj7s(uEPԮԬG$[> @hΒWCϽ~zt%U6I,# 4o[`RRD@IAf1y^j-%5 z׃gr^Kӓe1x.3?w B 'z'⍿|z ]75\ \ m7m#B_9'85 )Uc’UvV>#Y܌s_lf[:|H^rj?tv/jy$NØR z^~'i/4H0t$gѣ<[҆ ȔPeEaV;Ϫ˻WJ!/+,qEuٙ=9뱱)tjZrE>0K_xsl%(Bw`ޕы-.}Y&{Y.Daj#6måCJ{.e8gVK\gկ҉'g{k%}⊠" ۩mBk L_J-~v"6_"1]E*L?ROzaә{yL8 q;oZɎ(FG{=Ygl j\ =n׸v p-;}NsEӫ`H]>f.&<*wXaC*'Y+}{?߯&3YouVzJ8x~[eoc/}r&4{ZG:KqRD j mqm.|.lfGTۢL4߅ܼ|o1uO<ɖoѶ9SeRp^;>^*fHTț# O9N7*f|C3N}dÂw S'b"n rK)t(Y.:?*ř>Az'ZATH럺1KsVg}.4_x 31M-PhЊh7@=&I&9dH}>%*l ETXяY=w#ZF׮S _4ApkS`Ohծ"+Ӕ}Dfn> Τ9E+:Gd;z)sZYSE p$3kWΜs"I$ Y5L~|E(Yk+&2^euj!A990W<#b)FZ/EM3(CDCz$vVmʑwmepj~ _6?j` usfvc|6@;,.p=Mujgxўk$2m_5ioAŮX{$B}t(^FQSn+uZ!na{4g )gٟr[?>ϰ/ӠрI3RC#;᭺O>3n@c{}ۚ4 `%FK'Ln\Od7iRsoN۞Km\T!.xJ ޼j0pgu匭y?>7^%{fc՞B}5ǽzrQݧELllZAč*,w)EANc C =^JSbUx';0d‘aʇC2C=Zr7դLW~ӌN%TVO N/y[K>UFҘA9QU9H,NZ6>"Bmw'n.xw(W0sPw.@9>n,ug{ۛC٧=&M>P9ݤ~]?{.6SSgW(w-^75T!".UBa$q׻>Ήwy>]8ʪro5JZ%GUV5EUEyNm xn1y4֨Ʃ $I! nOiaB SE((]߀Ruw$T~Pے-_{\,Ȥzt=h_["[wE:LU)z"[R Ͻf{v#fd(Ts&gNTϨ|Tv"Q P %A. CS30xŶ ꙴ4䰗ur]:8(- yI{}DO^xA b8suU,BYg>b4I۝s o{5ݺߕqHv[\㛼U"=y{M {](oBƚzq'Te,M,2;Qo]ʙ!n|X6[>&Mͣ&KԆ~=\(@,֨2f6R _Zdu!b)qHd})βw|[VH޷W>[1Ygsvt|1y_٣P( VOlFC@Wv\oT8=A+&7ƠZv3+ËkŻpr֜^ {8O:E&e|;l%\7mL^d$J|V}2Am;]'ş$D4\Fpsjc$ިck=`w!HE.ÉoJ>bzgҳa ǖ'9%5EM[K:;UJc:! _..5r7v:yYOEWsnY2B֜-Yòa+oe9J/}/䖦5JHυ/U{cfٜ 6)1nUۅ*X-cX[k jrcgr_ 4Hr.X݂궽gŅ1 @pۺx!4:oT]@;p/6t[{#^0ݠ1he y~duCby8Ȟ?A[GTQ]ڋ~=˰V4K?}l>ֆǕYDf=qU_YeYvmԭ7<'Ir(q 6OȲJdWuiċZ8gc炒lU M.viY@OggSC4&ye[>*5Cv5BUTa7YT}# ܸ~ /]* #@8Czd9|c}Ri vF5ڑqSC-AHWn_q ^ |[wgTBJ @XZ(Ç>B"k겺)+RԢ%:Σ$ZūԪHpqxq*J ([@Sb5й"o$*NI`5J!{Z.bB,eN*BRkh\6n;YzIkk\0;akx~o"F1bFI/GS 쯗ta5}}Kw`8\gGWnɉ.{;81'8MWلEz3G=\ L5>.{eÒM1jn # =[9giWU#ohM6]cˤ9M1Z<.D/'e^O]g] + |uz_,P \xc5}Iܪsϲ>ֿQzz aX=Llއ lo(\q ׈3&KY4\eߐp4yds_~w; Ȉ_@ wklb__ofRYbZxV#'髛z짬2/agC943ųM egUzExٿK?#,87ҨWgǓ-jc]ט8}M"|=s6Dͺv>2T 5}w[ow4iGٮv4iʃ*ZbԮʪrZ*rW3֘_ӁLDžk_cϋaao|ڛ!C[x6fsսo3c̵HwgFڍz^i&([=:JJdz7X+#" xRo\uJxǾHVyl^{佹YК;sp2(.P}:|w3ԫUj{rA۹qz m8;f9P7{;3nGH+pK{uW/.9Mhw`!Ȩ{q;@<y>:M? 4/tײ%|w_!-0^萹nhz*ѣJPh@ 1$,J2hYEcx-BҊ}([J߶]Aq>nZ/|{ c=2%y]ρ/ cvK=̎𒢛|r1̜yϮ ky+YS8b]yqtbKjog`I0W@ pˡ}=h%Lp~Fa'LrJ㘛u-5ŗ&8\8s-LƟѳlb -~{ϝz7y۞})3eE)f`;yĨq ٬mód~u6,_Xs{W"V;IJgIg{!IOwY0K.Y Fcǯ(E%i$ +n!()g~h?|礻Fz]ܳta&ꬻw:cw[M]ws&oY*=2 u-q>ߓ+:/ ~frT v5Wh嗟"8eEmoUZD!7Wo?ׄY0AhD&>/VvMLUbMWզeI$J^$r>y;e]r)jS>#-u/ z{*u%[iz]jVRɼUU^T%5qh qƣy; SN0<Y3jD]w'+.3wݍu8M<4٣)*k'6NKqQ<>ཤ/e{͇KvO=zk]Ֆ}LZu[Ghgn9S5G^#K .GW#4Aw߉>^v*p{6W.G#u׹%!Lz#xO{7@c ՠtҬʍEΖ?n#U?τ1l]E6F%?ǯ8tt?'iyLoB.89ʉf]g#3ڙkV >n5 Eޝ)R,'SDBĭ0FVzܥ DFyo4L.0\]bdHyK\ȶE^U6O޿Xyd ϊ+`(nt5g?)9ns4٩}fFz*Ja:XO[{~S+EVڶ_0 MSޟ6ӲKT+ c߅n8rQ}ʔZU9Y,gv6xbj5{e^v`G st#U𻗁Gr*= Г8u$)xIȯIx8+R+3 LǞ1I wgU&z{=_ڒJUN#^)$:5扉.+EKb`򕙖yowfomԺ~$%3곺S#Jv>K }UWwۺ.gνOz_'ԚuKeڵCu;c) zX5lkۈIj3&j GѮDUlEUuxI՜""G ҭR4tfr\CSN=[Pc풲}Ch:r4+5j-=;CfF%҉z)Otf݄9U'U.לdkՎ%w!jRfݵzUbV6ywpXH]qj^-8J/>cuGI>EC+NNR! *.gFH<"gi䗟xda٢%=GtFk9j:stv.>vvS?8ݥNu Z+ KirZA233cc *<N ˹#78 yy盱WAQẇ`=7yW{KQb܏"1$(v/8n>&R]YUfXuP1n]g=o\CO1|Zߩe]zE u `'vR/0ػyׯ? }u‚Dq AǿȬiC`PkkQm$ m@08LXM5)M>>{vӾcK!W78Ş&_0 _>ԟ;z3(ccz=]лۚ1Z̊nVAe:H6Rzt=S6}shDxѪ1syOv ik(-_ߩ_I0B]as~'lF=lθ-=p^_M_*"*y+Sy*MW ~@WʠRډGMFy`n9% M߬K[xMX R8'h?C.7BMyZpos?I ߝ?*c5/,?nW'bڹ0B zhi7{UޭS^[ⴑw/ol[u׶Udbm' PغB<|wz֕8~68Xli}9?֧qm*kvn)L׉=<e޿沿mίn_c ~h,5_nqu<{>p?ݷuWųȦm.qɩiZQs$c[I=wu|ar% )0 3[Z>+YR,} dz׭$cCl٧1uk\1IG8#Tr郤J/ ۦկf9}穅CnZ5;#&|bdΕqf|ڵI諫޺4.=3Ҟ|-G-6E/ <.mHxUB4p{-Sa̾&_Ku,Q3/6rZjd3Ϛ*2yiL@:6 [ͱ>+tG Q o__sg~.yȬimcc&8RO+8BpFdZa۱d1 ;=.g'nҊ-3Վ;JS:۴֭s47t%ڦTSK1|_'Åݬ|nP`|-:4}+b'y+h!ǑGXx4TZ{{u[Ee┹ؾGqW9wgAR(92>/zXӖ904~>xaV>=,6L5KT} `Cd7NZBQ sUuV@ί+$[{FĬ\D븊,[)u<5R jheԊ#+М#m PUpy!v]/y?V)ZoƲ?_6LА^p3p?Wٿx?keOFWYmpP?O1LƓh:u3iUlȹ;S ;t%"glF0<~fmMgG|<}^ĻR_$oo tꢨrv@&42"p_|{ۇ=hͲg}΅ʝSѣVO!<E4 BEOwԇ4 #w61P#+\=i}5I@x[[C5_]ljv}xXIH13L{IRZ0/j}Չyszpmk7_/%ll?3Pfv/M:330/i [3_wE]d33?<^+Y&>3OggS4C4&{& ;'tSP0OFu;'~Y3IY2:R/zcvUͱ`H5je>ZNM7pHJӯT1+OmƜ6ẍ9?k:%qngRM/NGS:El>m.duʡia`><ۦREɸ(r'/RU6(ͮ{7o秎s=<dS;Y'ޟ9]"){ ajXo=RSE{ =7V{%vSs/InrfU- ~/~Ir)P=I_|J6H=1Y!Cɲ4|IΔ_g;?6k7mm(Tjfۙ/]S9}I=r>-/?g9#rB2v+\A&1A*Xy귫0_W浽xOz( 9?|'ز8BE3~ y?J9LOaL?DMCD^Z:N4qʈuëԟ>>]9"7~_sw=(}ɼz.ݍ'x L%FB$Su؅_jaGˇy*{ݜu[_+iw֛#Uo+5_* QYLz4jrZA^nQLrH}zН+wU=?__v[Gc@Z2-4eZH}=vE|0ք*Nprjϥ>7b3W?u fym0GT|5@p.X/[ q)[>Zߣfm||fV7'N/k\*Yu%#0YUznQ_?z/rߟ#z[m+,6}fźDvVm pGJ~yo^?$w膌t,0'l^:0T~;bWwe~_yKmG0mMR&3<_Zug@w޻Texȋ|d;5Y~~O(U1?&H!?t-^PJcǾc\ia;?<:?# .?=%N_W7[K ~_=*سhηvSn~wj43}nr!w!$e:WZ3km-NuVzAFz.2MI8 ~' m=cb 2F^槵{\#{Fļp|h~uӦ@Wn8I맃gs 5 BJ2Ynf?:z=5|.ƻPe}xn=] {זj0?cN:ɂ:qw2ԞէS?REbME.EHʈ#jmI]{XK޶6{>~۷pE~;i8DQi {>R;\yS gn%Ǥq7>"5p_ɹ ꅖͮ,"iR !\ ^WS??_8/nAp!uyqxhȀZ\\D_,Hk\bcWCΧuˮ鑩\j* 6ճMF657|sZ}n?~;FӤ*wV;8y Pg<'ZB'CX4S|PTU R3MbD>՟zו7pޔ~󴽰bN8p~mnVϴ01X6ՙ% \hL4k#60{)݄Q-!kVwp^2_68zNp9+՘͇G ƒ }{>ޟ /f#'u]ܪ;.m2t-YIW&U.yoϯgF*XhK2N~;sŔ/{Zz?TNEwurGh28z?aX[`^ !zlU6rK^;=eeپy{N8wu:ӷ/}:^Nwc.3xfY{v(\=K_u͗1URyz1Fcgh{ܸ֟Q`l?{{z<xwdrgb^η mWpᳩ}nqb<&E^KsZ}w%>cޟן`^ BEzxf/‘jS ɫU՚E:~@]UL263KgM>`Q4U()-/9bQdpt\shF %P̲D~=Ljq7,[ {$_w hMTiɹv,96.8Y/%"*YcduIIE @4|KRhQtlFou [ÀqT/U?Hs4}v/;Fj'8Qm3G?v3'ndnaP3C :{k88:Nx_Pr횿=l7u^q\}hFbuUˏ~W"vњ.oz4G]Ry0ٔWv/xPʼw>ҟTLs <<7wp4i []'=ōUNX9֨|G7uUxC?4U+^h Nī&sv^T4QCh4{ew^#b+94|ЋzqKŶ/~޾CqT:.;9mY671[gN$~^U8Jl1Boݘ |R_O6)Ԉ暏xӚ$}k$I++&& 94czY"#+jvʋ%--N%ɖ~iRn}Ldپ~h'lz^vv_|'l~# J$"D"[@\}峉.7~j2ف^ODyoʬ0st~m.x?;ʰr/e6ߍ/ fHMA@}:9o Ȳk /,^短>pRmwg38R_)%wD+)ϡDE؛JH{M|?]RuNֹy *rm|%xz,pk>QMs*vXq5w]VRgyZ?9}W3;BR Q 9 Bɍ4jc]5@+~dն1 ˃6]tݫCu+!A@{OXH`*CCI@3HNTGҦ7FwJfn9vO5p&V4 e@_] =pUL=xM>|j5~k#聯]~p ҆ǛyO]u.![!~%} Yq.vO+Ls*ߘH46s۪BQ0PM~]W!\R+vw1ս>~s ٹ^[:0wEـ,?L蠓'㏴۽:7vKq Ke#lY.8l{uWR 6{okp0ugK|z'B6g[0Jxދ ɓS8ua +^ϩ~_`,{ ?*~?ҽF;}ۇZs?-Գ$KI"-n'~-iՏc#9zS^Ma ={]9(-^6=pÉ"˷U/֧rp޺xCTÕƏWTC&O(1!!5yw./n\|K W U!qqcSdr~=_CgYTWMe~+yn]TU!wiRg>i<&^o~mχO|.nTyux}8|xE|/ l·00m Wqcrȇ>oL=|7B!pn; YUtrk 7OggSDC4&|ؕ:KV6aF{GЧBQ||U`z{]7Եpq4.8nL'(p:juX&jXR( ,B'v\Uv'*H%,ؖ Gg<x=P@{T RDbWm2c B <^$0m60W\ > =0O6WlsT_ϝ5? ][<Ɔ-G= @v &oq7x@XD, FiM}|6 d1Ff&XH O)-wiNOJِ`$kRr `Mt۴lz^Ezu5 _)`:d;0cto|9-щx;1q+?͖湳yY0G8Qh:+Peka++5_MmBDCSIqVg;V]o.Uއ>3شe͔moMWu:@ J|ǃ \d q^ȓ ;{?GeZޏEygnV]Ƚ蹣fL[3}0_xwZqPwfH2_~怂hO=onM䋖 p$=R2iҫNv,(39"*s=HAJy/X͌z_a䗖4_b5cY%;(Qhhb(a_\[bl"ӷG|Vo_3s#ҷbĎ%i6n´'’]oF)@`)zVL4\Pn, vdIZptacl1$Hc!9umX.}%9bLH+ug\յlWOvxr4P.9џw*{[g{F7w"ƕQyj[YXO}-(\0e{ MJ5xCI$*k~ac~mNT?za, {*ಲ. <~=.lXzm6+x}xg4cYDU79>/#X =#a=$:)-Hj[01V?L#t;ѕlj,S23t+vG3TLh:JO*{Ab85uI *{Ty?ݖ) P|*6yf gΝdzُpc"3*q=t)-]0-*=pBHA$~ݒO~ygo %Qf#)]VJa/s Xݬ%:ރPQd9LNwjh3'd <2(Kt6Alk'*y8NdUWW\%[YqjKm+nO 6r=A^lVtGtĸݐ9z3I1`~e UÁ*4GwXOJyZe|_з4fZn!rEWct_6%tQݧwmlk$/ogjh/ѷk8?Vy$m"ܔiE"^`T9j6X+V >C̽};ͽ9E˘g{=C뺜:Z-~YenW3!e'GĔ2yW'…o,i hoi[Մܶ~!riVXV$O Kv qZbNk`.`q< 6%kyrE12V<_!|]IƾPHdIV y ϨZQ~)'.Pv*gm\.bvwMX_ 7bJuS_#֖w~UхԘq^0-׸b]c6"4[Ҭ1/˘eF`7zB vB&>e#9^;[3s %%o(dq{EP{Ln Gu"DVPQz?3(Y"f}^FLB| !3ҧ.geJ[H|kH} zO-1zɅ(_2H ,Z/ ~Ǐ T3( 2B88r5sdWsB}"jnzn<vx]\B=u}fZ4v oLhOxjJ?;.lE21ILpڱZ(ͪRj¬;*膷厛$jNkcxDk=&Td__vK7;5|؏[o$.B|{7m;ߥ=lͤ6-tL s$?~|f(mLgh̸qVǞfoSlۧ3ʍ"3w.'M6P1v OggSTC4&}rq>lf[9`CQp %y:9-@pލJlp.+{k_>i}[kG=cˮjL+3"k*H$"sߡyacŮ{$tEtg8S=m p pV@q6ר{jNWj$q1CT@hUG+4\W>r6ɑ. @$aP7o-@]JߙJK6#ڤ5jE`I>?˳G:Is,*W* AAtTOOokGmaRy(4`; ?")P_ޣ P7vPM Lܩ[qs P^ 䉮Z.7ƴQ U7͒${eg"Q.+2ԧ9\\B%F"@5#,KC{J {{ 9Qѝ 5=rTP˶ҸtIjWmv]ewUiT S7JŅ5aL/URTuRY6&]pUeq1OTT]_m=;٥"94+/oCakȯ12r;y0!EH=78ݬXVB-/Zy#-]pY 3~h۫9+aM0ؔty߀Q˪Ǣ=X9oݣٯ4/h-ls O7 N,RqÈR)uO3e"/1xQ^y;''z9~p֬=|wn),p.ݻ^o!L'X.$M)C&ir6v5] YFݮ4ڍyc٤X.Kuw9܍:}].nJܑ,w70lhG 45Kco cXM<{~C$)̱XȚ8rpb† s~7h%7*y7@U~ԍ,\)soノn9pwp l}5}7C(P"~Z.6ʖ߽͌MGfHa^iwͮuɏ?{FQIֽy~y|0'fJsfw'hnHt !ہGgF\3-9;QIP 8,ĕ1xc'sm_IS\8+ξ.qw z95%(n; w@T6Ό=;OWx>t~an)z=sWӱg1-2jޟ _7 &L~p Z(fWw)W xYLJE5SDXD@W`6Ċڔ3~&Ǻц# D~$7nyyؖ'񝇾:coM}z%_ gYİ*}Nu9yaZV=I؏p@ʐ[+%\ K,$v~~wTOn\$u s]{6jGnwi֛b_fMd==t׸9EH?EUK gYԋresgRcȠ%X.25Hg6B.4>vVmij&+  zΫNjTf gN(h?R J%'7 pz|xh񳷐#"U: dN-R;i}"Ir,:&-p !$q|{]?G&n""}\P4Sq69"(>HL30XR[`4MD@rp̧G!_ Ѽ҃SI ܁"{r~70sǦuw"_ Z3kU./-.h@ǯR^Ԉ $岹;7/(?y3qVI4!]kgA˥|5DՓScyo&YZ䝕?!u8gxg|`N0=Ѝks]:(;\W[0:&</#era h-2F<B2ڭ!UɘPF|\s52S/̬Hf{z\<6셼EtsLhxq5(p?^1`܊7⬹܄u2̢wT4/%64ίUǪ~*,nW{.+A'ݣ);񋮩G9ҢU&yT^ #ȞL9wo/!CBƇDjV65J»ɯE۪=QMsYbC=uy\֍ᵹ?E&#yK?д|:?Gs4St?ƄY6:T?7@?*7mnmxGOoW]^%=ZAN9:Ll#( .f~ fs#f|o@%?vr2x~?qFz|w=1]K| \J۴C'?%ZC굤 j ՗".vMƊX'w/ؚZF2w 2+̸XHTBY?fBlNeKϝ2dQΛ! &.~[n_#F6_>>c 7eѱ t]%%Q2y)C}"*X\oMդc!kH&`4 p$H)`{+? Kv?gyɣdT 2кcͭp2FV5i*zE_ZB 7r=.o;ϓu6~uX4 ˪}g5Krfz\nK]]j9J㘚e-+bz.w9UeaM6_Kv=IZO;>H8bݦhtOxSqIO}qlyvnuIGyeb|}O_ 3@6W= t"#BAƎz>r:8<_EW|57:kgmR̅žΘļ(5nht8k65E|k{X }6pf&tDuTIvwiҩ1J"-@ .nNE[G%{:=~ueR.O\ZBl/d6Л9Ft[XV~nJo@Y4}#L?m=x|ƅ,5Q\|>MvoWt5P X tQ۶&& `84'n!7\{:+׫4oxS5qB9k}mb[^-l$s?ŕG|L,;I'[Iozluڂɞ|_7=c}sѩ^j{jвYI,2V5.2py҂%0ӕM%ѕ {[/c>x _na ?hn1 Y#([@~.0Fq^?٪uﳬTukVB(xj$3=Lϐ{Z!%*mc>j5騁֤3 @ɼlXrRBW]/GЮ:L* Me"[ZSSi?{BX@ԀMO.A{CXu7 G]+AQe=򸺵rpZiZTY}q*sE"{kn~rA :j@28TB'gZ{k;;CP"(}Cp=f.UG7ځ8Nޠ>5I [.E\ƏwJيb[tHY/jY6F/7!T׹՞.{/VA0RŒK>7$7"L^v.~K,ݐ*nY.;Jc/yxS3ĞSXz7xK|Z=U.!"=V}Q'>_tMM1룚}uB.Bs]>c@4$jy-lNjEm0ϔ6w *>Uy_ӣVy'ڪ.DN3vn fCa:[Dzzob\h4=^[-Ȟ@}=#QG `T{! K ^!.Dޞ/Y@g(N`?5X)Xe~q56z~T]%~OvES#*5/Ww,-VW<LU [Nx6zU)θ3Zv[߿}F{^9U›5O|uz6܊e]Jwm}o’owKk|b5HUqwTu̺<c4d.U|Oͪ=ݗ=w]&_m5e0f( h&52|֠v~3M%tUL$]J\r8Ty+ˢX* Z2aeݪ_l8\?U#_&KGq1x~Et;z?.ٔڑ4t돪N]LeV:>,{9fGK>EMD3zLB4y{ޫ \n@ y {g~AZ9Oſۃ#UWUGD= jrP;` 5&'&rn>47)-6 b@ ȪZ-8C?cXIcp(gίxM\%YRB;mCmӶI>z3Lr{Ң!si`_f5'rO4d.S8`=F*_'6h]Fqm0l3>K5_Y_]/]^$m?[HlBF(![{+{,Sv>5!I"4Ue(q:tpu߇ޏ-h~<n޵;.L~ L?TWlΒ2-0Ӕ2%>[S!a51r-.J<{> 6_?cq<nQ<-p@k}Rs !Dkttߎw22U:T$,nI9̕7,:_"&{np3F+PPflb ΏEk8S6l$ѐAl;BGAjY8DJ P֨\k;ghZ~N+Pc>8$)T#tx)fш2ڝӊ*=qd?*-VUk R@r żvlTgO`<lc14ϐxq&$jK4]Ĺʹ9{ zoWz Q)mucIcĐVG|v&XhHQUΓll򄠂TeQiٞSMJn. }x*)cR_Y?7'+nHo9ЮVK w_Z"υʣ+s&~ȫʰhfÑQy xCT3AߧxzIh/Ʊ!osz~d=PR]Y;kY]P4=*?ml|iɷ/\1eDt꾙y 7D%fe~R^=|5k5Pa37~T1Wk~s<8?o<.i:ƃM{߿wfbHu-oF/M^>ngeB~C:',{~6~I~s2P_*Ly߯;:h>wzr{Yv5U]s=^$)>yDN`vz/R.v§\i!@nqX5P=lMh\oCm^]7F QTMi\tMQHnw۽TfivێҎm`4_^a[ߖp ,Wp*OggStC4&K8]I|tG>2a/׭w&uG| /U7sQV{{wgtnq? Сn8# pr_CtM17 __1TfCc<3i҇d*1rz|rWf By__6/$ZF4G1Bl ߌr!.|^I6 ] $[nSuϦ4N2D &%{8H9Z 2+= 폒NfXysUlD"$-]W<۪$$IE"l 2nUGpf^iL~wnO@z_W7^\jPDwWcʮm&LUɜH/֌3yR+TzjQe^`-"HF߻;^u><=,@uW(RW6s?\ďRpetg -ū߫oc>7 Gؘڧ:ET֨PVGvXgp*+u09)(3 E0;O+\ > KfҩVDj]TNV s)RMG9-N~ȿA(_[])aEGv)Cu+iow:]Ġi߅` ``nf9U&Amى|@'p[(/LJu5+`#cl6 e3bMȝ&5I02zuڭʼnq!v Edm^ӿ^ң?rr0ܳ?^rC)޽͝ tܬx:PSė޷pF2/7"8%7%Pj_>-l; ۳^IDM7@E H|ٵFyA3,P%W@%Yj\JRˠvԃ|rN=l8QOCu[*]ljST|{5hc TSdjXy$cZvȸ{lcxtU sbbBjM‘>=wIPəpͰ=!h+ys=_Eӎl!A3[kjA;aYsEg;OjxPf*P%֬NkcDKtT!ǁ-HqaF:XqvjS jMwjjD;k(U:}8@'2v=6O<6}3BHnv@}@9,ڰ,33vږnƹQiذ(Vˇ@VE-D]f17uP[c&";NR7wZZEX.nmsN 7x4[ NȱkΗiZ?6iMG kC{*\] ^ģ/#+.(SUQQu1vaKg_$$AydתzJ[iQS[=tU[E݆ֆ&cn焲~K{t}Nۭ{g'ڸ'.TVBډYVУ^rjoKQ~sY2W^?e ϴW_yhp9_,; ¼V2wIk\s'&zi?x<(W۷ ʆyd{Q6[H21|~҂߮>9Nv<g3_̺{.Wtw{t^}(\dcϱnJPJ$1mEd!=^S%gD8c*pUseQ;(~jvC4wSIpjxT$5R~cJ&* N~ sm'p *2,|,MBp[ bp` \:˚tE2niD(PQJC)ڐ7 խCvm)-h[5N=ڝ gQFK If@%Bu<O ZlP{T:N%3;ö_-ЕRہ։fv?ZA@WFR:EZςB"@'A8PۉHmđɌS!6Ӈy>tKfjUcQ6{J̺h* x;z.[=GEe>#J_pNvuR8}C E!4K{k<<ujk6YEFCV1u\ C@d, HԠ~M~e4 P rLzM㼻nSA9Vڄ5k@=zsO*l]<{u\jS#򚄷8cz5[;UQsAr|~wsd*t{ uCY^5ɧ6'!pS䌽'S ȉvu ~*SeeT'R 7> DdGkWDTRZ O̧9Ln37vS\io8+>{ZYLSο_rѩ!i]pRct ;[%z<4q9J]XN0/ [//h ;=οUXξq1>.vp֬ 1LΓ>~_u6_Q0Hd|70׮EYS_* K'գ fZZojX1}ay^JwԛJLx Dz&qa1\ݿ~CPĥN ޘ%r̬2laso̼Ϫ-ZZ);Mˌ'S]w,$ s=LLMI/rJ^֋Y(ƒx /O%&cogϧ!\t,j%nWô0ۤ 0o?N(CpTqU,֤k¥ ޷}v"ܐkgF`17(1f:q@iZ`71ZEηL,aS{͇ "*EHק+z{sj)Yy)5ZBS%k~7\pݒ^N63. Dz̵ SJ]])jAq4rUh9dTICJJm^ZUqM0S2?Co#o)+N=փ>9 u8g.2ucv=ǘYLRP+{7ZAu/?+.$jr\N^[Dd, y逦 NSS飏UTnޟg-#PG%)(Dd"̕+ar|ϩ*)\ "f%vF?cTP4fBMNV pN"5DbQTӷdD63j9 d.@ˇ@HKF}QG< Au:NjܑnZ'e8~ FבKw}bwpB~ǁVpP=lⱆ$ZVClozQ{bv-݋5,h"5;1KRU~_:Yud!<[-LũV̡eʢP|FX2tk"_m`6|7"Yn(B<ޭ׮R-'^>JC/:}جY%#CChSWrGSGs$=|a6E2g^/^?F3φkĩ d5OggSC4&QKާԫگ{y9gߝXJo$G܏x]yhWx wE꬏íi +HMr}=Q?Q>|$Sh""qx!G<~hOR?+EApT{$yިsy * { *jsݽȫlO<~}^{zb?,ϿѸGsZ~6&ʭks\M{Es#97p ?7@ހm^r<ٓEhβ\4$[%8p ?)3˩ P3Y)q㯠!brU@è<{"Э{ڳpIĿGFߟ[{#;vx9N/\uj tߦԅn=mmU}T:^%kyMfZ|5j+5ͼV"9c鍚- lsېyYsк3 ;z#2xJ=A+Y=.I%[MR?e+~~t7ģ7j{!3 E621һ JH~Uu>=Hא>>2=, Jxoex׉>P>;ܗ>ZߎzQ[Gh>fB `+e0#'Է9׺b尟1_˛RCV- "*^+Е YػBRڨ#s<֜!(uIY4P@eaE~ß|ujiPj3eէ,g ڍ.Gݝm9|jM;7e:*5[G7ggI< !Ê xGOoJ| hGEk_0iőy96{m9|k@8~O,:I"\Q{ ϼ5%zkw]F&bqY(IYD1mu<ze}U9`Phэ_˸OWeh|\ss36]7^KU¯J}U^4ѕ_(p K+Z .tAMV9'iSḗgM`, #N)巋|gYx~? P;l_d8g- M)Akz "ɥ:4_뻺Gvڙ5#sd!;Fc•XNMWQ.B jU >^5%U.7/:!&> 7v*PJ^}'O{~s=J>ѭlՃ|G{. ~cX Qg#r|=gt쫗K?Rixl['?im3ӭCK%tތ|+\i /8J޻;;؀3uzot  K}va6Xo@:| `\MdRi ƩڊJ84t IHE9(&Yw*<:!@Z8HA7qz!"5QG۵RТhpzZlݝ.bn|H@v}r5D0Mzvb=MMGMS <[pJvt \,ezCLL2Aq1d*?A?LOfy fzmd5zE0:#"/:}rL+!oz#rW+0F=yTY!ܘz+'UZb=A2\I&<`P"E\5c aYV%gZuMsR8iľ=*=-[q_jhc3]=D-<5رSf*5mI(Ow\$>~EܰLG0W+жcFWhUBR#%SYkKn,|2DfN *z-})7 +I&ktzߢq^+cUq5.2 u%9>;K><,Po᥵n.XfHxhDDؕn^qbܶC9.C`Oci?:_&\0Rf^K-QSM}yz+%yWENw!MXJMTaNʓ_fUb[8VMZ82Ε~\'tcedF;wYqZO&~uwƹ@sdhG| <ո}a7Y/c Mͼօ?GpvD^XT2QoOIjʙt!Qcn]X{={t ,.C^H_ ^`3L˟=0jW kH/#ef.hM Δo :u @MbjΕhN9p DTjj d"S&NQ%GNVԙ '!*CC!MHJv%:$i{K iq"٢>Mc)>pW͌tkv)QhΚa;RG1v= N>3b_c8>e6bq4ݟ@!q4‘Z * /:WPLF* b``t螷x͹8fLVEv"si]€Ks1#=(ŚQO뿼ʼ$&B|uk?t*7F{ƆI7IqLzi4O!׭q#@k0N})t{Dw^]O*7UMk}$ܩjڵ[9RČ5VI1/b@<^Kj,U?3>n5:g&_/,ț.E‹ZzOָ)JSx-.`}TkV7ҹ< vw*'8dRquwq=#1 6Q)V:W }lTh:qVze}L?Wk<jgY`z mo~X~=ؐlft äMm੥X_zvr׫K*ۥfs768cNiQD9\7v2k |*V]W帚oAQ21+ H. OggSC4&gDǾǶKu@Ʌ5.WɳyGֻP=_Qw/=YQc>oWt˷wsYT9l}ojG/Ǥ\_)׸d}Qv{qZrwYUgzs尥DQ6@Tx}OLQQyKggcH<*Zh/&+hSw*8:uuΨR-k$NߋpHr5mu"[jVRZI'l;3YOZtdRY5*E̪Ukq#Q9#wHKd3Xw]r}MA䊎p|BYSghK%IA)LE#BkCc)YN$gdw"+wPgJCE8jwNoHgVV϶3F!Qh+_*]LiNڬ0lS-X6S#X1Q IZiOg5ګ: )}dkx%tR0^kCPuAJBk+]ݼˌ\`L݌#pyO5 /ۭƷLA VGj!|-rv6{Fb=?+k*^0~<>N|G8+bgu,*LR8ؖcgAWI  1#p9RV/\qWoWkHl#wP]F:BuбGE{G[rcfC:MdR2ay%| g@ [x,x5|^_ڏkISPǨ4~܎x?W |Ioi E.|g/>vCՅ'8\ ۺ2-/.ǎq ܊u/MT$-@ؤ+}5W09@{{,Aʙq.wlxg&>9mOsKx?guK+Z(WHkҝ}Wwc9_| jl~F}|rMniݟM0\/.},}>OxXՔWeLz1}vL~J=Ch<ҷɹwscE>Ny7V|8?vkx4[fRTȴ܁_Y.ڌMxŋܵ]Alɱ507P4 !?uإlěPsv=US>Oݼ,>n}e:GxC[Oqםg'3}8N/>q>sdYpSP=EЄAzO~~X?>䝅C5G[/O;~K߻-BaF&_LO6iZߞ/A>{1/uMqk6Tat/ó.{YIncٺxO~[ξgDo_qGhS(7y~qFFʒ̏C25 b@='"є6,]oܹ~;aKjWy8q3 xnp^pj{U?Ec.!L[~t}\֨Eg k' j 5O]鳻w{ֆ=Ʈ\u>ku5z_u9+TE}˷&)vS|iŜ 5lz쮏_+WcSSxYsxt*x+0'wľh~JFP*rNL[ͩO72K <Ӌv2Q~tѹGl,>W_A_^zq_^{L#v[=5~xOQZ,2;}N9G,DụrL|7byN)~YRHUұ ?mZ9Ҩw~qnQu, aqj]K:~֍ُlV9Gok\. MR''#R^6Иe!|8u0r{bnZmmaaoD)QUѮԆ%NZduڐ6YUbBie Gtnr>_Pn3 ސ1K5.%/%;s`̑ut!Ds!Xdh6\^<j .E,6S8[~k8VbzbaC! *ʖ*qpP56k؝[ jX-2]9 o~U$܏g1$AZ,/h-l4Zt mneEq_wOR\ƒĜ`bWY]]UT]l ;v_?BN _A(w@?V>jߊ7`0bS0 J@=u#ev9]>*xӵ?zVmCZ˦?t:]~W7~`ե3޳ SC[IMG 0b̓`3wɭK>mY>b]|~}WXETc vk5ȞL o0u"\@ 7r9JLH0T eԘ&}R;\d*Oꑁjͧk͏ٰUEò2BW}/;"慈>Ww5xt>>Led'`؋uERYL /,͚VX_]o魭-˷v :#ZbK{/G̚3bXx|P!$r2דL&aq`saNUmC22+CqYseT0Iqb.i?{}W-.,ߦ몡XE8oÒ\G1~7R lgڰGoey2$>!f^췽J?m{OM5y? 8#>DKpmm1<wcԅg6nчV4 t>=yE*؟xu鸼+OYhۺ__t1~tUI){ڃ2oe[Eڟ񝫜&\+08=} FhտƑo}}O""伖Ml<{ ߟsu1T}L#2J[ѽuQ$Se~͇ʷ(AAn?wHw4'z!®RKi:h\_wpvGcNSN-}aSl9/T3:*g{4|#im. }TG*r?<\DF2rs_{QSLa}7Eifue+yK˼ V$* ~lӅQ:F/b;5&<j7?kuc7[8LЮ,o d23(YfȼgHhVn?d^WW=]:u3Z Tlnfv,sASFsXnp3KNSc|8.9 =nux"ѳ>Szސ?9-ӌݍu,o |xt~JoSgT24Q|wCmmg_GvR:Oƽ1s|{OG˳O}- <{w FF#E+$::}NϚ zg E5w2@I;J䭫Gkl'1ᠻh\K'"Že Վ]>ַMrդe]25e)dB3P6H]$-zsɥ(]Zjy,kag9g!ؼݤYhSk-j4YRwyIf*^Y"ݨ{,oo/|E޽<䪋Xw`^Խ!W>`mJIdQWYs}܅W]Gюp2<=nyB&i]4O]gn˿tM=nēجN17QTlj"DYIWmZ8њˇHKYqӹmVMy^mhIzM "m_QNgj+f7kǿ?Y;_O]f>8( k[|KܮcYc8~6o}ڻk|IOg#8@ߣO؈Ãx8Cӟ1DoXz?ZSe84{V7(XO'BPl>O|dQh  Z[KxK6ݯ#.<{j,9TRj=@ĔGPv}zr^Ti(k-NE/`l8sϑSm((Dxni^S._{n50xBEGƒWEQR}֮G.k˯\?cpv׳UrHPtV|~#iY}bH 5xH:$$;BddD =!7_Vh'ˊ)IEtu>z/e)?n)3$ &v'jB@:Wez 4gxOð3z#qq_^ubK3Vwʒ)EF~Kdp:+)$' ;OQ R=?0Z9/ [i;W-g43jEmL67|0xuxU@LWvғ.pX U&]ciĕl<.发M8cuu/`% NgOf?.>W9SXD ] s.=,{%WF4@m&y0aJJvE^ϟjs!:wC";{xG=~oe~'!i7/0^N6y\O'1X>;}[yD9޿[{Xݖ — NwWܹ9uz@{7bL-o) *pU7_TȀrR*ȭگ.H\x^>Quv^JK{2-Y$pF%,`㥀D$] NZ:|sywm{bwM6roݺ64 +v)%<ҍ#y^qҵ_%K6ݲznci۷4^77]I>ɟz>\MryKN1vZz;b1L<}sHz6I=t}79} hMKu56î9wd6WZү4/spH9<,J#k FCAbi8a鿸p:AȾ'[#qD|r5ZGrAi,s-IG T!~@ɩӮ/Y#zKFPBrJn.4ڝ~uO)agZԢ*Ytbg*)-C)I*SCqU@SJAd$ V[bp{=o:-mBِ}@_# v>1@(13[a\»U i H]ݯ9>6Efح4k4;:TJu?rXzv=NCmVh{(ȬJK貺غ4&1t(aں!D>0 M?͒sgi/Wxd 153c,G>/IE#!n}6|υmc-@ϭ{mBӌX/3𾼙PEX~ K@-Qnv ݨ>)Qc56Yt9i{|y=\*fw\$wƉŨK}b,V+ʱ-Mi3)If\wfYvhOڭ?빯~7F{< Wˉ<(SҶŠ` OggSC4&c[hm?XՊ"ۣRp8VGRjMPQ(0w`R &5X~cT"8\hmG" G\SCDf!74L,:so!8"s7y"%RCJE@8K3P֨LDkuz峥>n* jD2ةv^4R"B3wM7Q H@90‰ʜdW?+ $bn{L Яd[\ KpPQ1j=i'z7o@}3 M"8m+K:JNcG?_KoOCNZ+n˴ͯzфSNsAo 4;9{jmA`#S;lF?lo}RMoB&I, HcR{tG YWM;6S>l:ɘ<rU`ZJvwpͳ .s{yZƓxJ}maSZ4Ҁuݏ ]Hbyp횤.M8Ͼ[Ynyp}QEO>:_Gw_o'L:qW͢k8->M6;,_cy2zeNکoR>)ü^\w z 2w|_ŪClOSc%:k+fs-''*8Hbs⭊{wwLK/r2\l|i.W|){߭~;8:o)ּ[E}讗dXf:FRmڟ_{{*`KUհw7۶`2|v8 q75ii(<3 ?xg#/]^UMF[Gl<:<,Tѻ`BЩDhLֱPVUkDȪ/xqAEGE4{?cTrQ6 ?2{\t*5<8::$ֽ2SGg dS'AxJMeRۯlTjD7c3Rݎ=3:F~)hEvO_MUio2(s sPdQkֶw ɟ;j_7?YvՅhݿi(pDPb0<\O[:% 2ǁOx)ex3u!~V֪@11 NT6KG9rFAսpd@n,zU hZ ˄VX7IxF'LskAjYձ|k؟CIfe<4eE.5m.ء^t |r1ȼx)U?ED ZGd9Cޑ5}.U oW 1J0 R'Fـ`<$ %{JwkدˊdDd1ZpO3Pn]H탃CTG3^s2̵oHyv JY .ry߿IK7s!caiWOV~fw ]ǟb]|_l(򤞵tfojfe|O[̤D)Q@H| :QI߫_Ql+χs{\(oyT-R q1ML`V3*%zei2[Y )RjI,"P!Yud߆h@ Ifepvb?{| TLrL(Wbi:ZHO Oǯ;9I:rE;ꍢלYx?8ǰ*|yVGM%eNM9Ů@%䚺`=L闺˚)'Ԧ$j%<-`yEߍsx$ nosLzVtf}z{ġxn^}+SBhͤ䧉v )52_YErL'kNc#܆[Cl.dD[H5~gE#yMQc>X雦>N9US$wIq{uˮ-2ZknXˡhC7W]q*#R9פmH{H/ ΐ)PCN$֐@ FGM]&7]?Ҿnyn0M;T֡ D犆}O{U% vԼZ!|*IXySs.4껋_'k\()?[=F͹%Dwb~2ZU]DQϬd-?1+.k %tE +xuqx"=hF.һJ~v8FY9NP.!tFvWQC8$%ړ3?71 ̵r{jne.:ht}ݒ]]%3_J7hj])Z,V?Dg;-E= s`ɳ) nNtu2g^Dv^ϯ8ꐜ@q,q*;GDй{EC+id.3Q̺L7in*ZәJ YQg`u}Љ3V|9Ipu6V$7A=Zp|TnTtm>s "m  1ܔ7c:!Tߪq2O6W$*/ kdN$Fhݛ:hS*6$ۭ%y A:> Z}]=Œ=%AkXĵܛ:WZ &yGEC> +{yn'evޞgEI}P b7LG [C':-|1>'ВkvҨ_o3;{Q;w6,ѝ2ڰsGk6ЮQXke| W]n_*bWwM\ %:Uꓥj-wqq{8/%hUM2wt}:ɇd `ZwpBm>R88.*hu`.ͭA,h h{?޵;yx5BjץK:w!CP<}{OgP^}p$@a-Cs{{ҞbYc=RL٧KK"ڨ@@lOP >7Qm<`[ag rnQ HEJf*IX3p+D& +6Ow(lT53SIHɬf_Pģړeaג\emme*g9w1/<ϧMiM^-v#r*)8F+ur״'[ץڿcр`6hgO4248UOXrx^gH^t'ҏ{!,f[䂻ly>BM ՏQzW6/h&ΐ/|׫gtA_l|Fu[ckK^ٞ(]}#I+1 煮b̥Mi(Q$Bq!g=@&Nӭ?{x|0.cO,)WE`}.uKv-C^/ӭ3gzUGM**/3]؇K`i8{6 :x0d{/j/GSqzBVA;,BOP j[G&] ^LOziv=EJU̮1޵Gl_M;؏[٨SS'jncKUgxed|k}}zO~[!_~G_snկyy?=ɓZky ܲ}zclεUTyR~Ot Ps]Op}?_.S@5ҵuצ0/n*?S HzEj)ZLYpO>e^5(yͤQ)AN!UiR'C}F\$TSvW'>s{SԬ O\r*ܣ1qNѭg8޽VXl;F(ysDE?؝\5F~+}B{:Xsj(VaN_G F7纹1B\$\$mZGy]W4ެxU]s?!i)OW!*)5|LWFF|_?}6jt#A8V nKmO< {A^wѤG5"Sۚ䴩XJl9?f"Qᦳ< F_\h7-z%(㯺{\>Lbʱ+m1܉B?@mc3L?7TiYjG7O]\y(feu7cU3U/ߟwǍyٺr{ŭTC>?Ze>^9rz3<~*̀򩻘1󤘎+0bk,PY LBSegviIn/Dn伷q\|?kg>0O?Yzù@';|&!IMq*\X*u,<̵* +(5M;}'47fdދGbLd}ws5H^\9^_Lq7mlqKŭV9wr֤^6"YY_fyڛoٌ)^8ooT-i2tJ=vD)x!ӵU8rpg"hgP?nVOs6&Hmgf|޿oR@F1nOySkEre,g ;pZ \GѨ}̥fk+M֬hkK_qG߽ oFrX/M;{xEC ~l h=@ЖWn{Ex5֡fFze~{[xTY@zExC}v19Uĝ%ZsVų̑8.>1j@3m׿&S{ ҿ>Dknutk&]զ}-2k/dz`ySe/7vҨRňwׅ)F_q3jJΨ,eV?Gqf|RG(p=KU*LxU&9lON@\Ü$]P)u-@ʹ,w6Fڹe# }!LS4{&k8>şeSD1`b+==韱v%@YWo`" p6&Oց MOb-ގ.1- 𮆇dK]R7þdz۾VY|ZvW#7]u}?c=_X=yy_e[sWwjn/-ks*n@A*T-n BzCCtrv @ wQ]/ۗ-̪A֬/  Qjwy|hػBmpQGUpsTZ,yh5QAEpuF9*BC+aRx/ԏ=ޒ5V9 I;j= G䒝œ! {d%4NJ Zj-Z [VF;78Oh 6ReW7 NjHzñOGvbB;?Q>ۦc-2׵,7}1󎁼b_'y W VۼTxmNziFޚ]{I74:y+u4%эٟJOe eRq ORChh%_OWעflV*-]UDfj1G u(0>Q!ofà36/[I/Aqυ@hC"}\!.r#9]5kQ# BuB3\+(ԺS:"uT#!xwB]a~龑ӭH%WK)l zʆg퇙yo#@ !!j5)Ϫʸ|)?pXP c'Xcr@f8ɽG(cL5y0M[ǜ=S=|gеAUK"e[s&N)b 5t9]l2SJٞhdr\3R"lė?"!S}CEӨ-=~ZZ1NG=Kr.(N6\ԩ&sZ{}giLNsE5שE 6d7]|x]5nwU1/S%^%eܳQzX{,aIVk}Psۭ,Vfzs_OOz IdBO+'J﯎Pٳ&UmavaAѽ3rgˋ~ 7c|z_B=nRm޼38/ޞ63NEb|0C̹&_T:2cTuKPcߒ5˽\4M5nw>N;>gLW;bɻk{ot|o%=I⻙Yk mP4w ?z]ɳ=:31ʢ8=d?Y[ʥkՉ6oYc-`jO6j! ! wbNU\SrS\PRZ\m5q8YX#ЅC{hUceשj-nqE,g,{PHwybt=ˡ9$g Y_>zϗB"hg*"smjڋQ]]OISvȈ"sUo̯#gQ40}Nt 'ZΜ>.sSj1)ENFT}<^?g|hnNFb-si^Dlx.$ <@gEPp,BE?BMa^Ic/AE6\2DE7~ן0"uRx)YY)x$-V8u ׏Ɇ\fK@W~X.y&4_sj 宿+La=ֹ}ȏ3?ý|zn=l& ᶰ0fw}P]+;Z宔MBh'[tn8#yșf#soZɭs5|2Y+x֚ЍIQ5}98:ɴmSH0&WO[#Y&gw^WTU0Է6U7D N}%pQlnHImcӡ)ύPأxInDX5<91||16-xW??7ͺ{k-Ku86lYy+?Iii/J,jv,l>K!UW̿Yw_Kwõ+Tm?**uI?xG3IǞaA8'xh Wy-қ֋~DD BU/$͙m0:\E[?aMI3*>ɠ؎Mnjߜk`ek~z?4mq+נlTg7u(g\HHOggSC4&؄4[ X]ML}9+F?UߒV@3A-͎Y$W} - 3!Xh]wiF4ْYxUϳ~wR_GjϽQ Odrj9E8GCHY[ǨI!Pv_48 7?>Cc. b9ElO-Pa0t'εl9rK 4x񾱪㚲8U!;}wF]rڍ1u=6n,K{ wO.f(هa[ܨr9ߔL@[M⃜ (*C̢ [l?8t=4?A _g*\@DbYp ÈpRYd N#{oEk⚼1GݎJ1gD碌qa5ZO{"RD%+Q,R".j^I_o'#BI+{<, 簐Q8…j7%5q}-тWd@1 6l% ֛r 9ʻ_a[묞褎gN䊲*˙4z獁9mC|K;J\;//}ƅa_%E`aTxv̥0[?6˞Z#]lmi׊-HopvHi 1O+AS(A Q 0*oBlo,v=V?؛π 6F6@ј7!Ϲ>ܫL[Q\4\ߍ.?VdJ>r%aԺ&/O!">uijgH 2W۩pv'1g\7-ԇ,zz 3^4҇) Qc\l`U0 x;T $e+fTd+WӵA<*ڞl"Ü֔RS ~1sƔQoo"%qkl*ϕ>qzoͨ% ]^)fBb B2EG>YI⣴k|V(P6::wwivDxep¾:?Pu7+Z s/|fG2Jl$yC8q7#&-jNS/UDRyd/U-ε^QdpN]6Nuwr9WO1vT3C4wpHΞJIQ"8tsnj7Ҹ8ijA83v@wGqr8u/ԭAj}2AU Q)7Ѫ 鹩-P' :@^k:v &A2_CS"sJ YB gpzֽߝz@(<~Xe/8Q[w:V2;2:"qI+I׾Ǧ|NuZj%p ƫ54QC*݅YU*َ6QJLfdL*,ay)^paP|0=0]$Q 6f"(5Dbf^6sC26f wGc[z{9f|%@2VOdjO. 3] XE~` εb@/~* 4k[w]>:y8C+=9 f9vG3,8WVx$6kex3Yoy);tQ1+/.ވ{.k+r_FyUyɫ2~4 OܾSv̡msS6'U4!`'U#b?QZVqKT32݅ %R)SĈIQeE^4׿VfV]c_V;ؾ#}2玻mmn?m\YݛG/cz_+/\ 1֥H&'ۦ4ͪ> Q_}8oA9nU|I&gqe'*ܳBk~h­%'gY:1NYÙ2 <)W23eG1䱼! F-rkQvלhy?+G=>IpӾb{yȺPi84xyfL =ڪ;-YRJZwȳzZkך{EQbKtG."*ͼZDuvJ1"IR qT%_$Gu: Y6G Ya2;{T:HEZt NpP|f#jJ Y(PdQ袷t OzHɼ{G5Or%JWKQ¦/f(Bz3VK:=Sv0u)r.Z[}-q).:ߗV@zq+6_onS2wkG_81}~;ՖC߲yr{aknk-fȲȅi{!.wӕTK>_oS y乏[hw%Z߽ofY3N B1_Lmw?NPq}+\C?+U'c#x(/2 $ (%: PU쩓%GIbgDA¦pլ56XU*\Avl\:џM qdެB=M{}\u(?BpH>l}F$vyQU^LN5>YoU{u.#Uڈ;K;ސ!iJrvtX۱;QdyYR=^}XftS= qgZK0^vSLhoprkA0ྪ טMқ9+ OggSC4&OC;{5?ilw&TPܪ+=!mKwSdm,8R']$Vw&++ٵ]{}p^gY`A paK% + A+h2tV3=T>9Z+SPk]og:B u =נ!Mp \L`p͒J8Tcjq!u>w}b,P%RR*рPw jWVѽDVʖ#u*K-RI5O0⠆>샓5򐠻ȗ[l&BvjE Ea. =VwCY>dNjߧcMU45 L*ceEd׏q VӰru:ߴPg_Ȩ\ɭ‡7f<pn;=u8`Z)G?wn_cڟvp;x>3}Mv-(41EkJsyG)6VPR *H);8)ͣ:q4-o:;׬^׵֧gpz_w 'Cֶ/Nﰜ|IBa]xC*Bp]읟:<DZrw|<$ (4mLtyzdfH`x%Y%1V"i$1uImdoÂ$TZ 9ZC)ם!Ya=29>q~-dFiz:~0mW]pOn=ʺOb?~a\:[6T;'@P|߽{[:)r *mE;L Rל}EhExz7W.)=# bYG;o% /{Ks1bYk{h}ݮEMb_ IiD%YnxYsYJ7u^{~4Kva^'?2WkRk7mGYoczW̶ӻf+:jAEå}Cq ۃҾ:9VPz%$P=im_=?,5[DO}1v={œ|Oݝ1g$DPTLyZ ~B>pH"gJl̷fK10+t)iۭN=kDPI4BuPS2eLѺ hLq ^8 (IAm>!^StWFnhoy\=)zwHf p(;{G5! ԜmƝH%%V'sp8DpBR%Er&EE{NjJPRqVh,BGee;ȼ }4Cٙz*uT=<ŷ]TW~bo;% SJfV*93d]ws*ғЄ^ " |8 CAYa箦SB gPL9y Pϛdnu %h[?L^͹|UGZNU͵ܾg֕pZp6,7Xnbǧ۵L|>!Rs}Z=oM'xI`rI+_.H5x<2Kg{y"p)sO@mccIoTw~u{-0B/RV=4 14\ij>Q7)$3&ΗTw!FF[.U1Z[Oʅos`֢-H>H?*kւO?\K6^}a"4 <7/sjjOK_gυD S< \Ul}c~l8ޑAZ-]L%n7I ^B&L]wdu.qa&Yx֮s< gn(׽u>lҟ"7Uy.U6Sz[>cnU9w)OmZN[r@d5 -ޙֆjSWsÎ7.fOZG(JR 4=:@qv,~̷:E8uqhHEu)=UtCZ!Z⬹/u΃_QkeYkS#*Ux萏MtD $:Q9颩8EQx ]Pҕ @Q ɹnشV4/BDI8%=\GD,RZMj@򫩿[_2cutr B?p8 |NY#$J@ !HeTCjh6Iγ|=|8{O;#S͑H+f܏CS|yX?'K)_}-sbNhiA8FҚ/KjHdDM=64DL.b2W\ nW@ry%,6]Ik:!5`??{SVSe)>.E쏦{~T<rM̿NtSH/jHLL=1NœkKv[ .L+NȷW ϗm~LH}h25_Gr9hkZݺ5F9w]uO}ͦEŰ2&܍|<7#o2v8~or\>1gGN dG*.`3 ͌Ghbf4/I[5MuK^ό8,UV jG_|>-u` %1S}~W?x{^ H]{3_޹NL^*&- Yc!/[;:w%c}Mq+L ㏛].bV2jVuG#8#-DTV[%w^=yXd"+'AKYrq.Ȃ3 <'ob-1d%Op͓! H=xE=_f`V1j4%cyfofۃ+G"q_^}x: ]kgx-jQ$m[> !h Xާ/N7r|EGݟnt2=1o߀ c11'v,p=y@ ۆcP,*$ۆ)O9z-!p:EQr%AP`[I)u)iu]p0~2;#)Üg]Kڃ3[!bFZ9/x%rz]ӫeukskWYh(ĩrOqwDRy?ȢY~&Sxw޸g$2(=||~>}oXݢ)OaiB4]orF+]H?L 8AsF(`*kKܻ: ]g&Ý!$}uǑb)4Rאt'8̤F2U2F{1~^[POwfqkBN$MG> ɨOs$S5A 衋H,y妿Y ROvI$2N(L)Dn%q"3Z;T"̖H.z2P%ۡwt)ޓQE2$O˂)s-Rf=0%.:4 }PRA!oR*$Wߴ᢭gRۍt+5&Vq&t{BܐWOvu`>;O-Y}bdw)l:0< 3E|fNz{o̬{B'UiT~wQ&ZsD5L}"T3 Lw;k+靰1 hst͂nnקߍΣ]Rf3j_?#s2t|>yO!DbitC.)zl 7cN{4ws߆(+{q'>{ԀX7ҏMOK|PȄ9ξ?/tgyؗx -y8?TINߵG:.$tB Kvk l lC5˚KkN{zp5v5wOlÔ̓w]cszt+'/ꛣ _[9Hnm"/ݩ}O^fUimmIL=)\BPg>EO{c9KİwoKãe݌; ~eXk1$ve_±iC,U\Ww"kyb. "~5rTKZݧ\caN>3kGgh,n^k)-½*G_m;픧'ѱ;85n S6oL v .h5CVuPԪB(a9`ǟ0fO=,5ݽ{{Y<9%LSgZt;kuyG}\Buj$}RUV.x*N?/aIonV j@LPl)^'H|"Pe̳]{$B> *p9BYH &ɥ1k]Z_u#<ީzB4IhNS̪*hL{  ST*"WƁ訽T<1継ϓ!XUh=;`W VSv\DhR ֬SԨ^5:k|%^RNѝh!NGi( ;2` ~"Z|p Q#~62NJ_; 3 խy4;ID`~s y}|)e9~@|[o?_˗juհ-Rx/]]mg4H2PYVy[ $Y躯}vNվ"{ _za R 碱1csT puu-yn23{?SqdNiB^-&>j*SZ\'|!+kݷ<!t"_7[~RqCVaSU{Bu1zM_3x?&0Fbӛ]䎥E[nJk(nzL0(ۈWW~=\}"C`RBSO%'b l0$1o]i5+Qm'/L#{ķޠ/-ku0񢥗kAqW^[OrZO;IkF|npߕz.\QgU:&u7$"_<|o}Uhl^b{.] e6ݒ}aسCh+n5u *T(Us|}W8$ƥ1uQyvCB2$e_ٚ4i}k֯m:BA\n'Յ7_|Ǹq[xzdێYk69זzK\ @|Laud=BgR* gJsZ"fF(yd:zBuТ)?B~9Y*_fكם'9ըG0W9:ϔ.5t=GH^E>,\)t?Ӛ%%yvޟ_Ox;઀gI D7yRT#~ݴ߃g%r͇ t@._SjQpM"7I=ZtmҩPRH)#(`DgGmXq6A2@VlyziGMii x-3 6ss |]6mBݪ; y4ߺŷV=~o\T]a)ink9G|![x<>s|OCwY|,uL0˽ICd1cURRN3X#z>m.Iѧ==Lґ]w5~_Q$&SIE߻Ei!}7YzL'Dr3^%6zgrq'a%1jVe6bYJnV 5d}_!纟>2Io=bO[8}%;"\I'_b:Uiew>:h! <.>\XM~6_P<$%uG?o_o8o׍t4yVS*L V~n^,N?nr ڨ=5^< q`~2c;[I;^J=bպ:ƛD) @WIw$H c0KjUVT#QRmNѹ$2EQU/h뛮w.uvdtj!oM̈́xs* "C#`oOHTH0I^uǪ jM}5_WL5} ~ɿx kyTMdDCֹY͌$Ƈ=~ԚY9MפMim8pRSE p_ j=z}VЮB8lphՉ|s)ZU|nOteoyPYѣ-rNݤQɮ_SN BU46KٻSv8h芎mX;Ϙ? $dn: "vS u|,?= dD&5Ns:,Cj!Y+1\=pX y* JP8_f-r6/rEgjtCWκ9\PDNT9H8_a&UFDN1+VNwd] WߪmJ;@o0m79" f>\囵\6 Qg/hٳ~}y "qd]3R85Z)wezV< 5^m;(,~sG<,9NM#wG~[>\ {H(;̞q#b.ؑ@]qI'S)9dKFV5Aqx[cԞZvR=-^4sNUOZԲ>m7WQ?m4?!ڐȊӢy-"Y%q!d4;huuZE tv1uo]3.2. NV9E"BS@8P Wz5ok<2 DzxnX#3o:M `z hҌSncđy %Ynw~oEOC."d'qv_cj_ y2`PNJŇ.-xFnA5'>6ޑ5O N|(;K9i϶B^pZuSj6o≠}}z7>OO=3gWEaŽƧ?.sm: oUdSO:L&b*Pb8&dwW/wZ#VCi#;b&c7,椡ɿ5;Q|g?;pRC ]Uӌ_Tyd^r5ӛm1ϒL1~6@&oy 7ڂFŋyo/=aL4G.;nC )6./pGTOKyfVt-TQ\|IRޗ6?\wۮ_ifMY-_י'LM^QoqW+_h,di#LvQOggSC4&\4׻ a,\:&tsMѩHI @a?m랼PJLCD[@*{k+Dϑ%vttNDV8N&֛<[|I$4gɜג3/j˿xr[17UA^qS7e*QBb-_1+^;9"7A2QDթh.}DGMvɚ-ISQm_mjB%&wy ਒t1_ '+{CTڙ*Ey.#-zNy9r*>"dRK\T8":RipjޏAyeũQ[$b.ft+~;$GSDs(:D"ɁV!j(=1qT`G+ !<btqo<61ŗBh@br!ҵ% <dH40|V0" [7@"Ó cCSgpZs7A.0o~`fPidf}ks= ǯ_yqMFutw_`+xl wGDcͨporx$h5)u^yGosKzܦuY[1p/c^SLudYD*k|\$pUW~}cR;Yo)3JA|ed,qK[G[*JB6F\?:.zx.8](4b_KiE׷ҔTYv{eoϡS¿㼩Ϛ~^0 NMN/4 Wg0q>pXHIa+*X074t rqwyA.MTV@g`ϴ,4(>%eP~ӭap<˕b;Wtq)ZYw_f+!v@CV=ZymFAta- '` 8F*q ;s%Ѭ?'_̈́p{8mOqL]w?Ilt-68}Xg\'1~ߡ\rݯ$VR{[2QͬG^j*\P~ɕN;S8F^(%?opu%yM/gw*_w,D-^omP3U>;iWuKխ*a!-5 fh=ًƬLp#^tæ5 z~79?<,O;GOoİ\|lwUΙf{`3g\y'xXUƗܹWPh˯%׶UoTv(W$gpg1ވRU96<0#7]j'_..ʎn"-7Kf v xel p&8DYe[u MVk|_߯b#ea,G>k|8>eq !%kl˛qvD^cF ~;S-V5C#O7973Ҽdl375q&o&tv|Ä^Xi뼽8VCŖ~1 ]5joif6wۛxkT#tSɌjA["&a6{V[m_|fi/`9ruFy~N4*)V SAܑ'|uͦxJ,a-Rs_#XYRX>/n;P.^ӚJ*6VdL3dK0rJ4ERuEϗ'P59QxOj%"D=mʌJ~1BJ =ͯxP.ws? [*p8]צ"&vO뎠כ[z3ނ * iW+:(3V4)~;2jGl>D"q[+Ϫ6 Tp޲Z#CN8AE#!GVu_Cx˜?{;A1x[qSw@g֖QB%~`ڥ¬PA!Nݗ׫L W DtьCreVt7V"o:Dh͘R(ʡ:}4Wv"N+^ $RPj~!\q2snk/Zۑkhͣ?ݕ uZe^τjVKEZj5;AW踨Q8:x{-hJ:*5Jj8~|БR$Q&8TIqq+g>̣۳##%&y~uY>m#sμn99H+O;O H{>="D[FlFbU32IkPT1u"zZ 3A[Ѫc95nP`k(!Vm:QUC6t[}f w.w1ݩS-a2hk'P`clnw|eʀ(0qi֖e{S)њm0 ̄\o=%k}N=T d=!%M&oٿcWJ{HqOg)rۻ.UߝO&2SO6Ġ5ɾz7JzTZlmN:ʡtvS9"CO$4|M)v% 1ڶ aRA"+W9ԏol ?}Y{ʖ[%eڥuK2&a;9O# >-u.ZBPO$e89eƷc % uyNn{.1frpĊ -T=W3;wX`D9k+gv hy$u*ETŔ۱:TZ5=GpJK|`6'%Y?'LfUѫ2ڳ*}/ W1@c?m/U&G[ͩReX/MNqV3W^I/_i֧.ڲ,Z'~wy{ zK ;DxMa埜92P" i-F+E+Jo҈LWүMQ B.ѓIJma.n.[kN%b\<5D  Jyn~jj0-O]Xm]"zKjtv-Z?;~:;Cv*d_ n%U赮-Q֎w=s-(q7.^Oif:Z1/]>92;5at=PTNZ<{YrT<^s^:2"%3.!pj/穽O^6NRD$uw=v"ĕioAks Chę^;-wʹj.nˏYu2D**=g CBjfĔ.Y*=HQj8JYm U>dv)S}j讜:K\t_d>Ks7dhSC3(A ԸdLdMGS+$>3"-mFxv @s7i aKfM"V7t\0s+ 5e6W,E{Q1>tK.I4\GNbX&!GrP-S~76zU:4J$Bl[Z1$1}V(g}]*JD|.ujeNZgBՠ0OQ5\Al̮oSC 만|>vV6vg]LU0Wׯ?'DO+]V0NЌTvY޿FCsW/TG/vMޛ^-=$ɠ~~e--uBھz'{eTirO>_||CSݑ^urPښ~<98!nEiwQhK;GugVU`fHueM yOE1\+Xƚ]-* 6+XzڨO `*CکLj&U,حAhTގfb}5õW[mb㎌֛WUsEm Ny'.s쌱v(-GnhE4k_t5 $4&@a h.9{9^^FY*\IjhRwJ/To_}?/ܥ+gܻZI4FfG*Qd$Uf=w#Z;%q)ct?)tנD={zA7󀟏8q D[*=53iRcDx;(Kj!TZ*9]/kQ(P#kL(_LYvtt'Pr~\Y~rК!!][f徨_>JWVrwkS#hQiL}CW ss?}sx̙$=^r""s5 `ffgR~ixtIЄI &~TM/RN "jPL`eFm~Mi4рSv߂m|돴ؿ!C]>m?MT"0{$U==(7yC4Zl S~2T8gހ?48 NϵJ4줮O ?*i]rWξVSVJcgmR@NMf"oMǚxnʼogo9i[u#?,y\33;T~Z/hF <<VH]A#~Q:+"E@Irsu+zNU&%c{>j00ً%JtJWTzu<Ճcn^>}'n{sZzgBhcbCi.=, OãRd8*'1(1i:/0xGO,p(:jOƣbv JLFmN=9#!vC%b&cT-b+.}^DS Z# G39Yo{.Qif3Aaz\'+% 70~T:.w&#:? h!-%[SNeZ$wX*[oRrݬ.eW{6!PTSy0o%zwVel% _@Jw2כ/;t",*.(#7D4vKRÊ7&A cmAS!oNZwBQqqk:Ԣ^0p'[$f|,2o~4G֚5 FdǛ;EH/Pyϛp #t:{Gp>kZF;Pv= tPHkTH)f  )-/SVGޙI'#C[AE,NUqs|<;k!TS\cvZTy/'3\G=Hb/:ǎ!R5gMj*rdY{G*I 5a:@|6RzI#85[gz@U\˚PUDG:)ycQ캑qT+K$ʛuRyKc? 趾C\FqxFP?q}A.}}ב ~ oԲ2B\Mfɱnv)[QW֪E;<ݠeb8eڋ(L`2KFb`&G%(ZÃ[6'}չ8fpD㒱' 6Ϻ뷐_\(-G߁0 x7f9F6H"Bpp] Ta~\nOP5j oэ1}=Hc=Xw;ۛ?ԝ׭W曣Qf]l^ ~Ӫ徲O}P=8tNUPiܺD ٍʷ'yf\M}.<7njaUjVQQϙ^TrfݩtMDn"\pIQњZT2CGR[Ɏ*>/Z{D4}ZCU=#(랢ԏr*{=N*:wd:Պ.9Uz엨N/NN@z?DQ䂎$j,SڽEU"d̎kϿ@It3Z*BVUpzrhp0dG8)OYfCiW!eGQH\6>Wj%I2Cyi 3[^rW[xa0;rGwAuἑ[R9 Tqݧ{UjEYdDQKtܮ~Rqf J*!3zy\ uN̽6StTq4si~\v{5V\ϳ6Oh k׌8j0+OIczu.^kzGwdqm]gӒ%t'RIGZW;s7stDw#цC5f~ZDpD^h@2iD~c7""*t.gVNId:E8EBv%*ڷ/Yu8ErOR Yk5ZjPGYz3 U&5tOUWFv :/7Z/h ʁ,PjZdCSduٶLe.WpTS:g_ɐC ɐ۳BCĬU򹝣#RPPtF.MoNԵxó>r˚źs%y2j% :G W.G4==| Wz9Le:q|z)G&6 ]># %k㯁>ۂS6NUDXÞ⩢p ]돽R of߬3R{+iv]Oۦp*1q8ϽhC}{Ttq܆{ 1jH-aG=fz|Gqc\܎"({Ŋ?ye\].]6IW{D~B _2xmoqgEQ.+]Pu ۸.w"@u(ٻc+㫏g.B]i$hr|Lț~wףNݚTbj$r_tbKX A!_i.}T\1v拕CXpc**;(_+lEKѬ2Z:oj54\3vyҦQ$+oSd i5 Tj^ÓA imkʹ^D'ujYiP~;gu&^:.wfPuÉ-&㇜.Z@bk>b(8Ƞ٪[괧3D ҸɃn`2M]W`#ǖl}yd"gM+ZݵNd>kT8kZ~HJDyRB ) x\j$"/)ZSV&:8baqjCd}/St's1{jJ(KFڧ.}gJmj#~tYkyf]'GzI*2kō6zNtRCxFsgR^{h]?D~zk` 249j¹!әG:VN])k4wξ:?YE gZd#D D1UQ5P$#$tf=PyRw!jLЮMW{͌$prњ&ENz9Vʞ_=ЌqK4eX0wfnH[T\M AXX-5@''Ѡ(3BKq ̶ǬqpFKDIv ,~=1%E:{]v ['ZTjh۷ OMZ}~Prz~ZtT:mmbȳ==z[OlI59YĂ5G{V!X+D{>}}' J== *؊I>6|',5d{,T5D܅uߴK:{*8sMāOx_o3st*J+(e&>K*Cec dH fE|d02y\>pҌ5?i"̃wwZ殹(| :Cզ2b9|=J\ 3@_wXOZYއܞǭOa#PWwP\֟+ơM&7i 1tUM3w<>Wv*;B=7,{]?blX^jw%$3w[byEx\q3$֣OR=VT/W塲)gGI 3T\Vӷ>"-zy#abPR[EA^gV[K{ԩ'+ޭ=QFu)3]؀G[,X<mwP@ȱ\>uaN|qm_QrJKF/Sa^eŨx\aի E :2tަ_DXE8\lq!OV0.7 0mlcJ׿؄"3={L{#f떜%U`=@?^sUC__e_g.s},ETKjsI5b"A%xjd*~ Yp?QӁneJIE"3Z;󦏨9%WgYHBLu85і:wLљ9I><ޕr+# үt",u$s:#R#ٓx_)1S*y]c֎֢׫F[ɋuuU;*{vRzT!W$=:&JtmD[dɉZdB1Q~O׌3[?;+H:4U_EotTcL=g@ORbΟ; ,='WBz . W@IvJ};dzxfk|Dq uwVZV:u\lA; ;_q ϙ]O?օ ?!`M6茦˻R@ %KxW\cn恛< v"3&=̊pJxnFݬ筵u%:U f]ZQ?qaD G~1c{Yo} o3ٱQWϞB|Ɍ"שxGW߰\-r`F"׹eV:7p攜)B墐pWx~#\f+޶܍S{jpw~ rM+̍.@lHsz@|ǚZ`S)U΂grByʛQje˱;s>zIUnA~Q_6OoU~p26T>M A+88}O # z[tbƘ{4l|e8w.%î>bplJCF'5 s.{?hhWŹ=rygYңUN=k v| gG\}r{Ejj~v5Eijφ_J~^~u=Mrrxtg1 *[ٴY!V",k70uRLXgMbb-oo]_?(("OggS6C4&"7P ("2^;2G/Īb'pk-Cz,;]Bp bP_=9=j֗ˑlPh-Ƿ'f\dӍ|r̢#|#ԖꔩA ^dRu袞s4rs^]8#c zђMrљqѵ q'Jp,g7{z~u7AU"z!,G }t,I8𵡘gJR]ZS*/fEu8;t dKs g3OZ᪑2Ht a:QmUhrWZboije=)At*B)oup&खkbQNKPֹVjT-XT!򍓙BўtƥSСS)>s"bK$:Zlm,(5ZP;VSZkB̄>2ԉ3n4{xCjזdYf~E,ȍ~r OUqQS&ԟŰ,7m4g^EX=z~˭A-%?91ٸ}+I :G~2J?~ U1jGޮk2_g^7Mqq2fс#q^~n%iRK?C"mm,PuiF?0^Wq=+WZ'n̹vM}־mICr.>QJgᒺ< = Fs<1'| < 8;]e-+ôR|ޓac1{Na&kÇ|9Z[;u)pZ騔  ׏> ff:yqr2Ɠ=/qvĻ7>Fjk"iC%XeybO]Vgȷ6=ǩL ')\?q'Ȣoآf-^k,'6=/Yy\0՛JOԣD^J}VVl3(1ͭe5R^"a_b~]4Y3vTKAܓշa,\uO8<w=d8qf{B;"k([VWY/NCJ[P|k82QT@4y^~72!E|ׇׅšW7 e-xFI)&F%@g>+?CXncj wDVqBk`;v(@ ?}U6J5vjO/MxH*DB CDQfR̯8:К-SugN~R@ZpIp|>MHsQNV%8sjڔnLO<2LǍ,QÁK_T>jLKYkPk{Ջ$5.ݓKHt#tQI:Mjj\]?[j>#ѐ^rg$C]j͙kyW#UjRE#&ݿ;^[ .]$L^UV*!r,Sd<ə'fkͬ5\N`Qjmz'5i剌ju@v2S+^U8B{q;?szѓ]q:3tݎ$Q;t]vu@dk]1M4tǭ*@{~|t(A(dž (kjԧzw-N^?CFo H#ITSі/k*@T/7{:j7~gbm%ph6{|^P Ic1ŮxT"cw+IjP] ОGF{ɤu\Ǒ/sR꩞0([EW,ܯsxKDRO%wwnaܚXyˆ/0{==>܇MUǮ)fez DHQ :CLis~8ܑLOUs 3 ksS]]G#OGl\U#T52p}6K j6`}vѰ5TE黴) ڵP-c7l/$H4sli1Ui)8D=UN`I9&OVP~j*spa1߬fcrV;СVS"=;\0d5on;ܥ} V-;P0{C4ݰ!MeW}d h̫.L q:,{e֜OWA- zin06H3!~eH9|_T9<]m0HӻuvT-_'G±;]C/F=? /ojt-~_c4Z;)sPmjW;M45^̨GI,Gu./|7_;ýh}jFvN7U *^wf_x>hUDAfp $.txu|7V217! -똧>dl[ıJ#0X:j2gOHnOYs]C7};Է[L{mv:9Yj7ݎG8kVxiz#vWbjU JdMB 9Sȹ9~+YRcr 53j $ٲ-.^|85uteyϐ)Fנ8F̡\M%ש:cI&5kō$yJgpxghfDdGBCSbZxj*sNHuM@BWs4"tjԨ}H0ю:DPꐸZ{1WPGciDZYI/ 4Q#q(Yʠ:DOr=&o*QUa2MZ;-#6И.IB\EzQ" M*]AodY7S;ŔԀ:Ewob7:{43,TZ/;?^Jxpt tFdk4]Pu>r+jjq %y0׮<1wʳVX=IR(aƃ5GE݊ et!}[NKnTM>,*Yx.'lKBAo9)=o9 NC@Iz..&ǹYz%KWdFqr8"r,8CgKp"L{'&roI{ !?:uN8 ]|O1UfcIi?z k3>K8 cz-yG;v\ysͿG1Fg7Frs By/XJg7kUso~+򾾬.7#̗>4=Ov/0_%8Rk]?R+8)M8)9(I3LwJ:TԐsاRkԛ>TgdjNٝzeqOFp^U=5'Q;-滆CTv&}TQXԙ:hrzS.?~@ҽwukO^5Skut']s@|Cר!!;F8IdM ]7 !j|ӋTG{'hb̊?MRA{/h2ү)Q%kH-HZ)G Yq""'@ԑsVs|U2I $#jj sqY򠻘dYgRDx8Hզ?2=8b<4.!UPZ$%Sfpqf6*@F!zS@5~ y"?? !ɝ/Gr;|%YL]1j%*XԺ4? 4d/(oK {~#cTd渋lV NbM=#)G'>Y*̲QiXo~J*d;:ԭ_u {k(bkҤ'R<_$FesWT{Sp ?tGùrE:Xcsw_{z8WJ^%RH {?#1Tד{aZQqSި \N~NV!^-0KVccCKZ'6[_@6tagǞ1@][S>*8ճۃ('/wA|n ;yҗtKJBξӜ@RJUOMZv6ɑΛ[{Sݯřάh΋cH< vo&E8Nۢ:xQ2w|Սl6{(.?j}2AƸ頑H Ūԇ!*5 ǛZQrwKjċ&bqIGF7:Ytq{{֣u*1ų] X:}>Kcүmh6 :̪/7LqM'r8j2OggSFC4&p11;?^G3^*@hvk+h+ -r -ۖpr@C♿kZ@NXyG ӠRISF&"VjQ;>hܧu֪15_:vUcQX}*U8FQf͸Pa>πz?EtmteZdŸc/>s,d/"Z>QkWx Abf_8Gjȡsʼn=^Έ`} u?רZ{զ:O5ի)jəZ Py}FB MLQK5vRq'n]%DR*{'jSRRZ[iɳ Eyu4QB$d kt=3!E׬J飆Eŗo)d߇uBDh;}Ѭ%Uƌ~'ԣ$%>n2GRfg{D)k0bf "Eֶspg테mUxyKM< ;!"aκ)i "dfr1g}ˍo.@ޕ1T{HY$$5<bpfO9A|Ju0(CJ%;ۭ+)߁Qeξ$h+.ηqd!65v*^ps/c]7IRg. ky(㽯,H<pIЮSkY:[ӎSD:~P _J1뢠oh2?=yGK5y㇮BL0fߝ|f^)2uÛ0 ÛY9 u>ߙFR󟪇ѩ˿r`kj\L;IӀQxF;OvI?D61Ehో%uE!ņأSlm (ZkV}KE7ɽ% "xvuJzeˆPX}wk~hn1'!U*ds>[PShEfG0E̺x_mِeӃeqX> !w2Oft wϿ[=ڙ ꏲ4U V K O3 [OؼQ(Vj (7zO$h ]bƶQ0Xط Fso|n{aڶׯB$j4/1w3Pj.d->i}^fF͖V!ggbY\˰v>0?Gj:C-|!'eH&:0vBcV>#Vw9;LN./êgPhfD UA.*Rs <7٣cdQ'ZpGZ&施{ԌCV-GUN_|Pٹ^4-)j&~ܟL$$QL_@Ck\]BR>VuLTbdFю阤UpRE+LЂPԈ&Ѳg( M}H * UjEF(]b5;QL_tOi4<`@< #ltu8Ş=Egn} Zz7rᎩaB+3lp5XrH03K,Y'#-.LW8ZKcJtT~1b9?ۯȤKV2-ɀOKgxDt*[­K9} g1h}/gGwM|-_s&tj/!/hwdTTP@3N)~PaDf bkѴ,P ޿#?sRwTo" W/ќD-^xW;-YmB s ;q埢[߸75-1wIy\R.G{+H~o %q}מ\!_o?5w[O[mM r19޿*#LU݅u/¡"yl:gR?>ܯVjڊ\ѯgWpԁ])+cM_COn!Oa~ tD敦ǸVj+"֭\.{J;sq^{lƳ; fe3;Q ._6; =.߳Ywҷd<Fz\j tPzZ?nAP^~eǍԧm@PݫfCw2n\bZSЙw57jjNQ:)T(s$ů3>QhC;q>y᩵2ꬳR;CR_s5Tv'8VZ%ޔvBf G~-^k.N#6wE GSvN"B!]Ԧ+4N(MU?{Ԑ0^BD'U޻YK͝X98T yH:g+[ %(WVCIx* <&ڵ*@BH5K QqTsZMyw@i=ЬSS{ɇ;z={(VC([klvy|}0efՇC.F##LwASCg1[PƼyG ^M{oe.s$8?JSf {>25PGqu,ćpUstDmn޸0j{ <9o} ,=`0L/oLޣYhcTkMJ^xt=%@أq5Ɣu K ='ݵ+ԻRY]m=(2[Y"局Єw5 i=[_CT\rq͢EԘk0e)ޭ"6wϨ/DU*Ȓ{<Ӄ_Ocvߣ`hNrC~:z\Z|Rm4J\cy asۨԠ(ߪE[~&f9.AW[whsGs5}O1ᅱgBIno8%,;-́6ǭ56 =;Lc;un#zȘɴWl FWwlf)g-B֒qiq^Pr|G26l3d {.Ž}Lߎ7Ġ5 }[Q0VElmeE.'N77í-VgytYo+bMV9_tD>y6ۃ9/z ޒu`6j!o׶.yG--~z&d5.8 =IoQ-߉*:;/c 0gg@9hROJS(n,wH%WQBTЂX+Aw%o2%jebGkt<<`BDd)j\}%ʔ=TH=B 'ur%8󵖲#r"Wya-©I5uVȊsҵv-SQ''I 'UH{28D} :tHqЬŐHrT) (Z;gvDTIh93dr֌ S@">6ҙ&5 DboqtEjB~p~sX;uG;jC]Ͳ

;諨^n`,.e#Uf]2QMW5\1Kwү@fb>({>5$%}}L˓݇(Uw~,Z$(UTo8Ǎ?Odx94hOP2v_'0O#|HؒN yhvJŝ)`sq{w]jo,0e"ŦW]ڦ^ 6cA-~IVBS+~F?M;jgom*ZYր~;jLoONr,7EM'"BS^0 Z._/u=I== W^7?*w1P#pjXrzP5v*gFDh4ZQG#jCF rɨ uuLнԊLv#]؟C-LB %ڪZ#S:3CJ8OfPC#5q!{*u]*BAH582E4ef]kGDױ7+kHЙY̫β]oυ,ڐdL^.b8ғԖ w'{$3PIhi>O5yRʇ٪5PR72xG$Ӈ7l"#s|0=h9؟5C{~Uivؐ'H>t(δ"7RTR)13y"|J|0fpVЌ\Ni[#2fc)>OcR7'T_CmY")<9lYaE\"7^>9sKPnc4?mr?^cG3i%TaN gK(`>vddϝ7}e47,5  !@e_gӻ73N4^ڸ:]z~X[֧EyY"R#mWo RMMɚURNeU =D{!+a+gIxF>Wj1.g~W{_]P-G&S<[8]G pU慮l'PȮ:W-#MOYJ `+ZXztK!KmL*V3suJ+ƟЁ^'9vvp;R1͊{ko)hovYI*i{ *݉j#ᶸwc>qj?|yHfHBV ?IQ؋Oѝmm3NqoS&nu,ov{V][=ӗ"aqy(g]yc%~ugŽF]x% >Yۤx6n&yԧkjG%XA7y훃_Bmj}t-:?ұZGsV%uA6tfs0ᡢX#kױn@qqu^)i?ܕFBi>=~)'.hi; @!@:5iU:pfhG՝&gDԦZ·evքB Rv^SZ{+5;{UU1%WТ"GRSEEʿ iT]2Sѩ^(F4Z`^Bk(]6tTy63}6~!)*?k맠G${ /~Ww{гkLedtv-o 8Zᕛ82ᔴ'ⲅM4IxCXXQM*^׃٭hKOPN.~ybZ.e4U^K 8= KA>I0R/Ҵgsf2l 17N ob 'ӿM=.hgߴKð>47U~R~pl|#_{ 2׾ZyT_-6zp^,`9dVe=^H;%DR}w*`RQǥQ ˛l4ϯ5z.} 毴>)jFT)y >T,= YA1Xpg~6oMk.tGm^ go7ɱ=^d9& G? bDNOCIy5 2(u=CIA\`bL.z´\ XqY_s ō:b_od8Uw ˕[i12qA瘄q$77y.f|\?b˹ʤpittL_/V(Leyou4ƬOϦ?АR.6<.6[2 _?zC^yU.w^n@hF4ŕ][,|֒$z!)@XMp`q 3eKE ֐_֥e}M5{9Q;ڿBzZe9:y:?sQ?:sV_ LMT,$7Ƥ$g"B>"0D! dCPwzh4)GwU=dԦ17]锉,oI1Yٳf4:"군cRvQ,ܩs7щB {|$]]֞rE52dWE{")!u ;EDT"RV jZ9>TP-gjJS]5!kY*5;s}||MC_+f TmA#{c _Me$Re';J 4$Hi69 "t'/ (.>DmZ@dT̜b[:XOګ[[s1=AMVV[])|>WjyT (GE=DSca뢗 ǝs3 {Xں3Gz#r\Λ|l4jl(8vK-Bw&q|u]\YA2H%M{MpKūjm}9l3K[\Ŀ$keoyƝvtH;4 #^;-'3I!ߵL+;vNy~;me¿t7LGNtRϑgP7`r\=5q.;&yw`gPDjXE76S-K!@N&ypu~=)8qIӡ<; sݎ[iY$Q+eZ>Ʈ>Qƙ俻4p^ۖy-%z -P}D@$ʅC X;!ac*S7'ksInH7a gݏڥ+06UX3?cTmFYɎݸFn5m{3:=|6>0h=ߵSsutMoʣj^p)W T>7 /Rq1B1z( ܿZܶ.n? ܜk+K?47j+5>iS%$Ą^sB;z9=yIN')9]uLh2?BOL]j S =x&ȣj ͜k$C{Z^/EB;':jPnJL-:uί5Qc G^uΤCZ5׆*وd^"~?G;ŲWYfL |TS%Ϛgؑ=yǩ!YtA򡺓@f]yM^Ƥu8vf#g}--=;7/Qej<*VA*KgҨӎާ)({z*K|w,Ʉ0GoCvikwSO-|5 -iqnZc&lch2,sLm?>jyAgj.Y:94+! 7.kG6ZH4G^%H5>uM F4aiq+O'i}g,3H5bHEW%m4:6^G"J(or-~qni(_kUqd;/BkOyD|wF5x}Ag%vWSӤ$Ԋ#3tͤjkEh9iV896;R V0ϖ7Cp$t׈k"5u33fOEqKfGDwҔ7D:i^tWJhOZRN >j̵}QK+N7hU̮JRY{ljdJwcn^GDFӝ-dh5i ?GEf 3$PM'#35Jҭu!pThhCw} 2HܴTjB7Y]<<ߪ_~n3w!ky蟿^)QB4D+Cz:gF#!PQh1wzYn|]%o{] ,"upϸ#6^* Țd=[6o݋*UFߋSv$~qc[KWhikktKٜwmo_Ix%:'Q\3Ռ:>VzBt ɮo)!,,զw :9m2_7(:zGm?6ge#ju|Mu!i]&lAQՁl|I-͏:5!ʯT=>,-ԛ7⑏K|=djԐeVm[x)~ˬ{䍸TF3 ٿ>D\zLf}KB]R57 T"NUr?-+Im7jۆBV]"KMoG7c!e]9T ;"ڪRLL!gȮҢY#_!G)pTFyTyHv=ҝN|ihE|~oMp)+dETQ=RF֩9Cz09TyN:,^%>p̸{gj#H*1Wrs /F͗}աq{Z'wg!"zWcBb-cw9*d:|uM:@PtECq>kT' vZ> rNqD htNdѕdSk+-DHG+pG+7C2mCֿ;9y̲`T5"5/;Sl^ (A<<`֗ݍ:ۧMJ6/D鋥j#>3Y~L!ARe-gAM15CN7>jn#~}N/NJ: 7#>׹$霡,}hukfvB_V&& M.FKM|4N]&z`^.?9`7iP,g,r'#?Deq4~B3W:@~V?}ʛS¦ߟq75R]9JgmH>]𱹣/3[ pNiibdzou+,a%BJ) 16uE7@{jE.lVz&b;CAbۜX81f^ڃI5E.6SxRt*pA8c̥xSoߛ|Go v>Vtÿ|Is1Z0 Þ]leogG N~_,)Ybf;Sk`8Kڒ~p_H;h,c]zܵFa;& ݆+hfi( 8vyꄶJ}IOS%뼧դy_V=-f}{%+&}r>泥k@YsjmM.oTq>i(MCA.Fr'K_pCaa02urhG=)WwQQrSkwovڍ;4ky]wb`IV;3SwE9m3XH&cUFDeVs:@Tw,j{0.Kgp޷7?9K(\3u#X#),#?O}^T[S2nN&h12-UZ5]gSVZ6ԬSV~N *׏$i\qjHG>`^zc>##ő%+΄ʬShZ}YPGUE>."Z8ՓX֛fi33VC:ȄeG^[8*0Z% :C*ʑnAt3cA(i5d:ZS5f"r}mWvZ!(8ILQb7>Qc!~ZQk6"dBF_5CnyJR .b}T 8C4M(*=n`nP# |h ,a>;{GT{c)rѺerOrׯݛ61F CLc_hW)Kfy@,bwOrWTK#_||8L? "59n<۽ SEs}fIEц]%]B 4 *"$^Kwʜo슯RM-Wֽm8}2ҍ=w9myH/$me*$5Ѡ`gfBT?ݜil͠|1.I߄?<>[XuᇺDZdi;R'aR7g#IK Ioy? l!,Į,'=7w|f}0TkJN|HMm4$֤t 9;ZS {[ 2}ы,cEff9_Խ6k֖\"`m_pTѬWǽ8jDjKRԩVyzDəǩ6[ClḨ4\q8) Ы:_:Z; DTѨ8u@kȕ8u]bޓhzڑ.Eeј'Wcoc̵ϏhU E@UjԐUA^< Fw4E)jRwboԩNȄDu"ّ5Q$0 '68QHD?\](?9GjNPDQ̧gpګJ/qvj=5٣l|]*-C nb+ނ3d>ն ɧS^kεԫBU'=cѥ#}sW:Nt/7_Enb7Ӟjw5!Nq! N2. 8O˻ˏs!tkKYE棃5q<47'?Mک?^\Yg,!F"GŲ \H+@3^ *ne"L5ǫF{ZdR:КEZ3+W '檏HwPyNR\OɎZhEIzxSQd?.VWD9~F{_#$H|w\ hHwyvHU]5u #.2ϼӏK֕_z)[$C=9D wBWHnZ6Ԭ'E & *lBT}L7\=N5}AІa}.c},R…P 9K4]|;!r*~F{iuS]BlN88r%o|B~>bo5nrans̈ـiuVv^Z~g)vf^qھh57!8Zd1^;8h_osџ<1E% >^< gS<iR@v[[?gqќj{fiSFodeX BM~u N {C!E>рSoݿUhG1'ꪀz#S[޻Kdu A3 /ٜ/Trnk:(Ѧ/S9Lu)HN8'VN~*_?윚LyFPΗ~T'\FhC!œ{WlW%eN,Ѫ 5`0}fU,##4sEG:* ԏKx<ӕZ8UyS$ъЁEUI7ӭS=wfR;3f8Gd?5#E t&5T]2Կ _Z$9KET"1 T( jD򖃆}."bW(HA^ҼA$ w[Y)E r2O[ t\7/=ONd}EI/PW:6y伥7GL=T2yj9-N0!_:%/iT{/V5F݃Ncꮼ`Y |҈2'^>b2>=ww:[{r4cmEn_{|uXC.x;ulM͆K64 )sT3?Xuҗ I!${G<J;&;k~@ qUƫ};ëGlOhm||O&x"Y2ll!zonY2{WZgtw/b?\gטcB<7fr"J WZ%gxZUvvA7;|'9􂀟οp1 gIѫeJʩߙ|>4Gv> Jst,~M76wgMnݼtsEPŤm$#yu2LsouvWt,ܴfH^hK-w; syCOgB\sm;m)tqV,|8BOZzIx;X,XhA]t" C9! H4F)E8GM("fSwfgZd};ڼl%2oF]?.!5~` 7\:>v݉ʸ4ֆw#=[K`疕 | "B LюTeK1,x{9Nn:0^͇玐BR yG<5oDd^\ݬQ%>^N]ڵ:SP֫;8j;-3Cy秼R[^ѫTj]pD{V 걋v9u>Bw-Y+,b2IFv_Pe ʫ3ΞfSkG~᜕BbU |~ZaOs9T+{U2#R*^uj3$M/U֝}[{u-TːQ^EvH5TeyDZOut4'ˈu)|I7+ 2gy'>&Vi8pPj*2C fJ7)U+{kp"{QڜP}tH!s$H%Gѡw^sWfrmhI,uM'pl".]5Rn~`I<$Qv4bKZ̉j r/[zr쌞+<w]bR &6Yo\쟁he@C>3EmSNV`?Tqܲ&"xKhH3y?%,Kܗ_@h x";ߧ*&{\7z/=^Q4+C~Y&vhǚq;ф*`1llrڊBs6UݗN`Htx ="$:՝1TG+|)D\q=Kގ{+o}g%!Y 'Ӕ~E1ƅz?#-kGƧɗ0/KzZnkӱ硰N6FJ2:?z?ixd`&!-b{z5ڔ ~Ӝ܆<5r6{?Tm{|NJ̭^_paזɉm4-}rb:P?@ͤ< k+:ߨFF_Wӿ:R?(&m%u?CRmjשR6f0~Lj/`Mx湧EKK wl?eoq󲫶夻XO6R+ KHi*xN#k`s7!M^叻G{#)<=KNij]z^F}Xwݝ6@b[:M)_x~s0J/~;ʞ$>.a|=nd_+,o{Qı|<v[rKޤœV[{ԟ^DxzPEbw{D8 @%7%F] XNq.js&Aa A ?"UHՉP'> :)Lu! )[>K.(%㾟σyͮRjy@_pQE]9{B?Ԕ=̑F:OV:3|_z {2wz !1K8Sm *^hX[&*)ݧ9qWPtL5jgGiY*%*/˩/>zJ}n ?WѼfz}%꿑⯘K+ "4=IEmY g2ޯ/{\MoamվFt/{imZF<C7'5 ܬO} vGWk^Qm㯸BQ,37fy(*z!gj%/Zqy9ƳU|5Ƹh*Xݥq۵K/{ X,O|ZKqc i0qS"o%~GcX-yݱOggSC4&R\n>v݉Xa*-|OчzpBC-k;  Z(S=ɭ>GRd@ ?Dk=Mv Y|r~8S''B]vh^2I(V'E U^NRDvVz&]dhM6]5T`n=4*NugN>TJ "392><NRD7e65aIDqF"Ny{?]&,gnzΒ1_m8U5?Io"͡s(!}LjwUl?ҩvjw.:Ifw]}I[z" i>IQO$A ZtC*Ԟvm5^?Q7;!;/ v_簸gB6gQebtx!k&$98=v'm¤ht+dSd TR`~_)ldIT-|(}YqtV~ƀ,cj^vuYҽ\䃻D_[U yw[&>{0ĦaSnw57~mV/Ƙli!פmm09`ۯ^`dfe%gkW΅lv[ݐgM}r:<2GtXu*ʢ{g_~XgEOH͌Jl@0o6#uEw BL 5_ɘEc^}#νn0d׼?P-u%<(J)|uڢњZɱחLCGg:KCx=鹪U3ΝUz'biʹuf"%*1էN"n|-UT8n:+ sUDzz=1u "KI3o9RjG ]jVRB! KWsPП !ZECz"ҝLkW{6-AR'khGgHvDQ =T_/nu1)rs.ol?Za*p@D܇ۯ?&{מNW-lO 4G׌wͧwe\4Z{(Ő3KWzqRt'G{ ga;쮲e {իy<ߺcL޻ϺMA &7a6 hkC '<$pG~ \%|Dfz~tA$B') peC=sXl%חyәuulXn߆S~_ij퉪Zv!3sӣǘOݍ7o(ԣ-Nl?:NfX+*G9]?]; w2A9!ՇN<_DC4*>h!f} 2WT6^V7Xn^+m ţ`PZV3Z44cxB}xt@}.xH|I,~+Ih9}c{ 2bm8n#=Ш};lz0)j&+)PQVycJ?~'9 _=7Ճ[QtLclhTsf亮e>j#0RJvWtfI:X9d0A\3|;W-n._:ENis.=LmU^n pMhb]PW'Yv;A Zm v٫օ X,VkJ 6N @Egt~Ooh۵8҉&YZ6S[0L;눿~ʈ/ЬuZ!"$BeY)Gn3L23uZoU#WoIt|2Eԙ Mq"r:)ssi"DCzyI.G ݇V[R昝u:5s_28yϊ^;z -}@q(k'HQVxk#5gg̑J&g V hǡVZT),H*DFD0 e헙_ !sEPigR'=5U Q; jYaʌ8TS(5(DkGSP@>q|J>M8 R jw:zhHw$=]>x2~d&}è 1'ir2݌ڤxTKo.EF9inJU.M hx)$p:J f+3{s>J_ZƺAmZ{a)}}ɨ{V} o?mYR^ G»2k|0P7#FY[RW;F< Ha\ܣګLF}f^NsOwݮ688eaY ٯnTnUS6sxk^1u=GmCJ~ nwhge% c~r\[\›3䔧?9u Ci'G}s(<.MHd3-umRX;-泆\'F0Aswyiqog6Pk W:[aM؂t3rg'٥A\U:3-?yB+s#/BHt˰2M'Q3CݡILN^_Bm ]sJ+_Ě1//ߍ\H1~"{[J_|nX- +T5c`'6[91epHO> ;tx (ڝtkQ7sϬ=-ZuvfK]. mӍ&}sW#PG\xmDڜ<ԯ(9q|LtWlrL>Nj܉~võw 0Վp)9Yy|PW<+!Me;K} Jd$/QA#׸%%+J>TG15λ5VtO]a:Nz.$,JqPtkG1=S 5F qʼnNNҕO,V2hH\M=x *!T Ui&SJɉKC:x=UJ 8Yɹ؝}IȌ{*thu爬ڢD"٠NJ28 MZ,!wuo$4wX8CdX`ͨKXk>M&}c/쯥Lˮ7 O|jΠ.3t=2666}&#jFKY+u>fqa&|쌒Rǿrԇr7! #k^7N5x*B tOCaPA^qmsz\gS9| <ݷlv_?L 8pqv~xNNSXe"t,W%w?4^>z?u2.8[}LrRej s 6ҫƿ_Pn6V|[N \nZc?(~.^FkUekGuv_g57i |P yۮT~do|=/G3)pu9,%f9f4[I5eqg\ua0}%f3yئzRSHgϳZްQ*+O gѾ }MZ=nOZUQ1.FRf#>vk 4\M^ ]ӣXa4MyNZbׯ nf ZSF(!EMK379vP]MOggSC4&^`A ^vȨ1:= 23@$8'U%NQY?cJh9x@Bv]FA:S[w=34XɏGlyyiWAp1/G:T !Y^t*FB̗ZWi%E:Яpβ#q:uF0K2gYPeD :iQTB dÞCZDDfttt@]tTUNv%=GIV Q]d\J ۡpT}W+yuծZ3}Wzfv3'T9:gwD}9jw+Y!SoП84|x@q͋$n6D'^H⧘VJp_(*y!88W FU0 HY.p":9wn'MķYNjo'|.:ƟZo zq0Duޜp <=?g1Pq+.:;_ obOIM] XE ކ6k7rM)'>3Yp=TcҀ׻++G-t#٪ɳfywW3J*[(X 0sK>5IA3}yEsS̹Е:ǻ`YM26]#qίJtw ôWchoՎĺ.?ey'^} 嶗eN~987vss_+)PXvNbބzlmB9`Ey>3%_&뇪?Z1'rhewilYzeΨ{Ωg .}sri[}CO:VglYg-79 ͤ="pV%G>6R%ޞ+eq:N{[l :[G^uqn}Ӄa#8Υ݈#9iX˭dǦ`hڙ2yDQ<}m}ͪjܗMcm/i{}+:蟞>W+gX/dޫSv@W#$gk6tizkGh |w-Gj޵q$us%Gsi=*TpU,C"B4+|CŎ*NtSR"w;qu N9:o[CM!9Z٘Gdzew4Ț7^wq͠Z1A;I-sݽWv!ك?IY^i-z#%\8LGsy/Pt3x=~Z<_hєdj.B^uTUj $g k=kvٵcZWxG8]w+cmLiiz5깒V+|B>3F 5MLOiGף ՎG~,z$}hWGZwZ֤R&S3a\]4UZȂ}2Kijצ8j:IQ@&Tɨ+*5!r֐P[ֿv( E\{LpS>ϋ?pERdt%)VtP9C.JQk%('˔bɇ݉^h"FWaj΃3qdY9'2\H643E;3jg:BDuqj'8*C#}ܽcxfrq@,ݒw=8e̵4' kc1bL]Il )̀} s'͗D7k<+R5 \H,j|)D]x^pdq!O'v3ٹ Չ_:HOC_Wşkt/ӵ:vwӬ=D`8.jQo,ۃr0;.RsÖ=OLK# yVN|ַW5jTTP'6X߯ }CzkGlޠ7bW{euEy+OyiNnl@V;SȹyzFݿef } J䂊*1>?+IS,|:΢z>jT c W=ـ"*aeM Fr$⣵{jiC%6'wJCziݝu<:nc/" OAf"NiF?vgzZkWS,Yw)sQlݪhYᙨZgԎeZ:Qc-[]c;Nuus>.qj:UY%LRS '{=NAtD%k=ON;3ήt- %^SCT'R:EC1eE::XlFsF RQ5Z8[)Rҝ:hDr*Uh}*8)+ׯEgQlV*$A Pسs%pj\a$}G:nj|<N"CLh}:Q:w JD˞=Ҹ1e`LqaY # ?q46Șy56E8Y6ѫw%;M]c;1m_!ΎvLpjR?dPJWz]Œ]MdsܴG7nmad".ko;>ww.S'!ϟ}nS7འUZ1W-]a{]wsL][ Jn~!Q8$5"g9Kߖw[_"N#hYOiiDtWG|? |l"_k B#R^Q![o NV^yf]X6u'O OggSC4&ߠ%!>V3kګay$=oݗ6V eApdA W!dnQp-cvuKA$3[-#z;V䖏yl NMyU](uQiuTݸ2ѕ[HQ`x٭=\?IsQM^3KÑ׍~G Bh!L{RkSe [8SjW,~];3tcβTZTVnQȑ}9p..HmyߟY[=ZI32+-cbvpu#I랕 N,3HF"ҺOZ(^:9BSTGPRjvBhNYT8[ {'c&Ztj'N6uk;&T*I$D՞MM49^7n~2Mek,wj~ܹ tť?gNitkp\.?5ֻLa1/=/TqndoUh$;$&D猋O:WS,h;6oomdعxQߟ@*S$")k=bm~=QIZUTGG['DZTg޾!Ƞg$(DHu&y1h r)S^,RfVHךJmD#t͢֋C*ZH'{z@{1EޯT#*_NQ|PxK631.z$5 ND#_;,*@=G""|F$q2{jYfT%Ñ:uhzI{0Kf*\"{"IHORCQ]J ݜ!')Ty>/OQ:e(GU0$PIkITZ|"C3A)G}EKxπ1;nZ8尨JA]J_C~ۙ'uͻeyVvUbswb) O{CmslS6aJdx.l|_KdNGL9 knb!4t^buo5WǯQrwr%~e6('|xةwf"K|yܷ#~-bGmz+JCesd+%CJ3cM ogʗcgmY½_T–?.S1nAz.2wpѼ}O"IY#I?Ⱥ8' [>|LV::*w"ODr]gt蹖 럍DU՝n]Fʤ1g~<d%7BwHUYڄKԕV:|(4"݆VGv 4T-EJp{Zi°Wn܏:ZHʝ9DPr@$\5Mڧa:ET 8a$A/p#Q 蔽V.hK0 ("*rXyHi[/3b OU);"$FLzFF%zu7WON rXwbwp%iv0s؜?aK}aRXVl{:7@u˴ of|C۰bUZ._<(4FX,~q`ݭ՚>vkaӍ)ȇQ''jZX>[2uwd`z\0]#C73ںNޕ0lѬƽ"5AQ5yݤl+gI<ȯi:SȫdΥo/x?oysOLtɖ>kjLx6d0f9^(4x+t\ T CsG~ZMs{&_FUns㝩fKC ߺE_8{SW$݁x"x 4K_y#[{wX :l@Iwa$+t︕ǵ-_{/> yʑm):Nb򽨗 ^6۳v6ߪ yCUThКHf HIenklt͌Z[Ϩ[WX%RO͞٭s9 CCCqaS3t.|uڳή{U]wJW\՗.5߳v3B)h=B2_y)^uT9uY8L}U.Ua zgJSVhk;Q5 EGrr*54\zU7iY:W!|!6u*9U^98;cwh,n}ևИ:RY)Ўt+)"U&{D !)yj=CvISC3=fQLn:RCkFDMQs?w"N)X'3Wn$SA f>IK28SupN}3-7Q͔(~-/$fOQc?n#t/KjԍVb'#87Z(a HDE;lLL8ߺ|]] ߾0'yӑypJC\g3QKTgDr~sT>GcԾ̂1~|^\_E'?oL['MH:'{Iؚ3w=t?}Fd9'nD'ώPj,W2ٟ9b5䏊4J.d?&xLw@T}>6A"Xc,@XkU=k͉`h)Gfr5-?8js_@"\#l{_ܵ|7;Pbכ(1u"`zw Un~s{%-k=$߉0cVw|Uވ_J+m[[)qj-/诟UB 2d-yL*h&ɷyY%mtM_p4_n eeK?f; iK/WD+oGp6ǩM ,A"q~(>ksn6O&3CU,ᣯeNg{^5$5M;J}+\%~ }oL-Y"_J\2k˘=)V"![qNtԊ1h;͇(~"Vkw1Nޮk;^{M7G}M3}N OggSC4&H#!6;թ:d,٢9KtQ<| ƝW"߼:-YcWdmGdG=v{4:6ɑYk}j;1k:>>5%kѫԡ_Xy}e/nz *)㮩dpvWіt>_?wJ,Z'zu !QMhUDkͩN!QS3|qHXpV{}͒sUʎE&'<qWb_YgzK;'Dxh#av:)}Eפ֥CJt{<;~K cnvf)2u\{?!_zNNmGm,x-Zo:ˑB\@*P9&=k& ~>s=ʌ."CR=Q5& 3 5j;$+9\Wj :]LfҏJ%[[j RkԤFAZtOM"}gFw#9᠏%g#ڷ hFuoA] SES/V,(m(s"vJG;ᲭIOz\J~ y:>\xz< DR ƴ*{OPGeDurU\m)8|oY<#`Jy#`[҉ ITGK+)FAWe[gtÕNir:3!nu!<}0^Rnxkﻂ9,:dc;q\ԝV='^fHYWW;jd$wۭ՜u;sS/VPז]o˥r]kJ:ϯU)5KRtuI(Ҟ7)|y_<Ԉxug޴*wԜ3?fY="HWkt*iui/~ Dr%b3\ktXO]Gl{_ՖN!a1G<{? u\S²7D%Yso:ڔ5o}/ iǧIS OFGބ-|? [<}Ƿ?qO qmvaKr'}U_qK jdr* f<=L'B ߥgJF엀_٬A-ҕ[kkQu~K:U*䤲@YN E1uJ=VGZV'kDq GJd^O+5W ڻ޳^?}hhkd\s³EU|A,R@?U+"󪢚8D]pv"˔*U$磎8= 5r*<5*葻pϩ8#*ߚU(ԮL:uJTX H3%ٻZөN/'m"Ѫ8)@aV;`WV%06nnn~;_w! <Zl[/9KVR?Yq4}'w!Th,5x8WcSw0!֍&gGnܪ>~gc㔒2|~ی-w ӿ"] |O@~Z!61qUwW'',E^-θr=SA:gMS]=be5z:}xÀw~ _Tocҫ0Nj[xx] 3T{y+i&ͯocob"6Avo|N"o.Կ@su],`/ 6[}$1&^f bǪ!=URnBTG-rQ'r-DtKtRu0ەV:kH BU]Sz(:NTERNט<1zKkԐPQ Gt"eߩZS!^9siޝ݅Hoz4Csvs^׮ 6{5  u%A D:v*EN?NAϷEψJu34u!٫i>vΕ5Z^g37:L{:3HkUZwmm\>tT-%<ݝjL  )z7IGs*Qgjv v$1!bL<Dz=O­7٪B@'Q3sWdd.2t29S?lTLd=wCiI>$}VID\i`Cx76$!=]сew<]T7H1NskàVZ{YjQKV^9rmK=$ܒ:*q> wO?Nrz1 g=FOrsǥEg=$ Uk]r)݀;z+wP2;Mph)hWڊXԝ8vSq~GpI{ʋhHџG ]C\mMQ댠UX;y~Vap7^h}˙9_ߊ[ԏ㎕:ygi{TdipI?${^HpY]+-L78 pb- oozHŢ'S?3r=;n[ydݻ'fR= 7/Mp?_UYt}e*F;0`ajXYhqzkBkڎG9:3ErDɰ1 =,Mdsվ*<ߥ=Ti?Uy%oe YGa]}m7t~vK \¥UQ]}&l*cUeBJ)abPΆMbk9{ߦ閇ݒX2HP?xSReL5QcHs)-Y0κ(qq/{LL Q/*O;hb3kUV/(*6ՙta͚Mx Q [aq,|Mۂ-tz /$q]5*S;?62WC4ɈeZ{ߋMuv=N{^IU6BznݿPK-:Q5Et匯]~ܩ)U)Z[㳻R)I4k}ʰKT8RSt$֧5sE멉Piօ}6uEkMM?Fq!ʎ,-YVRtPk޵v-uqiR |dBW=&*5C3 xTդjBB=Zsxmy4)t"I4k3tՄ$hk>!A (tH:3_]b+N*tLEhtB:ZʤκK8NA;Q9W(SL*{Ñc|ġ'R9ct+3"33|,3hv:6\kmdHcl1{0,˞G ΂Tf J{N4~_`k9L]*OOb/l|%Q']Ծ49+?X~l={Q.jܞViE${t[ ֢ʎ*ns˫6W}8L hIue1ۻN̥&V#4x.[?ڏ^ ܟhʰdGm2Ѻp8O3خ2a-l|f1UN=p ;=މ] *2(u%<5Ӓwm#V%C +CKӉR2>cɺ_~C;>_rY)c q*g19܇%nWN0}h|okأo,;-_sǺ s5|]u/6 7]?WDOgK6yMYֹ6qxKT&H~ffR# _d@NjC;xaWs>*Wx?-{]$8p!_){̛ut2*LƷyU|!k_udTM^-mrB0ct^:soދisAbϜ_8"\63/W=qRo撺mNH}teu3?ǭuBTI#l>T}Uoyq{5 ߶;[}).FÖcOggSC4&BI]5}*!Dlf6| xqpp)Hi3D=+<-Z$V]M}_'oDC*s l$NQw{\Tr+tvrd2FT:זլ"wy<5kW4tSj֔ F Cȕuy)AAƼBͫSHͫGÝ2-G]ȌFxHjFuzDdWMP!=Q="V}uYN0EGT#3ūTgB y_f}1|=*T1Nt" UjUdvxfBZqBF Ʉ9CgahPRN2IgEYKggft&ڪ*;M ZE2#I, 4 3P(φ;/O~'&]?[j76Lo|faH Fta9MIÅvż_U~$Οl;zīիW ե軭d7~+xP!IC^oU}/$*L#(bFK]*⹥яL{G*m@[0h\}͔tl3(tk 48qݸZ{Ӌ~}7R(Ό|FC 'r7SwmyBBr/mGG+|[,c;jfgEcAT+pZ˲83ނ>HxOwE5jޚhUw=fk҈K41Z xE]K>>O?޼jadTƝ >'#^yh]y;bW2S51*-{}^g6;"zc͋p*]#fa姗wIO xh^/-FDf8}.=Q1B)3okO1q-)o &R.!C3JΞ|T]m 9~ dgj"ox<biB>Ôq,HlX q(9iLeyMךS#ǵҴzFMBM-Yի=!Eˌ#qI 8bAW{455ص]c;UH'%g`tD'A^]grR=93"給r[?R<5ǖ)yTDk 5$jh׀-SdqtE,JdN%)X)֏*oo6*JXyxK]K#)L'Po|0 $;Bط>߽tE$hY2_}ӍNPUʿ`qKᚖ>,FkcdבϹ,x<3ޅ[?v,{9y;aY(wqQε|3:H^>Pr4rRkLÏ5ƨyn⎠ P]?=sʌ ,vryiPFYi_>Oj}&޲Z0J1Wp.FwgXfcyc8!/yd=$9v{ΚrV!nt Ϸ\)6%$ޓgdz޵6'cA6o+xŒm^)[5!\6'D"WֲI嚐yIxa}7Gk _jP:NR\eMR:H-YIEux9,U?:VXkK +S:}#륑yv'd٫hD|B7I2UECs۝w[z@ u7ޭ{qPֱy &Oyp$T8xsy7--[pkn:NuwųRhd]jYoѽGkT8-'erVQf2e,@/XSl1d.mXcC6Ҏj y>>C#\x%>ϑ"2tZU-fENU$|-[>͙QGu6]U{s<0C˕Wݴ*To5^̆Z%NMRl]Ef(:_LSg(N՜viJB_h{|{ѓgvjо{ #רDg] 4|eԈTg ?..g|w锌ZIIe#}c\tʡ5{%iUa!= H8#ug7A㧵&5w($~嵗¿=)zSYY$Yҭ$_J—)':ygg|AlataK’>r+smjl;mm|J 8QՐSaqj̿90L52G <5űJJR]4#R:|q0vFHOSH+%յ[-7SLp|s5:f`5"/J3"~7>닩A3:]|w9 C7:[`;]il)1n.e_O?~3\\I7-Db)Ko{] ydx(8I;Ě+=E#w{uR`8sI">vRږM#xcǝYf]^OLqSqȦ'58nz-5K|7'b;r:zVXرIiD/SNi`ֹ%)7XupM=Mp?uLEcgq(wqEὤJj]H3똭|RVv%9ow~,0\oؗ͠ՑGm~˻_b/.!;&gzrI4i;8i/UlS7bkBI$\"A#{9D?ֳo|!;m-" 6PJOggSC4&,k lj~*])S{UB{:uvt#sgR R7rȭ9Ȭ2ud_TWGhԺSJQ{Њt6dvm:Z]VZ#4޲FTơ֩g@h>Ph9ãRPJD'j%Bc"ۙGHD+QYQ9 h嚡8:%u'E?#T5G6ґISw^* MeGwZC)M71qd(]2y s{1}]򠏻/8_o` PsPԵSF W'}zTS^Wn9wM/_) y$ܵtm-6= %r/ n-I]jsڕJ4ݕm̿}&d2m .DN-v+ѯO}$$_nc-՛]0S}#u{AMni>>]}lF_/=rrd8Ύ a]Uu 瞟~vO*Ae"$vLv;=N{㻕KIfݏt')䩲a(QAF)Eϸ17ēu$ FkSiVNCu|Ƚŝ# Xp|qf{uУгL|35amg+ ηYE~"ͅ⒲!_X8ء[ZoM> E튌cNv=?(wOzSp3[Yjp)3ffW[z7f;Z]XhX.H;=*vXS)!Ч}*=FYy*~S[5qh&0Y>F:"ڏ{]tk\}(tfʑWPqw~DhM_Y\O׍~]bn:t߂1]K1HZuнҷ&ZOP c6_@]] *:#Kő.?H}~oE}n[_=ִoxF"FX4z{m,I>6q$<@=z6;ew }C@aL\?4wՏV*q$]i{eZ|JH:԰j^U{!+ӳ/7`чйcWNfmTY'39/SҍzAkz0F,uRS+̎W":d\tᤫ[J+FD]ԭ3R#̿;t%!en^S'=dXy}\Y{*B; qe;/Yמd8GVdߵEX:d#DiQ `UJ9'mtgul^p֪ujtS N '*dzpvyiqRi J8LH9gY9TG[9;Z]R!Cq+y1U'Gɒr&HdĒs܎zBv@`ʹFSL,shc0U聝S "0(>TF\d{@;;|c=ؖK ^aJꑼO_>aBw&|ttnĮ"={ịsZNȊ{fpG#c~^1X4Д,$86wiN !Gv3+JujԘDfihGl.r8iJYj^2v8V˭PãHa2W_cz䭋|Mza%`tYKR\ur{jŴ5!<岐i|_9E'ɓ|7&ߴi9J1YȼGfG;z]o3!7w_Q3:TNfMOk"KXqBjd>,C8QU򦮂 s{G/T(B;OIRG+S1߫SN8.LPYv$jքSJg)Dh}5qh.]*qq)J4}e!kxYSWPSÁi%yI(K@s2+fIiƃD1S^|2 1xq g_M(FTU${>SsHntܛ$t6 %C뽘j?H.}<9=\wQα_\R+ɟti6Zmy^{KJ}t/eT&]S454E;BctUdžG8v R"ĢC6+/upQ1d%uW<[Jikw:F+x4Q$s(K]W׃786oW7ez&~(  ~6۹窀f~>* %dVk^UW%P'iGcz[.m\*Al1y~&54UiUIQ_l:ٮ.sG2UZޓWWؙ‰,{:9Ѫޙ)UXr_w>EtHDD*[z8tTl B|WɅ=Th S`F"jfƯnǟ]|D56jeMPvٗ?kbVt {hs=Z61҉-7-)[Ɲ c**<-/yj#T}#N^޸k@M.nA^>cp W jJܞso-[|S\gl߷"z&f N ұc$ɶh,k/ DIw]WOI H#J[{kn_6Hl\ `CLVn1;fyu9olf^+Y#́kcSW7;(W>Ԍ^*OggSC4&ib6+}:=d\c՞gx[Sn߶p%/N2f$tmljnHrx&VD<tnmK TP5Xz|=yޯ!eSxOw4}Sw=CkWe*S=!**ȶ*y Y[Px:™E)5;܃KgMw>E딥fA1S{U jr|8&3$FՔ;LV6p5ZݻHbҜԪw028~zx~8*{Tޡ:uIU8@Q+F Kќ:)n T$wjE=)Fm䨵 @V2Mj6{jFTDEL;h׮s'Zt{*]AʣQErt8}qBvpT)̏]iϩM*]#E̟-N:!$!&D}~}iH@96}%X<`^o cDq}Bn~팇d1=ܘUh]IsO]\wSƚ@'{JUJ(ק}KӑOnlI[Pu_q9p:bh7W7 &$.>.&UҘd֟9VfE)wV0#sHSU;5t 6]`wk LE9tTa18v W{kۈmN{RrmӽnnW`c8;M8jJ"w\l6nkBGjvvW>n,1N S;-̷V:MMB Rw>ޕ/ozHJa'Qf'؋W#zIUYYb9;|3̡W*5 bcƀ>vN*k0hkʈ?fknפ>kӷA\CT=}K1}-׫ga:矼?eRђ'H[ZmF5j X[ʼnxb!6$|O}R|l bg5㉡fYX=!w^eݖV&<<$y RΘG +dU:[WQNt܄FH~es& 6⥾T[ᄃָzOvwU6!Aeqk#bQ} !Af~ ^|[HZًkMMiNG">. 6{c'dtkX ipzq:wu2Ԛse{o3Et/ߟNZ062Z*[RsҜSyܟ$!hh*!.| QIsgL9n)e7yKMZ̮tRwBݩe=٥O4/ k~Us wyjy9#;wdx.P5ryQz>Yx5^6#f:5T`Q\ALC:#YtDZ=ףX*ehȣ T2U}wWh= *ĩUҿ o'pw~Ҋ>-= )(/̸ښhH&L!ƭ>){ƫKm#rЋh%"%s ~? mϋMzj׭osK'eFyעx 74;ȟGOr?/Cyt1ELze0NھʌǩKKĥe.m=]*ݛ~MoĴaatTٹX屫a.yv4?!=u163m F8*5[ 5 a^ρ^BFO7'p ǽ"\R[k;R@k,:28 r[#)G#M48U"pj;8BU |"B֙bȸC:&ZR@%v(&s ;$Py0O=S[ǁP:}?/F֚IfМ%\LJ|a&C硪irv]z R1{DfHHv#cJNC>dG.3-SflZh(>Xn~m0?[h&ovIS2Zz9~2-fݝ]MƸ1X(r9~;*@'l/v/  ŪNSr'^tCtQ,xho?EfͩҀdZ{~o޷8;7 .DzdZ1oaX1-MjgG dty}=4D5߸OrQGѫcXzY&JSS QYnhn!Mȩlt"'Y|V.hҫ ǐ[`#k+'Z"t+ V)ur%5YOl2[Tn]:>5A+_xXk-&m śIgypڿbm}W*帆*/W{A!P>6Z%y:XD.wv,Zz/~[bX*0|׊vDm}&" 2TAxnC@1N\ DNYf-אT9[\#^/\uf]-n'S't#5 .Us>jsƅrЈ82D4j_Czl̝Ԭ-"$:A*JCtJ Dd:l~ ihAF^< piTI,NE)F.J>ˆ<Ԭ%)u s~:Ud;?-[эtfsϝxOʐLkG@Bՠ7mqRj\pIl Y5!z:z\ T1hB +FC 9=izX0K mտMg5L=2iϲu-2}"=s=~68(WƖRWR`ؚnv2x2fߐ=SRřV"=~kBW~ͅ0eK0m7H,4Eʀ(^1y+!$*wϾhkp pɫGss','y]iѦwV%J>ϷaC OHn{Jw_7g^+ibXgX  }q^HcǏJj@&sTar3 ]Oj_j|{'d rD=L7F)jos.Z9=V̋Y]XG:fhhKaU۱bet!_-ϫ0pdZpC\Xܜ듾 =kV.o!Mcw1gP* 5.8irY)j+W-KC{Dt8mU3_IkY=U6RyPàC+[TszYW͟DOggSC4&G 5[9ZZ'f'?5Axz}bU d7; $$=ESCS6QUў}kٳs&Ӵo{ϡ>s.Wt=ǽU6+?/GZz,5ỨI.Y;5벞]v|d iK;T顬<8{Z#w#ܨKPvHUɎw9h=:gR|8Q>~*=&W5+:5?ꐪs8E=憓 Ui @Րf%=Z}Z_SҎRg*G/AcGrwsK+GfD-ijG=z&?p38xM\R͇s8]d׎Jh"fp8$C{9tPt!/ S!ݴN·hWZLTQ);y6Ȥ5pNZkϑ 1vYBhJTDJa{̶=#Q} PX/zL= d44қ Řn@&6wOERa8Z5J>ct9@աw8t_#nr>r\g7T 9~mSOz-yYf7⋔FA ocЏ5>odƸV8]&*+>PIkmٵ\Ly-63-e֨D]p-<~N]e?Yoҝ==mcWwKr |1uL6v?9R^13Vu=%q)b-,ƋmW+ǩ,ֈͨb3ΤE}U/%#nڑfsWm:l"l:fz+h]ݨ$ EU/jf2!+\2.ɺqfs j^ q1gtMR|8r2De_?jg5?~}(aw9_^NkF3/flA=F^6ZcCaU]U/ ׻!@nM$H$b Yj EW8$RaT%s)bd\ڝ5:^MY\zSF-#[2P*pսwM]Lk\u~yT *9k8g"㫪qHiҸS뮪Q3K5g}QJ:phWV囘kH%*"5PY[_8>BV9)?ʷA/V4CnŃԦVݤ\W}ϋ?MV?< !aF{ g6$XNI$2Ί/7wo;}L5!x%Do ۹xnd6*fZjjw478$Ukq&5Co^p:Upk7fp,r'DDBؙLB|;Hu,7MF9~ WIONOK}٫9qnBsvyr-8yɗđӷrc9('ކ/NQNZq,OgUƲ'  fáI.tn3&ee?=ڛq^\e#/_0M|J4R\LW߷uM.s& yg\dy{ av/~?JKc5Qb$}+jy g+G͡JK:i]dk4* ]]ӮX4xT]_V~^Y{dꌏwAoɼЫyވxr蘪*%SK'u { ͑4}k 3ۗK*I,rξN/zAM8>~p7r^9}&Κ-.o_d m^mߥezQPq,f2Ip6;= ZgXfcfm ]s@7c8J XJj8 S,'qDV*h!RY⥋QNe2 5 ɫkc_AZZNU rgjJz!*VEk#jK*R"Ӑ)s fT9Ϻ8G8Ս=^ +JJEv}pQչIVEKDwBkQUlrWZj.~f=b fԔGSzv=c)GF/nc1',Uk%ءFk.TC)AuVA[MCTb~͚ 9kQDD}Ou~'LQRG }Zę#5H}w2өYtfujD!M}Vx;"(3QwW@!|l$3tݗcBhُ |k"RJޟِ&e;6F@ؔ2?e鱖[HdIrdj/GvN t|ӧGTOx60e1l>=@GLu?fnJGlᛖ,uǽwҋveOE}Z./ oQ@f֏QԄH\<)w9X-U ȸi/C!G%ߙʇhGi_{ϪbP%ǵ\dm𙧵d)7%/h~=-JH8.X*qӃ,RԼ] &~d׵n^?ɸ֭v-^]; PE{/yī6 hWֻp}=E;n9##'bޚYsV[2e"usoqQSc+"fXu^cʠ{ahTB rǾ.MTrE^-u|?dwBrɽGs53u&Z w6GK|G_KonQ8wFeymwR&Il$]U{c~葷~UwWT nrJ q)bE6[{^BF5;{KD=ѾE\K_ц]"un TBD:*߮ *hH]U:)Rk V{5@b,FE]]DȺSkb*%G=[GhT{:M,9S.ʈ G$+ w2#3X!柪ĐK C[tI^{4uߡAY#> Uu85rkTdUNKݵWϬ;>W|)Qt&rh#*˚Hp$'q6@WgF25I"O BtƲdVRN:kufݥV+̏0wJzJѓYSkW u3; Ukz&Q;[hLIh@a/d^EaW4O߹pm9ӓ\~fNn8 t''xAA`xU4.[>/)vO 1ﮔzYWz̩q;ˋ8ȩ[5\LyQۄb+ׇ 濞@yetVY/<ԍS?sM_kF̲`4WO]a|rhU} uy1}^cH5vT_$ogH7wjQbvAþT{f3<I2*yβ'L, f;˵,#}wXD=~/>z^ *)w_H5ڣ'eГ!?|w:@A:Vtun9s5Tvڜ0:2{}^ͅ`Am)N =}Ԃg:Yu2&c)w4msEڡSbäPrG=I 8w\!jP|1vޏ勯 E])%ƣ)lz2mnг>No[6=@S$et?~DaݵIΛ*k饶};0/sG|n7K /u}n 92:ve`wvT. zwux0`76qH>7tΜQ|UBjW,VXw:c"PM&^ 7K'S{/ya:`!HcMTěnYo/OL ~o^ޮ_<1l`@P' OggS C4&} ~6~v͎`ٗzA O,~:V>NՆJ2KN [Nehd'|RzLCVǁYee==͎m *uZ /Ss, (.|zٳRBCcd/j|=ORg|Ԟg̚LQ6s#|9v]cV.v)b%]-R_Kأ;Y.Un+Q?lfjK֨Ǐ>gi}/ =1vi jJRxtּ$yE5I"P3][##3sl:|͞| rEP>d A-xCK:RI'P4wte=Uhd{Z;kGd f)}TEwI8$?&н@A}Ɓu@7s НEt۵), hziԠLȄPN!MȓՔP(L/p0x[w{9N`^iUئro2G#ow$Ȫ 맯~OjkcKpΧh=,E%5^>JIc*:3)czl?>s ª{_5Sd/qӋ5ZdƘ'xrC7N)O{&~]?\Kbsl<ǗO%}wg|Ξֽp>u'nn[tr~*o2zPן ]Ob,g0=M_c{i. !FuB=Oh`h1?Xt"sD=XJ\A䂉,ZUԞoB|cvb4-vi:- hQ [OXI/['?eʷ_ۯ2zU?=c҃T8Z˛jVh=Υ^% 3 $6Gi?[Śc{ E>M2Tyrպb Bl+v4aǃ974~5G~G~[i3Y8}nGq=b A?[ozs>.-~p?Qİ__gIiŊRF:<&&d}߼$wtgѼ1ʧ|ȄHNc&ڕߥ|moNI0bz]>ehJ7CP(H8hyS"i:v.8碐1AO1ִFY*K\\~6۪3nu.pfw5w~."r"j +PH]f8p _ Jכ~\Y YSA竓<|TϹW7cc!%:Q8ғgxGˡɂ,» J.ɕh85g-/Ynjeg>~}DnE+޻V߹h]tqPQJD$$>֬>wrVGy>d9 N͝{kD׈ m٧f]"ѹAQ#&~GGP\pz+N읢RQ'ɩFO_L#sLY=;(sWĭ*1vf9|\~n%U <2΃tAuQkH漞U]43#<_pJǣ 㣢 GR_09[`oa#_E&p VpnN}]=nWrWmš Ix^?TofqoTked]c9;8n~W~$ۡÂE&@Ϯ_s}ffo'3Nbhɺ +\ɱ z+RK_u|# ^ v(y%ɾeB}9jb:f85(4tʿK[.LBiД{ύ lt (_>6t7A ló %!Y/ oޯg5@!]Īݡ6Un$e>QoPH@BNt>xjU&jNVj(ܙǪ]N;U4]3Vk~I&Rr{nNzw%Cj1?gŹh[#9k*RYSYZ^FvJn$GcLs±)Ӝǁ+*CzS媓2՚ϮZH=$ѭE#O}qs>ϓZe %Ap}&k&1U Ȫ/NshbɾsuV՚, { "NU5sR:{/kOQ:j4Jw (Hd y$5[}Q)]*B8HTpRYkEEII‰NTDUNPunq1'V yS SL#7ǁiƓpM{ !.~*'BvZ@d(( IP\~:)ș'X=e;tAf`V{ܠɯlܼΜ>#[3^U[gq I>L # ѧhyT6o=W;uD,[wS|M|v߭j9.C1c.{LMd5CQyl&s==Tc[K"֯3wXh#Sdq+ z.cnDbЭXqHu,c.j^[aj +Ta.6 luze9U!cԱϕWC9)u>׌Ŀ~v0tt?];#8(Kv_Gz)\gۼ*jx!/oBqqh?p>ȦħP ϺzSj]# zqvM^£aAsF^z&; @}:emE]p]Kʓbu,y"޾ܩ&34UhEj|z:S@|) zN<ѳšc]|{ٶbsDi)+PUWalF LtRAt=v#sB+J%X)i]#t`y ЙuN|t{S*[̦ y֬k4"NQg CD8^7-09ڙH;ًZjL˧蔩[_Dt"*sg+sR5wW=T}"ZgE%Q=A@Jпzܜi~"kJTD`" .BTh NBY*4}Uw9̱{p;w$Z|_$Qz𲧩jGnH(.$' YzQCb굓gԶɈ;U}WsT:Gr0@c)rA~Ü=}^'}"9y1"v"-jzu!XD(~|fuZ};ɭv-^;1<ɔ1#E)!ҧ[:Bŵ_̛d+,4>~)jO|[>qiј-+I 1r#|.~"oltGȂka~^ܨ>wnHݍROų۵̇進e*f}bQ%k0Vt_Mw<-&U޵Aqbv sq'(0{>ۉap;b{8UN#ŝ,XJ3˻$JkJW?1dVt%u\1R>mnIPj=..a&[+냫\tfhsRyU=q}.\sxϷ[ڪs-~^SNr6uq8]5c,uQdҽ4f.FyG7{oW>YW5DKcKԙ-ez\L?9W=7d}| ۣ\:1HC@n[VOggS C4&W ~6+tgVC;lvXxBg_vXs 4D"CZt^4u+Þfu^UNdYeЧT=+ʜ+Q{É"R#DTG^ 4f}nkv}tERVZYM=WQJ{|XN-/g̞D>5XRk%d\kܯד=Zcjj{Ֆ1WGV^@A7^GVoEE`[|ۙb/Z9D}7+8W. Z|xi!]{sQv~Z|=41#v"=!XWN/<%_&rϝXI.uwA2rjLbE%LJ/agFY+Zo>oՍ;=1$71]}ߌڞ6%}*MIթ_ǔ)rP>d+82`#2ijB8gky՛cZ=fHzF丣Xz2+{]}<;ٴ[3_wgpgl>+qUy==kOjO\W¦[84:٣ڇ.7sgsPcد+fYt7}\7w{F\o^f_)-A[GOw{rg) :dNKm1k+s-SyZ ?3 9O47O[F8> zRroc|eQS1%#9#GM{2.}Wi@~ȑOn׬ɮ{nLlFzc``3z7cv=*3{\t`Sf梆_7M>=X;ΚxW~ٸ0B~mJ/0yhtaGqP2zyM<[{R oܶoXfo-kͧr#Ԯ{No!%IOeU"Cq0STi2ujIܻӣY2f8Mf]ejvk6:kZ9X"玓+$y 5Ȍ."HWRRFͽщ$Z4K*ŤUugT31@=-d̵KzORٓ>bR0W"3ɜ"jktrDڪjͽ>3XCyUhSͽ_{)F&='&,N%VZbF 2'yiC0Nj DݽQ.i;Q$8ΒOOm\CE84z *tȎ3EȾGSiDtT5JG]+!q<7ؔj/H"GEjɢD11L<̶'vpxr{ۂ3OA+cV_av:m~‡&:KU}p23 Ad|X=wteҀb 7T /jt uUϵu,.-9q=]OYyk/cBuxxC~ MU'!ႇ͐ u^DpF >Uٟ6F?օ%YozܸuQg "d; yaϱ*ߘ`?^g][F7S!PK5]5ET hq{  YisQRqYKe?T[y2a6I}n?-O~AZ{̈Q] 7ŏ=ee8ԶkG4:|j\фg<\ts˸8Nw\Sx ~4,oMol<ǻ5ӷ[쪵k?q'uzظJ!sIKde$[Kr5n/y6m0Zlb-xkqz%;/o Z?U|*^T)`kgODuӗ3W6N~tQ}t\=[KGXZO۝-t+'nݫ5Ef~/#k.}'8UG+Kt+kl.ڬ4+pwϥօH]ӭ!NЩk@nr U.ARtF+-NPE*;sZ/3JtkN 9H"Ic"LO3J9,3dMnZTNOQV1AG.Z:X9l_Y\4{nG Ԇۭp(mAG˶{G_K@vRߜNdO';YThO4 h mqcԘ"Uob0[&z+ҟ#i$w4-/P[vlE˽.Gk)?E-Bzup,\4osngY%\& t?܆}h=S 8$9:Qs>ߋN~7N:a3=5!/k$Vw~ßn&W+tRw/V"L%k8RK:à{V؝=K%jJ}hf;D[i`=oLȈ"j sh- pSʭ&{,3<1C$OggS& C4&!^6)2 mqMb_ oH  fM"yps]׻ΘUEb>MYS^XCrCnQN:|J&|Uv|&P)jVKern45Hd?^. MqJ"BAN)֩2'LDZ71q\9$殎TSOB5L8"IMU7]9r#Yd sBoN|:?ݭxJΉ OQYsgwq]T8VR|5"EFCT[ѯ 7k RshRzvwtCS,Ԑ*; 1+Y!em#2ۭzZ̮ ə(r 7ϧF*TB'%yj7p ssό|L,*S =φGHFg]ҘȀK<, isXqŚFj^xEyY?g[3rg6m1{$pP&=?R/ڴ"][ybb|H? Ğf6-yaOPs!C yq2聅t sR9#3]?R^;mS|!Dxb9˸g_~`=tk1Z+1T㗙kKg<ҷ1x57ɬű AZ?pU>MV!ԋ3[ū ;A)1u5П7iGJ*U/=M{C$E!9d <-E|0 ֨rQ5muε:<al/m~_+3G^/Tw|? \~5[|^Af5Ϟ̏BU'%Ua?!Us?i-SG6QvLڹ"93{'7vNY3#sv*]dKN85x<]|!8~}L{Ϲ߉Jw|:DDTXX8}Dݪ5k7=9 2gM5j+sC/kM}6 m+@w|ﺐhuKCߐNv6D#B44x*QeAtΜ;OOVR!L]kB3{H/ɩ?8k' ZjAjuD;wkk@RO lj8~p~ jh}#!؁AD8`!]ҙSt$LYuznYR8bnm *UiЂJkD{ɌF:u"\jW9w]|d%H[RM7"O@7b= * ,X'Pa|Ӫ3*]n띒?Ց 7!O̥SC, {JHI~E_y("EcW- YOLޮm/}-nR@g\Yv3WH݊gJǏKJ``jvgvԼ6#T{:ŏ?lBk2|{ )鉮^'ٌUН}#j<.FؖouĮ`v K ǝ5E5Ăԝ&ağT͟ fIHKV}`]HOYlWқI@vCfwaOē+BM4qRvoxa} _4\(ު.=; Z{3j-r:Da' fz7ǹpG&N[`SQ,Z 0FR ȸ0Gj> w,P2K rXωΝkR "o]ɟ76Yi/瀹k4dD" -;H/$ƚQ蠹Lv>24 846KϠ-s&&r, [-U$u#}EQ{!%1G\իB|#SdISĔQ||xZ;_Юmjr<VFrry:R$*Uy(VMjIϣFMz?ݖxr\~ Q!VkyYwbZd:EĻYd&ΘRZ^Yy=#{[su^Ղ)uxY倘@ɪ)\u}>o>_Uešfz:=UFrWxd :]+ Nki]ytUVkp8]ut֎c[u>qHjuBqH'\ h8螨Rx8rp+#Kāُ,:=M3Q\{ғM~Bb$Z˲V9`bko;P62!gq b2Ћ}csvcro`wt8]w¨귎Ղ;Oui>JU7xdۘd\dϣhm7H-'LwڟN::ٜxCSŅ,ԭ0Wy?^fAmU=FGxr܄htQ҄yB=VWLX#f·;]qᔟ3=Pﭢޫڥ6k^{0un+F7;?._֓D6VLإTp7nf2y&tzzJ7`!rB !PU{X^>?_Mg^o>IwS ."}kx܅+qˬrۇeSsWy1y=Oeǎ8_yИj|ޡfW:Jc5j#0K(mQyEerev#6{쨤j]5` z4VIROy뼊m DӴم,Gq^ɸ\GB+^^ӨoeB&œ볊YnIW1碰zaO^bu͝;BXM m"#9<.2pZ#;:MMg-NzoGR5*m~+r{lvq|S,/|`6qhBP{LNT^yQ+:IdzI>֥09꠭Q ͚皡xsc׬'ݑTFL}L%0/RNSu/GG?#|)Tij>Gk*C5-䜟-hF8R;S9WGSuXU9HjV.Zg 93{(rjDZN;Չ42cdsdpcQTz"+AZ3BN](HSq@q¡'rwZ"%8t#j43I3SYZDxԺY!gؓ,Wc^.kTz)& ٹF)L{Ӥ;<{")S.GZ3VVdNEQoW3+{z覚O|_}KaݼƽNÀ2d|Y &leo 7ۦ-Y| S%qJL5yڻb]6tښOAoO4_ \6]~FzoY:蜦49OiϧﻻO'35PǓ|Jz(VRʞڴ~sV[lGyJ+NK#}ܶ#dGM{6]8N&{>Cdu$>G >eș8affoդ-2W҅4=|B׀s#]۹&ZȵQOrBz,;%}{جxcO?tSV~6vո>]|G4s{ ;N;Nb34wI1E@~h~K>^8Zۥ8cl.&|B}0|u s.Wb̬1 0hO><Ie;MUaWT4^NF#f >[| `2[ɵjJe>A+7ɲ''30hk鎒IOsDq Qz$ȗ/w/Ђs/ZJͱՀ+)Mi,;HŸl>3p[Vq&>HivY[s_=7Os~KHOggS6 C4&  5ەd_ v^'ڇ u)W @9(5Qf>p̺hR?T3UpC/HwAF-uXw%ѯMNt-9)UkhqHGTl/&v>xy39/\R][F.kr[<"߄1Yl)gQ~}[V tM5*J!KJsS,tN_ѻxT[5vg&~UP3Cw!ÙUv.=s8~UTf4 7*,,ԥFhԪUY1gÙ̠~%843ЇRfT a͚UȦN5i 2H'uw-RZ #5@  %D8]k%t3e8NBDu!]8^AΠܻk'W$,C9wS¸GKCt+rzi>l?\\aHt,=vY$wp)-٣%NJM}{ \Z銢W{Y3=u1=.)b4T|7"_Nujtt&C-yRiH)cކا6Cf^r?ET34D {x vC\nXKMu;d?9|FH"iDR8t"Ÿf-OLJD-u= cٜ4W5`ђi/C9XMDڇͦCsmOQ39 )bh˺p&ӈ̭iX+F^;AO/zH1[~ 8^t=HiYZ{iߗ<j `Z/+pk^J8j8Q'7I=ͪxS۬/뷤Եe?%'=2 [c["umXC^Dxt{]׸c43{Tj}}es2[0KN+)UOY]sv ,Bz-+*AZwPԯMォb)\؟9k@PO|~t-A8G%miqm=p;p1P- ؝*75}WkIb_Bn/yNlQ2 k^sx2iO-gY;ɢزyS?^6=q85;qv e F(0^P\-UDʐh3e}RP/͔e9~4xZU:2J|2eHg4PB3d'ʹ~4<Ԑ#pk%#xxY]*GsDE:F^ȼEd|TW1GݷI+:2Zsiљ l[A$ 8C%'_:dG8{},5p(NMQm!ҿQ_=XctSN7hxM*/qXaI,fn.IyB"I<϶߸^/b~53BmR1-( J4O7Z.ƏҞ[\PQSzRZ2O5: l.+g^iro܇}៖qgDۙ& Zx epH΀ϯ} 6Q_O AM^+އo.JvtzqםW{<&>?l$+=| 8S9Ő)u"f$X3=X<66ZXWp8O 2.T|7TғhMAjw*fPtMmkc&ʐ󏄌ƒ/|1v^hPz9G8*$N! Vb(3S㺮ia*z nwKA50#K_iV_w";k]6סd{YfCVV3;1 %v?MTg6{_ 1ZV:/˨x!i{sJRla3Ttˤ0n!zt&¾ЬYVl4BP[x$Sj_z~^Omgu0Pz㵝ߥ\;n,m{Od*-J%36(mҐ,fO/9zM c0}Hg=p{uSդJOk~轪46:?Pv*.8NKrORfWd=R[cFХ*m"uiĈA[ ":3E[^fNy"49OEs'6"yZs ojm:PsB6zRtVxBVt ฿z&>'KݪSrVf:HbrT")q%Z&? qWi\Sd?phk*$<*5wȎ:Z8k=7]Vtt3NkgL';ttw*ڠq*o)ur&2j ]5Ndϔ9QUfG ]n?b38yߒΘud9hU3ZA3+= ZibZ;E j 2EY@t}'-m*y/%1YvHt&[A $$>9~5GxH q&gg ̿Vx$3bZfv~bmLUrm [7ty"Y~Tjhjԩ ]y`y{ g[qzFu\^+o-: iLv]Wo>r;,Y|]4ϸѼs/#Y-Z2_^[4j{0S8)Jg<fq+-[#<퓉=/]7Z(BjֻKi2;3f'&3I#iS~~Tɛ7?mK]nCɳ\]]dԱ0yL S;qӌ*x ׹6^ĨB?kP/ >>B:W1]#˕I&t0h[ۚN=5٦"xχ )S,MxFMU8V3ɝ=rc3JvL{.%:rOtHaߧǶ{oα0[|2ϩ}>&AxaFϛcC?An|tՂɎtz .6{,AVf'`y(̄pyvQ| S\Vf]Q2ME1\X)7lmQSSktԦ>uQ b]+3HSWYKeE{.XU,<|0DIsJ9dԨN14WsTRyQ1%"Y+AG+ eS},GS| ;T'ډVl_kMcZ8f*Ujґ*'wEFEueqdvR_( 1_N$kNY[yI T-yk]#Y"ZE?.-Wsqp:ѕtk,+LdY[5"$IdNHI /Fp$lEU5tq2S?3)9C#QIVJ=Π:]ZkݫCӣXcjgL'h#=IݙH Gqf$\w}DXF_a+l2VB<ҨѺbFsEL m)Byr^b]Vq,4'WT:m៌磰^ߤq}c}' %XJp?^UQE=> C:UVmkN3 =:,3{d!0~6aKJe!Eߨ^4Y3]f!X+^w)Q5(URϵWmO̝ _A ^{eߓb_ 7 I8g~F`0;rx=^~Y>o\f5uZd ,5!q\}TVЪXUp-v%90 +Kц] xvQ/JpfN& ?DD%I.Ml^u'f?޶)ٗtM2ڝ;*0Z 4ry[ǝвk ۻx9ՐW4H7_fGCq7f5iUk)7F{P;Ox&&w /DP9٘?au3a8ųw~sD*8^^E˩xa+CjRԳ_)R1iy||d*-OggSF C4&i366X䒰>2J7\`KDi>sА2ݬ}E} Wu{5(ugWTD%J~';/!bʱ">! k4Ip2h@]:blx-ܷı> X1waeuvd$"ա5i8GRR -Ίt]fuzLyA9\MY%>^"\ Y=*}P({>d-mSuY$^*w={ʸӫ-DO(|eZ OYcOM1Tk>}p%>Bury@E{2WjǍd&tVU~ԑs8}JY)jWxgZqa*0TIxZS%j0Dd8Jּj֩NKZ!PDDג}ާ>*$7zwe&lOql[|>Э{ɞ (p 9mV%ͰnlND7+tDn1ZՃetT<-j~o<Xm港Mq!`a\qw wP/!*WGY?8VB8S/9Dw[V#{&|X469܎kH_S]!2|Hyz}ޥl6k:zDjtYJ7E=G#6y^pqŃgH|c'`DGZc5xn+zNjF̧+|%BX^B@.1Ùo|ǽU1}+B,ttCtZID>l=wψsCdj*Ȩ*U2h)qV{`F3*RQ楣`)m:"ǫMj@-i?TO*_jߝ^p*{Xٯ R`ឱYKEZpѕ zxWbŕ`wfH:%_ixyK,g:Ub[3Q*xν\+u-O]c񺒟쭑2u h2#skrAsԒ%Rj [3³s_\}5#‹ /wweϿy5#J[-F!j'sUxiNϫRJd=Q?H9D5-9Qupv./SE)5Ye =ۑ\TpSQLK*d^Ѡ kugTQjGpf3_yjtC~GǼJ L&)!юYC Ijy@N4'v'LHFCC?s./|\~F0H{(J;֊nJq M6z '@ L-'|уlntV7|Vz#]8zt0 t>?N`Wxdd>5XͯPX' Gۈvjt?Aӿģ}ǽS} ~6{6xdi6* ceeF\~L4;'щ]2!jL>N'BU(}USy]kco9o_zȖԨ!T5ZR3J6^UU '5z.}G3R]z?sej+L,S[|^FO\Y:T8)d=o;L)~{1zHt,P_J +""gn|w4b:K 9KejDw!8Y0ÑQ'mi+'\9<| ݹ0@^SZhRc9 3#oɳ\I9S58Lɱ8pL#5v Aj'<5*sR8]sJZtH:љU2GNN%]5ާcDkS̆@GLFOe{\tKdfsB5d7bCNcj+/钦;a~Ja!&IgHh8N&-x|rohyh˱|WӀ 1`]q&jr)bER{3wrׅEomյ~*zvPo9NO G7dŅ܊^˺euqDGqwAoݒ /1%Y]^7C+ĻE4,RZ1^p?´u;ouTڛ]uCGdp\01hSkԓ&pmk_;?TkL0x7ߌ?0W ƂpB^;6bWmKViȝP=(OyV9'X2Juzg}E1H5<[CO?/ U>'Fި^6{ 5XfO5}om!D^i8#7͍6WXކ/h~Bk4l'7z{.~E'.V)@a>6y%|~͒jN1J\_Dsʗ*84yN-<?vEGP#0(G ͯu?}.DT^W7<#5s]EOggSV C4&5)uz rkioLrK{(; G$0 <]0RUu[@<5&\jăEe &SdzHz7^_c889A&tY;#'hȼ/tbL[J;%{h^aF əGJ\dS5OYsQq;'9m"f>Iu48q4԰g 2kO.'2YtΪNԘUtqʰԈՌPWx~,DRS]Z!2܅32rt#3Le 5*ZZkK8''jLf/J1d 8S/JFgDYT#MfV仯zdsV!N*Ne"B|^r󂏏ddHm9!jJ앬_G DE8Ph5Αs4tUԀfQHu^?Pp/8CQ&FFzyVΎ `!?rH-9U#y/^ɼ̞Y("D, K`|47U9KyWڃU'7bE6&2qUmF_qƵf6MwVr c}fJt1c<[.Jꎶ\c0ŝ{|>J!rZhk*gE/L2 <!q/ez *twyp{iw.{Q)C\{p5ć }?{,6:խE.:Q12V5Ή¨CoI?F(LrWX2DtA=O،Qz7Y$U*wu(Zۼ|BT*낎,B(x*AnVi:¿S<)O"^W\G4.?PwajӧNi`.Vg\aΧEo-"|{VOj5b%#0?I S;"+]:}v{sV<:!rSL8D=e^c 2!kN!dtN5At, {) HutHĞxOךh\S:'UsW'] Hu]TSRq[`,N錚= kzO^G*)3hD09NkT@ 'SGkݑ/te&X5$7 7% ȔTe?w2EThy\\ c&8PT# s \;2dtPj #8SI&A_nES5WZ>d^9$f6VTr>PWd& EܪKq;gΚ;C_/E#̬F{dQgSA|\vM. <%DK/Mh݆;x+|:sgkzcj^&m0bt0Sx51Fp ~/i<ǿT8^ٰK)1u6;)UFLP|~tu$ukþ>P)s)=ӓb VezXLʼѾk)7(~WLx>{Hesq &M((h5ߚW_ j~Yq=թF\OCğ :mHo ٝ]'6w}j [.T`f 7,ߦ++&'%WNZ?+ޫz5,_Uq7}?a;ͼ{7D|@t139hƭ?_d쬶~Wl1:14[g0Xo:~$e;~Ns>Hwu̍fCw·9;rOX;Ս`w'hWv)ޮAp:ڼ+[gGF|36ƆW,ی>C1@\q߇w@x'Z_U?p6+2V 9]q 2W I[x2_;MU֮u:#RdC'wE.o`ΊW & Bd&TZ_܌}?˞Et gEvs* p /׃m7!MTF3לIv\YG#}n͝62C]'uJ A3ɷNkDOR%P%|ս>Sn:dRq2ai5zn҈ʟ:K.Z9h;И~I,Lm8CJQ3hyh t8hs璪 .!#|{/y`\8"|DI~u+|>K_1SwEL{Mi&hsWIC]!ZA9w2k"%bjD VE~IA QjC3uM# ڳ*QqMHEMd!B/%׻ytɸHb8tj PJIU/H+YL<׊R: \YE0hdNj5x{8)qϤTu!lC+{7CuX>'i:ŜerB+/橛Qq~ӛUbm\Wޠnn10I}Xf-&ꂯ|lTntaNj-Ԩ̺>2>j"u:U'K&&NcK3]Ȫix]{,cfۣ=3 _]^7XZWmެ?>NLox}oA{?!jIR "؟{v=k]\ {7 ]=-X"7}ލfJult\. v;\_r^AE~s? Rr gZq5ڮ8Z3mKEFVoSI<_NW$۲^*&0DzPm]W@V}o5wƸ>}΄:PD@"ܨY{hG+fzfҞ;`;ZN:=(or;l%䛯/{|x,e&|]+vN8ʾr8C,v\oc ߽{H6.偈Md]s`^a28}_a$m׼s_z?k)ڊN<ƥqT;%niV[?&s#"xV%ǽ 5Z}55}~ i\ C G0@"Z#]*JQN]czt{fdm:#k$:RJ0{Eԥ*/@Nr&3S]k5jhFμ<MǼsjqWo͡&b!Gj#R_Z p:vuD"䑚:ըWSvY4Bf*pO'cMIM"Ԅ!$B©dE*y=h Q%_h^Wt9Eg S֬\SZ֌;t7.{HB9z}BY[YkJ#uVDR;53S{dd8>ZhSk]R9f&<5`W6kJ$~ZSvȌ*Zh?b؞K/_%h.*x/_2 wyJzQ"⸹ 0k?|Q~)OqRbg~vQnjmϨ;$>xA Ř$%մ==لј\i6Cϕ \ΈZ gA3*ٰ#r4g/tJX|C%#8U?9bdqCҐ?҅gRgu)yKNh1Rg%"y!N?߮]ouSjh=`E=x<s|[LqV ` <|}LIAXfoy[*׹x'FTWF-Dn#~̩ Ed]|6)V~T4'I.' fFCK[P3|K+Uu?Ɵs 襜 =f aFӛ!㥸]vpREae^!+4m:Ot~&ωdm49O|9ۏd(Fk<2?_;]ÛuZD.'it8)KW߹#ѐ?޿݅ٓrfPc/>OggSf C4&2z  6}hg7ߦȾ40_m6'.Ueƪ1׬YSR %uޥʣOGgdL"@dhoA)QxOnfc_"{>UZv&]/ЩFS8;3Ǡree^>ed:Q%hڗEdn^ٔx)]&;BF\~^މ]S5_X}=^4sO5HKI-{p+EҖ?&EG^̓P=9νO,;WWcؓwwSC?0QinvS6s瞄5u/^ht :M$g uo]򛋭 6$*}hy𹿽*s̋ϟ̶u쉍 P߯2,}ʛX8}@*S'@|s1=gV,ŻlhIy\kkiAo=15!- xNqv$To~~gZ6껽l4LÊr3Ӎʴ ߺoϻ"nYLRa_E98 qD5x4S;zv;98lRYsg/7%{֬*7JO%:ש3S37T0_eۢd]{Rd{Š;D& PpAS}zbmؼmE,LUU=}'uw/zKxkqOZoqoU}r:_r󊁁Ә_ϻ3䯴1I 2v7/zar=ӽ]Yh# ͎=W^+.u _palЏ:yrtPN4ADWJ'oxݜabBw/q.?+ʩ]Kp3Yhq͚Fm&6Ƕ-W'ؾH=R,t2mĸٔlm'jT~Qad7}78p9wJf"'06iUBOZ״~W~p.w4)>dfF/#ooyb(Vu}z*>$H^#Tvh^OuTo/#Py\>|]OrveBE<;*z>ݭ^+3Of~Ld:@ʪ/c}A ftݭ͙ykP]C1&|>Rz׍W˼)-'\]=4io0֣yNJYuB,J?e?/7fb^+ѝREΊ omW%zw]w;mU=ɱu*P5} k 6bcU˘HpJԄU{իpBDm_]L3$&Q]z*# u~RB'$D_5^cm Y"#8)[2Ms>^+~~&H0]xNUDrKQ:ԥwODh>b˫ԵuRwѼ]όOwꬵ.VBJWdL \:1Kpkْ-]ojq#4#Y#Μ ᓨ $ɞt 5G6%!Ua9U,aH*SCpDZ+ՙgʫH<NfePDԉUD|G}ꬎI%5>9+S?5TZ0g.[SB4vGW-fn~ʪDZ7L+{ ҇8AmudB(N)gKўlJ'؉$sxyDQF#=HN5K^+fˉՋr#t>kgmJC6g ͯ2^+&Xk=_/#[IU UIwv#(֥Ŝ֪ 󉤻yOz޼ËCtk ´pBUd!Nj$81R`OM}B!r_M4CR7]ӵ_ӥmh&3O ]vM$gjz\[M 5fsŌkj,;|՜`dW?ԵJ'n1n2M慕GqO{nF0J4y.,AxН6`>#7\ΐAABZ_ETص*}%ܰQ?Կ}.:xȩ̻*K{VE(vFkە0q KAW-0Ռc[,fgiZM uU!/Y\/O]ԩ8+cXў_~Y9s*Q^_! ZO*\2kb>-Lt{U/'|6uJNJ9ig0׼$D rR)D1ChU3>99֨/n)MikB%&T̸+!x҂OiHYkJLcm^گWD7mb<-t&˾^bIdkrMw 6{(X\ kJopĢK͞aTOVAtԩJFt|Heu`!!G^qRCٓSz&|Bc*ᅆ^=hZL/-+CY)O.^#:NmYsk˃|ԻĠ5q9Af͌STUu2ciTf΄NA=w:P9h_C$g;D*L  ;nQTJPkL?xddmIb©E% %$N$HwDDkNu)@#$DIw)H"2A>Ojh\zL"1{:N8q$5B s/*5D 9+9GS(9QkTMGWJWoA^!Ζpv~In en9{<|[hNqRS 3PTFN+ PJ3_wa$,#la*ڇGn:z|>>KA#R=Ș 2LW~; ˫i?p4lj7\ԳMIuF6r!7O^-PY+Exg3w}X'p$^7^ѾA~K)rLu=r0o0e ԝTm6I-܃2&z".b}u%UǷT͑rײC6Ü2S[:$/Drz0#6N SaZ+KF:8]1n?DŽP^\p1>Ri:}l_{6{=2h6f\ERTvWOW(1k=/GA`<%JVѩ+Ntw~qUdr'$KNG!tAG\qx䜵X3gr)2)p{yf+e(TȾtЈaZcv;yЙ9Gfj*y'2Te|y{-v*~RRiV~ d Q+;f7$sRb_;<3'_۩.ys5܉Z 'KIL(zv25;㑅 K-=JSg*TPt]_E8ѵHhufLN5BNw쎼r ="@'{cB:DmDȠO-_HIԕ/8UjUy*NMFvfj.sN=j֑L>ܬ~zXgcnysԈ4XR(.@a)Gnpltns &PBP؈xupXŗsμfasΏ|0d'.^KWIUDI/QC5cv[^wAg;+Pnrq} C3SNΠˑWVoUm`VԴbX4Nu kxѩzIU|4lw)dG?Sejٓa|#\V 8cw.­+LAxS\\q}ԣQ #P" r1;f2v4Fkf n-Avܣw'Z2b[\;Vu>vXA(a>Tv,X|~򐌐 m/f.KW'zti8gʹ1i\^xCb _WrO/q5v9`5'_(/z:!EzS٫}~U7 7gATQ1(ח=Fe\N8ӆ}bXw0Ug5Pig54] SF5SEv~fn%?_ +ri=>NJor/log]M7vpr]h:V6߬A0Ip;*NQN'EB屐XL"/HQYk=N2ԫ2oLWK.6DV}f59QhRy6/ Xf0zXoe qX2"W lK<":?5uvL*NQEj+xf^ NO]SKkmO"Oy]SWGdJK~C5&RAfpwɢ‹9>x d5Ȣ}By*/qG**Wuo*ginXHҤ_!jGwGա YAy8Ƿt>ӫs$JjE>ZnP;YSbglV)_(< Q[Z9ИW~]BhsmUZQb٩PDI+_9.P7ɜZh2@(EJĮN˾|~*ǯB4ѭVrt H%.UR[QpRٙ_ 1aRJ<t]Q.K1@hrkdaiJ1l Cw.ԆD*]8>\Lϧ(K+ܖՇc{ƳqF*ԅM6o_C$]ݬ1*vxpL]} hՂ4TEK/WqV5'Qe)fľ);ik;2997 J{UpQ#%d_ )[Q8s*&2z2v4 xjj1um ϛgWnDK#uFfP;7j:H7u>ҊrIqz=;r[?i =ihL,O9{Y@uZw7G^y7\tAjtNJC4Hvsˋ~dSHڑX7›{v hsX䏹 ϪKy_R8,w7>E"hm G}m.>*'),˼k70G[5$6xzq,J5u:ANC=٩!5P_kXGgN]RBJWgNǩcqJץ!Ypg- ":(PjqVKmZ#%n2D ZP'rN?SJ$}:K sx^TCh$t' ʔ"~jY{O:FGg$W,7MdV^dЙzSI u:3E.γ2D>Ц] ]r;ɭ{I2Bv8޹M7 I!DiOڥ^UW?b'U_KJP5+rD=ŋfAb8+EvTpX*ܴ 5ZvPY[c{$\'rui"*V[ #Kfg#ī[>Co`E8ЁfC= ;J"n[@C\^20 @ l| 2ѳ}ɘubC"bmS =?Lbh^<),L;op0[i]wh HWnT:;sӟtNU!V5 .V{NUu$`֜S=^=;{v{ԘnЍ Ug7va#{YeG: M"g}L?gB1`yvra6޼h5CʐxOVdQ[=R~{OGRo9$1x3CTeN@/ћqLQ8+O7|է;D_h`lW||h y:-w` AknooABg3s.׆Gq@>̗4$'ƦexJ4gu}^aޥQ}Bm&h5]„?-w Ӛ[Bg@lZ'_%ᄯ\?ξkmŸ́:cŪM{~x 3uΉQU&OeIʣL]Sq:UB |UdkIAԪSԬOf#=W؅pBBЮ9ɴ~<@'Y3tTQZ3a' DPڏ~7 p|q:)ӧk%"E bFR$ _cQ \58wc9e:6bҶٖ;.x_彽lDoŷcTܭ96V5FeDU4MJ`v|PCz6{{7:|&9«%$m1C5 '-{KЌ[|5NZ]GɇŽoߡ3]R) mS KܹU4!7J9_"5)ASeA{aIףj kզ w´ql"s|0.M9 e̖Į`vDRcs{xwKvI34rؕjƱxVWFRcIZ{M>C2mۛ6L7f`k*Ay~*i:3ܰ]G#?'Apܙn=2{cKPFܒKwCϗ 4ISO]D|,-߻\&b r|0*wJwx򴙅ym[ەTڬG'.VsCW2}N5iE߱ ~p5v52['ˉ.9.BpS 'C9:Q?:щ{ꎴz{uyϙ*UNkg8g'f=2V#[kVek~&Z+Ogé8tbT3Rd"뱪GdvzcWw25L j7$0kDLNwd(ZTϕI 2WԨѳxts8zd G;w]R~+1uvPV]2s-fJ:bjNW׬^>cWGd^fS.dOQZxz&"p*4Ĭ ZcnP|,H8q:]k8B(@~"qYTBɨN*d}re!4>= fܓ"jTTG:uNѮsLih*B%jo'S@>g|vK1WGg{,=&ꇖӥ:G iN)z۹_g$ cM*8zPZx{\|mbY/ڪ&UCmz˹v{블*:[%ΨY^kTƭ;@OF3x6a1/.⯂=OJ@3aA/}qޘ"fW OoݚOuUa ԏ7BWG͞Mφ,~Uϰ3b]ל/4sRN-qs/)SXL5;}x?HTigOJ]fXR[yz"?cs.N C1B5%+'~Q 5NekDeRww8Mgv፱ Ջ>5@ްq;->#yGաsf?e{#uA|夿cg6 Ld{7)K3ͷR;?\gmh)Á )}W|I[c9h2|:dLx+G\i.Lsn8슩9_8z_5&0K8kYR ldqumW{ogK\U46߸ xw.렸QzX=݆oVLMi3n:ɣ\ʠI#ɚm(ﮞjtY.Wnoc@>Pm)P*5ڽ}[ڧSPW 5J|ͤs+.- w4 a%b2;wQB3HRv*:E>)ӄu.kIB#K5~Υp5h(5䕐}35O-֙vS{N*Nwڼܩd1QzJe5m:{]+t U&k0eD(3 s MWj#ēC},Vcs=:N;Ÿ,<ߘ_?|Z8ǎ3ףy&Cٴ(x~E?)6#kvsH{2 hPLN ă##SufHޕ`9V1=aJݫ8N il "LUjNGSᅚM^8եyYt>ı5XϟOx:t42jr0eJ1rC}ʶu Tؿ' =>JǙSzh&~-Cۈ'L !yEL)5 FR(aQ"b)(}5-[a`9V2_kRfQ^\*o}iEX懍qW`%n;_[%;F'O5_a<>S/wv( +ɺΔS{jQ,SiTj;^X!c=S 6fp:| EȮ lƱ^85ti%#+{{r`%Ώϗn۷?7XH'P(O fb } ܓTDEsV83n_ppOO;v!&+Tl:%`Rfiinҫ${Zli<մI5FU0CqX(<߮7~ܪtlϐaKS}wMY)\e ujMxI h{EUq*{̏;Aם;@g4م*@k.Ē gDEE˦g9:ðv_1J +.g$FW>Sh4̻ODl;zHk"J6n+ܯUK>MvnBzt'6=7lM7H>`1F[i//)P!}O̕#vlR'yy-L.mS]oa&jAm1)ά7ήby-pIsޯulySݦ @>Aӳ/M쟃t}oK_h-p9Wt3"wP=궵U>HOcoAXM>CIڊJ:f{d9-Oy{[+WﺈzQџ!t[8!Yk i>0N92tGiso*3IDY>CMzˈ,tP)FϫqD7ʍkv}{-M7ӼGvw+Y}@e1[kCJ쯗 qb G/_Κ`z޿(=#Ǯ2E';g4h۾B׍e {E\_7uJk݈?RF(>8xkي\Dž_XAyá$k{iu \9)eZ@)yj`8c,EE3CX1FR*|Ie8,=nㆾH.6"[{a `~] w(E70 ܃Rn˳'l/2AP[0YvkO^nެuN:6fUuS9-quUU+&`^&k'뭜_*nף8/ݷwwb-6/9{_06Es9zW.JaX,I_!4HX:ExNu~$8G2h TUYTuɶ?e|ln -y9L~Z6:\園׾CI$SxRWM~KUbQٚqz:/&0n9nN4R&Hzn. 9Oս`xϖ-<4~1ϒXNOdkIQOo"c. MSO6ZlTd?WDkjJIar=OggS C4&ܯ 6- kl枨߽5-5tGV"l0E"=bz&2[ODH<+S%Pn^ACDNicyQ[/M[J\Bhk׮1eJx>Ytԇ˭è]9 1uF)Z3 Zйy]vht&s,#ϫBkB=IVXJ~Z+dT󄌎Y3z224_0k,)75ţU!d>Vū]rY[@Ђ+UU3/*JR茶?l}Ӟ]" 0ˮ/NR'UuΩVPə`T\"H*E:P'h=*ɤrGJ*S;C0uA(U 锢Q:`,ԟ"!KTcb;lۇ%#aY#'OX'~Thą$RI (N c e8&0 @*B7ͽ٩!Xjne{/.lRZf?-E~m鯊EvXەzNƙmWȢJ)mr[a߻~nm5{qA:i; S~G ?}LzԊŨ;/nVGnW~ߝ\BDzپOonI/FWRDE=r K/z|g_鶱zAvp$Q`VhH=sC}GkVv7\r^IDةdߘ9B0}:|kUbH&w\=\KN~%iȽx?2i\PZ+1W8S˥N{p? wGo[eg`~ε3Zr8`wSo`Aw_}~etP#u-?m}WCW|+:CRݥRi,幅j,hC͛yN UG:Uh8 #Dq~r߻ ]f|}ZAͧ5eg⤍) yWl:12~e/?aӋ% &d26{1gѲ(d-&*~l(8,ȐDP3x]^ފSzP箝,+eGFk,WMyaV$5)T 5ԕϬ1 PҍA:Cm:W'Ix)\kl{(EwTWBWgNꞱC]yH^[Wvtע;WoE#*8z⻒!*$]\nGjH̄BMj ߲{U kt s֤;[Gz5ce NpԜSGsyj\Hj7sLthO?kظz+Js ton<TYtr$5BDAn#K9!J,{Wi̵,uaek#w%]͵= uյxy=+lAw_.Ĵ-VupᷛVln7 tNw͜`,od"k,Z?\-^ܢזkFp]բ: cIǔT9|]ŽyJE'$? BG_.ZY/,ˮ)zWckla>1;y[#vtCqS2ba%u!g+LF0,\a{ OM?WqGVCmJ,f;8K<ũ6ö0WGGAl묜.u> g=_4˿A3$O=5VCW.ے!k?TgB:-B6%[Ï֐WW? ؚXL\_.E-斥?K|p^6{ڬ@,jXf[{G&fYRUI=:I~|Z_$Y_S K63]Rkլm ЪH%?J{9Nƹ$rTo U.־DQڒ ~5d82)rG#r*rVI>E$Q%zc]{:DͽxԆ#sq91yhu2>Πю:t4 }e/94đIB;4]%W@zF7TP"59箄4Y*pdO*=!$|":d~ PG#Dd®u.Z"p[%>u*uR[J:_1yDmZ:W'G$GWfATnSiW5E}SJNLI`БdBg^߫; R=@2=<;尉>Ýrzn!=ٵ[#@FH$'!m|w匟oYRx gۮNnT[juX z_'SiZ>Uk\l$Z#Q*^҃K?5 WaT") N+>#GIEkG ]uPvKE++εSBFIۤ WrWx|z-:"=7fgxXɜ:G">f ;wo}+Q#De+=CSN=+aP? {bx0>:TrȐ}%IBNJ%6vF/*>\ھ{{O t9u4.~SE[1 KO;xM-_|ȅSGQf7k}-ך_nۍr:ua{/{;sm` TBv.T*o%j/]e2h$Ũ|#\AwG0 }P(/IơT)mwga ޺azEk*<;i؟8ςSv1NNĺ?y/\~x| "rw/FX9{VvKCߖk~!lZq2ĚQ^H${!%_Po›D7fɦ󳌓%ѫoŏ(![Q,e5]||^r~l?+jO.m;Ue!X# 5۪}z ) fg{#Z501?uu]F]ЂawFUŋ~VW~ߨkO|!4L1:&7wlkTrҬWk)QTg?$jYb vTg$]RJk;k״HͼDP~"jE* S_s>k䞝: ivw8cT"'.jB8g=>Wěe{qT鸦*GxgtKmSS#jwpEcF*)u/*Ǜ=w _3JZile*ة5Ak!EAD:"wN45S<\¯_&k2gSP.ݞh&^@G$5>DN%/«s;JFȚE8Ss&8Yp~ !ڑ3Y(&$pLr/zrg.9CNnq)~@< /BIi^۶+v޻gLp^߻lOW7CS#yinl_yߺ)Uw_LmLuS+vA=k9ԍ8]$γwU,0؄鼦0;TҲ%ooN`']8֦\P>vYh:>UMV`6_56X7Dr_1ǓᇢU!WT9=+OTC"Q!mPKRS8@&9k*n|Rzįgz?rL*FCY's^GheseUvc\qE*z&%C-'}߇E#ۑݜACio?LOS../ֻpq%lʌ(iUTtM7Spʗjt0{dK3=6m$kka]O>4 WeN jLLj9cKv Bs:%Y0ZVJ_U[l\Wl:aZaƧ7i?꾮aϖ )o'M_$ȶjh>쓥]'pDmˊݸwyCbz̊j  2Fvcʗ],nma{Q/S/_,dn~w>! [:|rsʑʔi'IQPR;ՉPnk]8h龞.]WNV*oPp.ѩY錢TY'Gh/Qh] /Eג p~!gR&ָ+>ET%3Zա#4%4[+8B*{*]?KP:#kwPP8FxvA1 =A:*"&NI_#b6Q}FN5F#]2nHh$R8k1NmֹN44Qڃ-Ue =_w-Ds)9}LI?$PWNGRt6ozjusӭ'k0/2Y*vMtQpEk8jg}5;O`fsy^89an@W73`:1vt̜kAw&ͰK㛼ڳ{:ehr ޏ|L6л?KN륷7k-f` G]%'s'_5oa7K4W.&W2_f^Sŀs&G 5M=VfQx~S j4I;L&P~ fnߺ}򀗸8ޥ oġ{P8rO66Qκ]Nyko;jSQKK}X &|apqtڛH_:n?{:q2uj5̓gV>/5B?~;yPWu煜j]? 9fO:v6FΗZN[V|#GQ&<~rDuiHVRֹuv_=˙MAROUlIz+$Î=4}k,ޘ⨿25z[ZbƏ.~G1X* ^l5qY]qj 4`@~jhКdNUBBtRԢ~hnv̤SEbTU:]UBim)i iZs[Z#K/h탖c=S/9fϣ qNT=TW%{7R/[eFR3tZ;M&Z]Z_oLԒO=snK}G^P~`&+ 2MIDA^,F@v/j*H#Ezϰ.SdEYEu$,9RTX_K:h`|yUhqy6wUL^^9zꙎ3"E*O{L?+@NH`'E@JBP!sb'E@ݙ2~ BH)BjbV!kvIOM2 AN3z?ЌhR$ pv ۶>9Vwi~ڊFImXitv?ąMm~X& V^ѺS'*-5an^MY';` eVA0OF ϫj;8YGcri߇M*AWU4lzs#JU5:~XVzjXg2F W뫾t^Bbܽ6Q͵ƆV̥_-7].GzƯw/~LF:2FPw%s3c@P3C~納jֈ^3!npaL*V6p!,A/yidP6 0Fm~}Y$o٧D^,Wk}`>OId0BftRUsu+hkJ\ޞ@G%r{w]';Y#[Cj1/_hMcG2h53#;ty4t1弾)S6Í1n[NT:w_7w"B=)L'їU? aIsZI.nsDjҺ vu؏f?-0"o,[Gwzpǟߩ{'i1<ɨjf/m+]!kvRU YW-I.ܺi\y̅wǻ6䗝I(DWl6{<I%^8a c!t]9yW:٢"Eɛ$$z5sעc,E T.Bl}kCPԩv8e!WRʜDqˠ_>X?V]+lEԦUZUS)<Y#q$KB1 ˩TG٭NdȠ$sMϛP!ב+ڵœ9PuȁbD: z B][Rk6s81J=D"(&5@x\=R©:=NHQ'R%{~tUP1s$F]3Tv(2Q8IΡt6RJL'k*E$ TfLdeTDQ8 %"~'B:'U CpBfvEkϻS*dH{.!uCgc^ÄU~ WN(C *$ f~[w^0ݻt(bw=k\7n['+!KɅ*=hw <RJWoVyozői1^L^&B^ZQcO D/Z|LwB,?XQTEz|ÞK<0CưP@H|N˙8EJ:.t8jX[EJDnק8>fm!bN%/(.TΙ;X[UhIÙ{UILd{1zm8OM- sì$&n#;:Fru̶<, JX/scڜlS =a+ v72 akyt{d_/$$o1e3V]yeW-)dmr-p?[g ͭ-K,9)|ǹS6 :!OOo~FiK׾|Y󸎶c ^6ڞFX4`=B0V;GB6)~+d#U m5r=N.%KdBٱj^5_w!5BK~еJOGQC0Ǯu~뮆h\*{Îs$J?"GDcH$B>=gud-u*/JH;Qڻ*u{Bj0#dp,4C?uѯW pBTxVIs:hku@܈&uq'B$"U?e6Yx]dBBeSUpTt/b"J;kKT:ʧG_~v{!NuJdIHOQB9 I!1G*M"J|`lAɹ4GC#]9 Pl\qnj.$24ճjL $)<Ȗ{gyFԄRCw7 ]u)m 4ɑ]MGYG~.3OBLU._Zȋ_-r{{Go/ȩ+:TP069|EeNC}Qx?_iq`kkrڃH4(bo<87iڌ Owb>8)dzNݟ͍nCމΫt5 ?P5,>&ɴ1?nR ;>rhѝzAKpK;bJ}shv#N~^~cF7?kQFgy7vw'ü)5T=L OEl,'KM{K|i*IH]vQr-zbrX 6Q g Za :1~Cp!_)KIHij 5yrSԤO3T,p9Ӓu/̋TEʵcutK#zbXsjf~vɸnt&RZVG*{g##ez|j]H[2<[;tz{6@%* XfepJRլfRNF՜YD#EKm1c>OK!f[gv|tW2CLϒ՘ʬݑ8^8k~t% ek>y8^594kӑE󍤤D(\5ZJQXpv2*,jG(Zڡ<+IO!Cd̵_3BG3N삻Wueg^^mD**Q#kݯZΨD]a&j- !t\{hB^cxc =Gs *U ^~+g2w:}M27R; ݻI4aTj zD$2:tCˈiY}G)+|œ1`vj;TIWzG_SҌ֬Q5p3SJ.28* _$(9*Ƭzz POq1'ιę"3S?k=%>> oZX4d1^׾n_lPTw$h4BDH>Q7iJi=Q]Jo1+ub&yVp]@IiK+erW~ԭ6{0uz,Tېqyf&긿w8V8zDF>3DH~^^y جsYr?ut$fSwC3Υȉ^R=FϾ7YNڷκ8OQGzH<6g$r8D=^ 8aIW3\BEWѰῇ1qd.P7SnZFr3,nO N3n6wecI:i&ո뎬iY 5[уҋϜ Cq3=xzo!v ݇}L+fBѵ; -o9q_* vri_lދtrZQ}7Lp {/"ŠQ=UrF"[J>|XKx wl6]k}ϟ-_p9aҤl+oAa]K9mTC_7fYY#fVe`S:A]K%QN.x>d5}J8C]jSH4AWCl gRE2Df:w+爞:J-I d#j$4CISJVz=@bN^=īEjEw^WYz%"uDZ8$/}@~ksשcp:juER59pPךQ5 x"G;2-fD354r5QN={2UTkP5i7֒b"nN/s}C̯ɖQ#q Z9@U@_S%bjBY^_]7Nh]S*2IuP(f;KwO أRvbӻ~[jj AکZ!kIFuu*j\ADtYR=ũ5ϮZ%E#4p>4ĄCEEMjD5g9htLD$I6 > )#JAU"`ѣ6g|WQ`rnpNA<˹_ha#^Xc{J}Nv[B#>48&Cv]Fto󝗏H(ޣKY5WΊTn *CcPgS}jbLȓ),rJJj=QzZ8cruZITOԀ[ 2Qd. _oFqZyVmUŭ#aN j&} 垠gp*=w7Yav׺7 5s~s摮Ήs; *혰=tӓ_)f<_3솘=GSsS.7ד_ 2_w|y.&|?9O!?yӾwϧߪ@Y~fd|D ^'`ߒU5'Wb\ɃLaR1 ks*^O$xF{'Ey9#i's&bijl Wó^c呴 ~ij!(0B&:e:nr 2ꇪ& 1mV(U4Sc&&v`k ~ Jϓ(V&^6'٬hl9˽r-fRtF;aGX RKtDHM!YO'nkn,_F9 jKG. ^_*+/k|:E/Q>6}z ._;= V\ pʭjG3ihYugkD3N:Pf;E%tԙ[hLL~ f݂Z%N0=ʣ޸GK=kȤ^ѩGwuI_BtXѢ 3 =^uyf톐K@p_k{5J爲9֌}GfUjF2tsѨE-L2/6#j9$488MgjT$92gٝ5~85"ВN7*E^۳`ٽYi@u9D@^e9_ W!4vBV4hD/pce<ï"E"q{" DAkՉ94"gp?I?BIh%;SANj*@Sszf?Q8+A792k-2c汇ig/rS 55#@3Ӏoo #j A37yraфPn{TU}ǭYx}3=1K3 rĴ6ԯ鿱Zk'?["ud7;c?󯹽>٭Dxh\n yTXf?Bp3p̶}װrQs̴{]Rj'W}^Jw"Uv-\%Xo`!M-?:g2%ǂGX!ezi!71 ֑ ;Zt~^$fDf=y,ۯNqz(~׽F G 2{a`py8z{5 oL`nԕuZWrhUL;~o[Syz/C ))GЋ.Wz\cAO7 >iqyڎXZyfxK~"bh_/1KV5uQi?3~}fr- ᾽Ƈ[Yz\Ga;ZMzqLx a>[7uZ.߬#CnB>gHrIf\2O7RI8e:ql/oca=PAuQU ;:iu_XeSEU{Og8}ĕkdiD *9@z î< K "U#qq:*M?7j0B`Y.}ܖ|n8YlT{R];P\Ww{pAۗMi8?c } 9I8T]:.5 D%L w:>R-h+uOcm5SS!Q9½/,Cge֏M;\w{= I޴t~?27Ǘq3*aN%eJ|KDRvHpj)b>Vܹ Dy32w:u&-uB ;#c.S_=߀s[F`]-b7%ꌙ |;6޵QxTRv5k*l+b'|-hD^v6륏Yab؇`.+{Zɓ'ΰ4Ƿ8&y.=@gX*-E2Lǥx6g 6I~֟/?%A3#먔 "=kF0 &߁\ $6wZ'8_-h9Fk k<*`>){ۗh'Wc-\⾔rpaՌw}?c4jS!L4i^^s 1+C@TQ>Y6я8րHڙ3<&j]ʜuZCsc#Dp#~Hyxi&k櫃9KՉɪ.;Ԭ{"Vf$5"Q7\RC$[*Rc͊Z*Noc?B?;`&OmvuMn+l6{6GT+SWdTQ e/ gaޒCР^H&:J5g j_d<+&Ew++75惦ʁs4ޒ=$Z[sA_.y􂡝 RT%Vϙ%"{UoD{Hm$OSqUR+R8(J:t()}*uR\(GdEskm.=wN7L)4?螅4Ya{F=^km=Ah.w.3VSjU~N9Attݕ%I>9Vt>ajzbR#&q0(H:4:tS~T;T֪5_Cyd4;vQ#N1ph5*5ʞԦEZhan|ҾYlj]dM- 3}L~dR< dPÉ@A keAzn;ZSg냙XF>oD!Źzsrtl'0 E3C ]Wi Gn1͒1ter\=^hQsl+X7[{Y;K:ξQd%yiG~Oz=t auG4_rO9`_?2+fk%ods{^#[VFج= E299J4wEUa.Z^Ҁ3-͗\_j(+펮φlحg/Ip~Mݲ0{;G\AXv-*jn:)ҫ77U zTHmɉ"bqupS +ng^1Dh\'AЮ(UՏqq. Y'?'dak>'=g{̯k0Y\+}''@O=ć.׾rSnHP+.Z~H #}+ӂxʫD NkTFkmACz6~ \ȲZI7&ۊY3 )鮮Ld4ơ*_NG:l^R;{AYޒb ɻ\z7q&z)(f.]x}}=҉ J{wY-6s~/5+a]ԩ}:WvP4@7>*R53K)|k d_i~ݨP"?j~٪UuZ3`YrKGfTQV+z0yh, Cd=f$cPp莦N{KoޢWgbm{Bv/uц~frű~ﰘȜqP O3֘󤢡 sL8|ʡTI]TT-꒺c>T_~=7U*韴:J$*u3Jˎ,&H]}oT (@NIzd`UYgWJ³%%>VG:߃)F bپpԃJꐙn7gp3 :P2|O窇P5sLըַWKm^UoI#}"(7 dLǞ(frDnv*iw1~@J.xp:/vZ,B)AվN}?;yB-;6.7̖^z3!;V:˱'.prr;ݻٺNd*6P{^A:^w{Lpa4;Pu;)8 Иba5uujQ$:R'{^0W^jmA&=kLߍI'OmM8 Rs\-2dkO'l6G4Tz伊wV=k2❊jfZgRqxYzzOUBk08s|m +}yr=ob.e#%&0y|;st~VPWy'(2&Naޮᇭ%[o%F4\ HBျb㝓 9~qOB\RţϨ4.L|Q9MF2N!ooMfUdJgK^G$:9[O:eKSqm W^LuU˜d,|e{Aw#zywOggS C4&r5;f]V7xSfh'h%DO~G^/j_IU $+D\k/KYɉB\Ѥv\ gU< 1?$pf8QGk*T]\d{&JGֹV!)Ϝ]%s%eHE9C3SUp{" Nw*35tKgYw qz*ҵfUjFļDI"@.B'EZN<'S3Gq80k]'"oB6M=2Y[D{z.Gט5áH Dq&9wJk9{ HPq{v!#"^HUy>H< d'}e6*b%!\j&ruv*vW ى#T$A("m MWe pUq5(i%9zx!}JοCxOˣN_Nmqf{/O[RKO\ϾWr;;}1Ďg}PLn+ɇw2r=_o(Uնoa|;S9A0Ksr~%"P8fu}3Al߬_W=ϐ˸9r:Qw ݉%{>FsAiѫw m9%k'rxh2jucR{"K[p e4I n=r[ݦMR~)OYYZ1+u R^ t?6~uġkePٺVNuȇzfZqZjQ4q~XQR UѫIA5ʤ.G8AmZ𯮯(R/HD]NQC_P pp>L8TѺ+Y$_ɤ5f$Bk 1/]^ ٻ5+![[?@::fWOm:X:sr*@"`5F>t1K6: vghot V]R5VhOJ:U*r*JBh&{_J:SN5D+dG_5b:kh6^L0d-PhJH"g1E++Nu08˟y|\נ3)SVz Ԭ)r*jKŒH1s 6Ԡ p`Sw"T Αa2: Ь) Fjִg'EԬk{ [;^Ғ[~ _nԗn&fz]᷹&>Kor^9;#1DYwz_mYaZ8\u{\~: sƢ:N. (f;Et@E7-u0\sNj9OrxղzRRo^ثB޷SDPXPܵ}-E?h*1OnryZӊqP 6E9"Hknr~aW]lίG;"KAt(<bavv~\\~+dbʞ$}\ۤW޹.|;GS"}XgsqޚU@&EhiM@fzw><S#lfWi~Q po#;H'|ky|7^:/Ɵ3[!zzԆpј`]-@XuZ[S'¼P=3,CZDs{+;802 ʞ>~(%Qw⸆;%xzzQ|+'kϻm~n9u#濕0Y?g;mafqy3_o˃]cG|tY'߮g|i['K#ǛWЧg`G zv֭{|Qլfn-3C#Ĭ()hIڙ2kY.PC[E#5]\DWmDVՖ]a{ry[^O_iz!STu-pw=ʾ7%5[ٻvaStaD^xqabkϋ.YOד]jS8gwk7em[`&ٿ%Y ޳&ᷛ l4^ *ٯU¥^#P~Fv$ EYc3JcMR=>FU 9~'KIo~bhP_)Gd+Ǟ9Řb+XMyJ,KW+MZj b"ԜozkU#cT<7 ݭ|{1YSsf%:!r룷kk(X.w@\Il'?m.~q>pˏ>mܒ~J޴ѡ`ΦLm~M} {Se>?,=}?^o'vO.4^5dj+2 \5ۆ=l7;Q١b|1XӔ  鹙$eߺZ5VWtziV%_U[bzO'vBԳ~q^KQU{`0EB3#55ˊ:kUhj2ONCˋwsՐ=CЉc@">zekkǥc9sm n2f:N)|<ѳO\@MWզF?EPC w8KqHyk.~wpAr7$ҋ:=}u4;*|0#FeU}s&lvqmku?סɢ{Y7͕E܎glT|{[]qCdZ8~=}Ȳ;ѝ1MZn ?#^W`ړU;P};'iyzLRYEמ 讇w}`X6R/-$*WY&ntSaYݐ|v:OČwY(vJvj2,|xR&O3 /vWYa uׂCn*Fh߄ix|x+M˙g & ~>?}:$I+O CȢ{ +D_#UՈGy#wۿ[4'%dƿOpj㪩 hN읲DV衚֯&oF_NqCnrcniר)e_4sOCUS#QVkl⃐Gb3@kr+5S8(hU]uDATry_%1hW[#~V&+g,)1=ʆ)n[\:fu)z~Uw7g[q{`I{cOggS C4&*AS>5ۃ֞ &CLQ3ӫH` BE:G)2awk G@ 4y |t6Qz62W›꼄6]fZj8Z_+4KqoHɒ{R;ZqkKDžTirFK .ݵ AQ_\FМS)R '̕i;Mך; 4&Lc92ujc)T~++{IK$r힤;E%pn_ѡZΑ_ّ̄EWHٜ 34FdQ3jV&Z>_"BNj~Lj6GYY:pޜ3@fKkNEdORU,ևpwFˍ{:Qk*E2/d$+P8JUbʷ6:usJJAKG%[Zu qArs%̜P5*4InљҷIʱQ jCs7E&zF|\Ja G)`emKϭ\fcW74{#Jy~uS>'6q%MߞGOu.Oq yWgj(VWl_opO6VoGjT/n=r^ܪ {[汘E ,Jw!PLIe#skŔvn`hZ蝏a%Bt *%jpxr{ j6b*27qv3莘CZf .nNf56/CC?&֦`1/i+[&B]*eM#q]s7Sr%*nwvtaZ}ɀ?߄'iu+ .` >eXn5O0!~_ڄ1hw/z7g*G߬Ȱ'e驿;1T7ƎnGS zWڛ/爋ՐT@3ߓR6)嵤ߝ0"L=y?`O|,g*\Sƨs=?:V!# p80!eUm m6z>G7Lxkv~ Rvhmc" 7IH.RUNHjg73?ьmF~;J[gq U KIE\^5;:U1kPq0o4`dx[7K~uo2(R*{=cEtR+ʑ%Z^(E\2ǚ)U JST(wS3>\jQ2)sW1LuKT+Rgxwj?Z[1UNn!!cZ4C I:z^`=@ص 0D0EZ*s}}HGxAsf\Coq>O@4RXXޡz:j;Up]iN <]X1ErH¬/Mf="ywvO')ZgLaKXtN'gE$k1iV2>:TqTzu# r$͜řW h3ȋЏ'u!,=j0ujdhAME@f՘Q؃: [O?}]ϩYl 9hH2ML-C*0l(Av!^'H z}OUeiHh]5< 93a\HsKъ7pw|2g݀/]`I9kY^FKR1U_p/^MO)u0|RnCoˑ3p!qkk}as}n:ڂ9Wm4Qhxv`HW1~_r0IH?oAYU06Lr?,o5 ;ͫŮj pִNz-OZ!-+UYF}Q6%~ yMoJJdAmsv/:V[L&pInj?Nكgc0^u;{ߧ][ݽ8dW:(}IK`%O1Xױn'f=:=UXB2`~@_n֫p5_ X>o/Wz!XU[ >]5xukzLf0bI ˇ-Zwkvd2ŕGJ Gݱ{ȽjjV>)g!%ڳ")?#{C 9}uf:ui2iΙyR3#H5d}2D}y05N2'Q4s!_N5ufD1K'w*OStvYB ΋#C{/$Y밢:)uԲ{>i? ۧg<2UN/&̧AsESa3zjwNh{!Bm*P_Ճ m*͔98SBqP#aPr*G5rJy8}TcNh"qĆ D,} =Iь)d+iO `\> Jr|(nK׻BFCæA9v=P92'lfY0p=($i͓-S$?zVuWk珇Ԋ1l˪jT?̟J,*ٜ<AcTN-Eݞ"H}tqN ު7?!9_8_]KKeIgq=tl1nA)^d| ^"nzI ؽ3iOס;w[}IND+ r3Ӊ:+zv]"=&{ vickO9X/XF,VaTN2(L?8T_5 A|'4}-G.:ϧd~g^kQT"sC>l^I%qcAK&:;z^{0P%ְu[]:L(+*7I?h||e:4+܌%&q÷CJb"ͧSTVvvcFS7~aky4xؼ/V~:4ϣJu<!/$Zz{׭dvZ\s;tbXLSiʒzO,'ɧNv֬r 2,[K!s)-ig:>{L\}`#~$c̪5٥=J`Κ2JNyļ5k'peH45ddQ|KA> voZ:<:ȮS@|f׮Wt=ԼA>+,-C)NtTȂ8˺W=>מRRkV5s%,|ҁ(^1/ٻVZ_(dRITięj&~:'7IgݔMϦ {ov#]3%r5$1QT#5bQ[Qj45!祻STtl>$Ȣ5 (b~yRYP/SѝL/-7wL]I,Bi=O(w">S>i_E,(e"@9 oΖ5Kkۥ\hYdp|!4OQrfZUAUR7}ѹS"NBԑpί~Kٍ.W'sb*ͻ|oOe ݝ(]%]ie"J})A@Mhsh-9hug U7aW7Aw̓ (,N6DkF k_o̾//m5Yean|Z]\ayt$7#][)OqA嬗|V? ˨7e2sKaW~ t^ÏRmLTcudq{!}?7]8{m&Xf9о{zEZq %sFA2pyuR}XPsRbQ;.=1ml6('fO*E]?bVj3-֭wHVgPc0:=u.߹?[(fmgl "^θd/W#qkL }m:h{qR|εPϛr_\EzFDub)FCqo%HV]`|GLky__rwk%0F_8]+zp$Ay6.}yA'5eZa63映kWHZ[Hl=Z7rB|{Wǫ1;}h3?׶3 B{tRk9 Ӂ+dOggS C4&>5;:;AX@ liu o$ dCF|32F I!{wƧF΂YGG]:'t@x9N]j.2w̻BO9sF|2ܑ}ԭǗqĞFS4R BYGwTqh +J31ug}\sVf)HaqƱbQ^ܘ1Ss.sGU3D~gqEnyY?nD- ZU1wZvg= = t*t6Q&(NZkpvT{ LU*hkVRYLy!_E9 !j^-Pš>ݵOf怩$ԏtMu&:i-Uϝ)*9 @Vw*M5#$h|t1#GN'Ш!A΢Hreɭ2D,l3:#Qɯ>7F`|@pJKl2!&ah{CDS>OrA `g6G(w&,sVilB/39籥*++k/.͙ttO͔)&>#BWǫM|ˣe?C\i֠#>m^яṳnB?W_dU?>wgY}{]mYoxXIMT:RMr\BE{&=\VWXØDO&95eG`RV_`?Wg0  UVej4F- (c|wɠ٩>cbUܛ&§<=`1"U~[. m7Y^L^][t/BYu\ J-ɦCq&wEbYهcu@|{6׳bMtrlןrG5R>)]=X^Ah$saqŷmVEqZgVn ^5۪NLiBXc*GGudA}J7#qI8Ac*sdK$jwjtdH(FAO@B"PfJNvp;DkkRxsNWܞ qՓYHohZuE*CUשr4^'fZ[$W2t2G|2{W)hI[UCdd=8;i}t1DWGsYSr4dv c`%͠LUhgsGS:ا_$PK&KG*5a *JR5(G˲}y:WOU+NhL7@h֑w|FWwbD+c85JKI'3*!?FNtǗPMrԩiî1cƿ "PwE΀.![$n+1y< 3![~=ٷ` 9$ GKۍ(ƞ]rK{ߎ. z;^*KuZ2CK=®0«?p֘g(f_BC7LޤWٍ$>f ܅O |,O)aEeD0sL?/1Mn!|DruNv&*-M?|q_?~gseq2ݤbN Ǚ%zh-TK޾kG5D$i1nאr֌%᠟>;)Ys~8=Qf_T30y< $AVk?Oz|HtU?Y\e eO9٥i4QFGN^%.ry5G.ʓ}q.ʲu8nbk=E3[7k]| Ĉaϝ!~5\eJoF4`a AG֯TRK9WQUdMmsRgg ϩ[hV.~ b kVi1-nTwT*CP)2ykw3qktߏ9fJfmڭe_٩#BUrN{ARk@ΐ5d˛jnyGsHˉKYOθӻpJh PjBD٢DPCi()+1LY9.1f4 B$=]ݵ+H'j&Ku"$Z5J$8Pk?ȓaICI ]E@Wmij*Y+󜋡8M=zzj\JNA|"`!@jtA\iCH4DuH_.#&8--\!lG٘L|J 5dH3Hgh뷀kIiJ6}87 n>^AKbTq'y =èd6 \ǐ{2ގTIUyR&U2ܗcV fخh 筻j^q<^zo-o~wPO"QJٽ:S\ L,0(Z^|3RjpGL#^3=ẳ1Lh(ֶb.T[61PvmDXo \* r^e%3&{䐆"?ic~Buh㸐-gtom_hēsu}FngguTA$x!Qoi/r' ˫|_y}NqhpΑ+1թ,n" 5jm]EOSL'*~ii&m~ftRDgR~[KXpׄbqᖌ|^W'F?U,Ǜ:8l=ϻXdq?ZХTqJ ٟbL_WgxP|uDi9@b]Q:^o77 ynrf٬? ~?cj۱c5(9\5iЁ|AծRhzdwMZ8 uf)~&8 "ܟ^"єS$XT;ˣ·÷auYę I@iYֆU?3%D8*"BHsnH%"-MB"CC~M{d}l'+s)C?4&?/guKک]kc""in:WH81!҇h|SGƊSv̐@wU2zvf="4;'A!FDDJ&gE㐣D-fX ziI,KՉ鹃+lU'`zmlg?5V5 F"tP}(;@Y9Bt%dM>hDzݱ+f hD8dg23]]>.zlAȱ +Nz !,Mۓ~/) ^YP#T67I_@TĿ;ח!BRLuLåjtR ^N|&X\E8O9-ϣQq}ZX=66=Rl»W'Hk OrZ<)݋z?gzltȴ!Թ+2tBl$Q-5^^WI@j1(+P[Q7{vl_\[@0+/+Nd^&H->a~?}|UDϬ<ǣIϚOǏ]2f?T|,kbrvv)~Ά/ lFԌm.ytzsG5=9EQ.== |n4߲s;_ X= |MjgzT彼? oI5wiK.jˆu'ms:}T or/x;6V!vqf}ؐ(P/@OggS C4&-S5(T#WS_u)ڬe:*׺:?|IRchA[+wGS*d;%v0cB? |dPHIu'S8"t^><5Ի'hfFyi>$`x6[5gaH%gr jb/_!|` Œ\H]!R1y|a۞ڙg?v\TxIM/  g2wI[5̔4N}XGAyٮ RJQ{xYewT,ݛO=JA㸙dV$?Z%8e1>u~;:)̻2OঙYj4zY5?k/l@J<,,ǧcEP5kE'7qks c~5}2_Ki}rcP/Hg>xF5W 킕{G*L'?%O>bOš8;+=O3}EEܮIK,e9z{ 73Lwxڕï!C?%pgl1T aҥ*.g=u&]>`k;tF:8` cۮQӟBѓL?Pmv8ƞR+X7XνuU./HfYrzZya ?˶F]<[eVM@SѸ~&z'Ujz6ϭ9~q(Vd? $V$ZK!j#k=ea 8]2?m&LĊ6OpdcuC̞KLl=t]/*|>5; `].h8Tto3OX hBGNZ3) X/X[DJ4x^# |_JDʙh]knv3-Tn|#{䜜**LE^@ϯmW׵fu8ԑaj]~hA٬TBH6MNZwj 4dR$Z!54Q<%UԵERoDW#RiWMƍd~C;tR rOLF]k,TҽpP5P>*?9tm*H}hkBֹ;Թɹ\OΚK촸N$+S3jtR!zObV͞΅[dQ$IrBw;:9RJP"#>:/rģwΊ,P9 >2o?/wsdr?]@i$&5ۥY$1eAkv oDնa"P!!?jpA=JhW|'{J7FDj~kF<ȚWr0HOU)֘⹃DjQXC5w6:wJwܨvG:WB*EHPV.F1zJ@XRqvz!R#Z9~ Yqh8E t\Zʛfyחv9r!*TÑ2IF79׋NO nFQ@\_ޤ2wqwj785`s#_td]SjҲG3H}56|ECO+:Uq; ɮd RIcv҈409A ;:ܳ} _3FU*;ٍ+t+SӉY4USCSmH{תXN[(n(ݏKOg'|BN&3[ [~Apo @ېM r+k> pŎ id=n#ln7%o>g Q)713kjEXSn(HB N=dsJQY:DHZ]߭d_Jm1/)-8 4TR?CD7&V[j}kI&rݘ\N#\X%依.b.3dR"ݻmě~Mba9T;lPٻڛ~<8X~]+$DӝjxHh/b%;5$i,5[ͷfKj0لO/ 耧F]fs5:Vr90R,xG%_it^(+NʧVE&2obl`i /$~+{QIE@fbVO==mv̳Xڶ٧8F E+oE_biKOgβ||[1ScqtH+xL4I[X/^U+ܒؚ1Ѱ455j5\ eIS#lqb0Kp<$6_$b{BRStܽ@vrKʲסK\/q䭻iN3#c>5r4'oB9M2O1\ث]Y7beա"IKf֜٧+'ӌL QoL\%zXT qJkҤ:dzQ"BHFQk+-]~>;5kWzʔUNTZ95Oj.TUbddTٛazl9>ib=_'V戤]kQRGHc&9nHmd&3i5D 2DՀ QwTdcgm$QmCL_1%6'LⷠSNM]oo K~4 sA`Db'`6t|+>yqղ/F&%,u^l7( /-pn-Z>&gʸקUJzﻋrfoXߘ\|~8,_|NcSv#1:cK}W"lqMc7}Yn4?U)g0ʋM2䤘X+ߎ%_hpI'T%+nihd޽ ik[{VK2'Ef+\8IqUCrC*m/hG_'PRF§Ȫ6 _Dثi?lܫr`BUkVCKMrD.yMSMB5pFRZ/|'E EԦ.U4ez*9* }(F܎avsI_plf`m쌔SQMa+OggS C4&0 4;2݂Pi[=A $` JNaz,ԔzdkspFcscDvYM5zR#rI^ROU*B#LFBp6+˳燑NU5SEuGY+ T$l ѕiGک'I:UΓGNa6<2D<^#ayfF,5g ?jٵeZeW)Q묵kmN3Y_$3q0&sfKJݵ5ZYdtN8j"){N*-SQIU'fķDKCnW:u?AR8j@rmcY'.eR%6y2s^@Cijd'o Bcrb y?(~?uU4&5Oa88UGP8%C+4gdV.oFTpm 6)nB$PY"ԴƞM <& 3Y7CjhsIwߗr~ s4 l~J?l +:m+Ro&vÍkՠ`RK0mxo Gjttu>SMk X" *b\W]4qvRPaW D1K?Qso9kx\wyhjw/M0H̙! nΟ6-V3ud_w?]ii [C|_=;OzOMf;#sLzWH+oheRFosx:]+{kڼ&+&꼊ꪪswO[.z:- G, qxg=KBݳ#[y7,DVks'սbgu;WϿi2>x3ecAB(&r9ֶX^?8<- ~)HÊɎ٢ |<iCJGdp}k͡0H4aMݶM"cbwiy8mꥊ]qPiܲ3^~k>osJ^55K5i>%aaPpDG#NS ՖC5@Pj5ڵ浵=(y+UȘde̜h<(Sy@$]=LD|@Y* ;)z RKWJqM`̄D1AvpVǼr~GX}#_J,^rk752Q3&2I9)kЋZaߣ8Dy쯫Ssz3Ď5dN^KǓ 8@_5zH՗ d-P%C83T|N$G$*4..kQAۆ8+:0&-X&fG%q' †ރa>a~O%E#Qc[ͤ5F8O+Uf=x<R~PKG7 sn\fc.'5I_?D5B~kiy2=ت%^l9~}nዘ^Rܟbkdrl1+<)IpuiSL3)^PkYG²{'2*BuuY6Y^) FJgP⦶.R '#KQ?{/$6"!- u~Y: zk{1@HJOB_Q"C5@@ocWzk®p= N=oNFGTA-(p y#oOC,9Uj%\m?Wa> FqdrևZS>6zنo@0l˃qI9/>87O)Q1E6Dҧ)it\ԉMJ_=E}ح&4"?YH#kjF-PW 8ޛ_S-tbqʾ#b {ýˡ*-/};o Dаm\ģwȕ|4;^5۪5 P+>@&ڕ k_/gNu}Xd*d%{S@&}sYᭇtj3q~,ف2MYz,e-^K Aj P4U2娻vkq5O} FjUɹ*Nί}8QГ,I%7*{GQ'NNQ|sJvLz S%Y<˻z<ܨhTΥifB剨5Rr=R|(8c%zWuF+/3ݕHs/2S.hIq &uNocr=SA-$5k ڵДY ;Qs֨^dE#6 Riz [~;~|$0 XQgMx6\^ _c5 Q] =LZ# +-*fj0í +k^#9OGLљ~څ{[کh;EQ9zXjⰑ=筙1[FjT`{"⿮o5l^.~:x!qR-?ŜTiqi w x2JK^}/$V];[FPCFǓ0(h;y~Vm^PkΊA暹5Y>wHڮq5wrXI 9^>="Mr{={9r>#_ ǥ5 8GQIVS. ׆1ZqGe]g9ɤ 3V@~,n8̓Y=r!`t8r}mspS< ~mq-{"Y?WV0cłP$n9E#D}<>7/o+ǴTMXm07 < f|8%7]O 4Y#$6{>.٥K{V$=3jJw=T#e }gֹ௪ҩ k]W%Q% :'&2H;Ry?&248癎!Z`T֚=!ujU= Y G]+^YD!^ͬ@ W=K 5ȩ{V"jVmt%dɺzz^H]4R#ɃF[ΒP/cH=W)eSjze)·Q \k%]ȩ@Hfr?>jqH&DsCO i(q֪rԉKD- Jln!t[BLaj;!sZ2)G7e ;q}뻔QjVz'OB?UӋ̞$P2i;*WsDhrvut%Ǎ~ͤf;u{+ wU@cRXA]Im?y"AC|麲'Ni?!{8Ǒae?`3%wg =ˡvTBG~VIBdOXMwASzcL<=h]WL'yZw2kK?@/82U Pe~-9-k RU]lvǿ* ĕ1 s񒂊iF~s< &3 c*8ys4rS_.Wh6ƽ!J82Hy银q#o={gC, 1U7Dn=L5׮jJI{p Us8^{nTw;۔ W=2^#E7gpCѭ g?{QpYf$<^.>«wG%?j]3B:́`F.;?Ń>w+Y_e䡏0GKnUl XyYN9شҲwϫB>gm4Vng?&}eWPlX~OggS& C4&@ޖ4(%G4; LwT#I\OzUq-*rn}Dd|t8q0vxׅZ*!Gܤc"#5fqn:Ea|*o7{&F^L<=qʻzޜ5y Ε;Khvsk?ڋd8."Ⱦ::R 줆LIAW?"Y&NypZtSҽk 5Vzw#sF:j $F_`hT#Y*AҵЬ8MN{rǡk6Ut4JQN P)u} 9]G{HXũ?MAT":Ϛ DupD'IO(DXNųKP %qW$LTAE$f=Ao VsfWF'("HOw"`U1ϪIƹ]'\ho=Og㞏z]ojVcP ̾w?D}Btp#L6GO샦DEްҠ4oP_zq ԑM.|^4^'W_̍1gPYEPڶUsKF|3K}u6U*CۈQ.CW3_}X&7Mwl"V<:0'B[S{#~Vpné.;][{QEޟu=+wv7zhd݃f\R9tr9Ӧ].6V[kCzޭǫM_9ٝ3vGE)uTuS]gf*]kyZWPjj9ddصxJpjzDN*"G|%'VD iuC&$LOCgjsٽXѢ!vBj*kp2NR$e*]IDk;^jthYt4At~SՐD)riߩQVH z*CH:{b˃/fN.yET>Dy cW@ y%AtooS$'),v^ā)6NCI.^O649a\Ƹ{T%\t\ۺ&hs;o- 8`bg^]{XЁ&!-16af1_ J'C.C<=U}C$Y?.O$BZfT'OzoһU8϶ Er]*{h,rZ/<$Gpɠ;;fۥ˽E?剬zI"M yܿfu"ԯy<V.jan3Ny,3ixt}_16Nb|wfYx߅ƋeETU5ө QrfZչur;'?='|L1y, 5^ [AۈBo[͚}fJӺxœ?)!=꡽̝p:: ߾Ugo_S+Lˤ7lm;Ec:rnv[.>ǸnN5m; sebmWE6][bMf$nU<[RDs -&D}p֣dصe^? BCjjs >554qkDPAԣ4:EDR]: &Q>MQAQySW"%e-Zދ)Ϛ܊pZRfewh$'}zL녶ZuoBŭtݽO"!yjOu^?LGJH2FvQעɕ)꽉%D=WȘ =23 ɤJ2 YTo9v氛YOz#Fdi>\  CDbPD!Yq>HC_5y>ƸIvϞ-6j fh?Dcɋ>+h\ϛ,~FɃ9k=t`0<Ԟ7' ݻOB3>"wo."a \/39_jM;wEJ/ԵWk{wc&*'j]wvB䓥={s(5Gc:mySLs}sťer:_I;AFvs9J4/?7TsfhmRf=e2< i\n;Ѥ? yϷ#Cbƫ:NzPIYmE~bXoe׼}%nq/d&Eqjp/5Xr,ZToǝV>1|NhΟ i{Uv[m=jra^e+8ﭯ eO^2?L::gm :gfO}6_J/nޯ}W_Nt|1tj$}C\KHCl:.J_/ p5;0'g0h1\hv7_^ғT$ )d#mh3 \]3jS{#NqjDdh*! y'~W{ԩO^ٱzVC+_$Wոb]S2eY~$jwm !G>'-qC˒4Eq))E6%b*}0q -!$, FS6 o6 24;̩G ^~cY>{9uwA\9r}6r5|F/Xvz2Gy̍02=ɍ0t}/,4/Qr֠ۯ:سiDSyC,88왪MEn[9-}K{օ'xULӤ:n۰~|mkD&};T"A,zbτܸk8Nm[zBqP/S/>fMg_At.q=TY+ܝ]%qw,qNώι+ϨxHgmWi/Њx6C@Qkϝmf t}N _&:֦̗x5o~پw!yn@Rrr5S\@܄e͝MzGW01x0ݤ^כ$\+KƼɛ$ShFPKrצ/Mh:j/Yo*/Q +.8Ur95:Z%]k:}IEIc,9m2}?RNF5LOp7.?J<)g`=u齄{ A|Nmۅj@zU~{Cj@63Q<D^Q\rKK{םޯYZ> K?TemU({}CjgV?n}9uyp<OHܕROL~DuVJeztzm1a ;uǪ>7Ѧ dv7wIyDVߞi{z:>?ze9% -/X=7 NSH`ڛSo<7~Z{Fٴq:BnF6Z壎_اoV4ph1OV5*HunIL^XK-qnuh տ*ΜgϬSAW]xgG>|]?y1w)KaP qCijCm@Ii8ΗP4[Ֆ4`nT(|dԧd~ޮ\kNwxuG[R܇cJqO(SҴ}?A\0d8/G*|tGBwor+e*yda~>eTˠ{L>hY]?a~+GhE $ʠ[Aa\nDCåB>X6G޵L,~$BdW$:ᯧϓDى^`74nU_ Io}O|lwv{2R\/gB/-TkMy{NB,lkRTҾwn2 KN%WRh۳j ^NVu cyV޼rV;+a`0>Zy|7O@,b&f7L{zϺ:ᷓ_|00{18P툜Q-qn(XrhȩppS!|H*wԍ*'Djl ,7->]ݭk)jw,.N:"ii+6'M~(dPqc}?9-Y}wRHvR9Am#pٳd|bixݑz59;٣iR*EM4; FQ ϶ lܬHE5ЭQRIF=Mh6'2bA:Pkk}]sqZE$Rȹe"\yM:)Ȑ%KĜ)z5;jtkٝ)3BJv+!لDIZDtMeЛ]vFH3j{ݏD/3N45Ti1WfOjR$B+wtW7s%{4Kd¼߅=kMՁ9uR)Zleo/u+>Hmq3wY#*RZ[Tjr hjFU*Cs(k:U|V@Mr"Cr|5Ct*-fj7\9:9Os %*n#KwQ* M:tR~FqD<U*Qq@SD?~5e1_ќ `aH#W.#̹PBR/ե՘Dχ| }n#ݭN;#p7Vɽ4DGJ*9o/QI_24^u[u{xa'،?_nϗyЛ+OeVi6kWj}2fz` Tי#G0,ȒƋ}-R&"}G=ZUi$GPPK7hW)x7[q!_] Ξ붗۱ɽSzw{a/d\s =ɤkF >j\2.Կ0N-^B6пO1 oe7hޟ;aeэة^C*Q{z]fl3z{P~3{gs]{JT-h9| o18l?k(nwi55v3Zm34;!XSl,'068 GM# dБT*˒ܛOm% &!;,~ݖ=kVT1ؿ_] ;uQ Թ!'jƝhp\9{qTѨ5r zߕ:xZv3G؇EGQk"۩ҚӏFSj!SYzA,Bnƙyvh=lVPiVpfNԞ9BԉDR[~Ǘ>tISa4.=j7PȆ)gqZdEAYۙA=4AkmB  zfę*KQFl<"շc=Բo[)^ut4@*oE@ٝ)8'iJjLC t #cvOw8(؎n K{:YGR 4(@2$nH_R[s~uY|e5uX3 >$ݥB^k&ÃZ;PMAce/<^OitG$UϿ2[cazfZԿE.u&5yo^=ytz}>=]Y-יقFΈ>6_JkfaNA 2" Rԧ!5ᵾ+z\a]y_Kz#APC˼1qu5\ |Ɇ42|(,@Jlh"k~#&Ouo_C&4/3G| ;3.95/ 3Z,/Ǫ|5z6:dGr*[ӐW}:sn&#v(6@FeA~khJo ܝPˮylbyIM yLq˖; seva4kX/c;EH.f%VU4_”Lݑ,i.Z#p"f~k<1i,?KQHhIEFoc@鯹 ^]S:IhG~GՑV=.ObÙQIyg8*TnJu.)ksg* YEzo9Mԏ>ji*k^iM:d P4=9*U5#HJk4$t.&2 uTb:GEޜAN"Wq~LsҚ?w\+nlzX4-DHM>UZ>ɽڵkO3u`j'cGɂ잟b̌t!jf;$|89X 5fQVE~^f'gvikD|Z 'É| "wEZt:D '2t.3=3sO޲_[<H|_B|(5\P,X8lKoz~Zursock$_%ɾ.l{|~?Ɲ?搳PHz@V3O.cj`='k.zψ )vv Cb"w 4U'Wt0&,Y6=@Շ:BGGW/T9?B\` ޷g RŮ6y:xV'M';4ޓ.6WٯS6~IJ=@[>#Y^=E+Ԙ7Gf㉪-bcCĺ=n8mTOѢ.s^Cz:/9 8+}ҎKE_,)AN7 e/yU֐ޚq窏wKu616"':(P%0nĒa*.r!$`ɧ sZ}yGob6) < &^55K[&f"R0{Pk:T]NQy?8z@sNB c9r7r/ Q%1~чUT)Jz9"DI%!sA ·CS嘥޻kLEDUeHϑԮ.pduUȖ*JKtWC[䬭qB3̺-GvkF {HG?J*]#; w4ZGϴ"/ِJJ$Sk.M:QPZ#G@8dCNfj%!?Gyln_r|9r 9IDL~ܽ|s#\]r1^|HÃmSM2 f8-5؜V,8f7}Zzɽ2Ddю2WWu u^OLm<obJn\_i?I G֣5,c>wU>'/key#n-)sBSҭ5 <*A:A<Ҟ+*斞Hhei',8?ɻ ȭf:-'T{U"{]Lw<89}tFA?{5_GNW_ӌ!6P^hf:jʦ KȚ$Cq0Ma}y?|KgR(gn H!|9>ݑ(K+c߂(m${da:MMa'- }{:eaqE͝!}+uau}K@7d  ^=Bt:ML;( $}Lf'^qX8}z?F?{:ىc%36%H(p>SeNs۩|JRU%ECY_-} ө0`ISdrKcp''Nbŀ~+n[U5<mGѷC$2_\ HCP'(Sow(]և7m1exL+.>2yo[\Eñn}ޞ,wvК5#_/N*,-ԯ*XLΦ5ۆ!yi  干%=DkWH,'TodѽJjF=gG}̵; #&ԉT 6R( HalfcȐGIc(a+b_ġsD$n*&W9荚qZ>*5"BhnsJ`t)V1{b3H<Р'BL|g_PK~:+hs+3~ 4. "y9x=iL~lr|`K'ښ0:aqa7|Zw8\qc9Ǩ}w]VyqƤ偻Y64X;}9#濑)+0+i@-/GFL?{|g(\/Gcިkݦ@wMUa.)̫~0ː*gԎoPWPbצƕ*ߓr1( +d.ŧ;Ev sNJI36zP8|nC0?z\)j"\|zyuba=~(+^fJZTB`6I:W8~4R_K7V"'{ 1pvsڔ4"=goͺ[`ڿ^y46xGg*M{{g*9Tt:? Lmژ}%jKJLTG-]] VkV3Q;~+s_r|Uu5<{Zdfye= 1&w^%9q-emntR3 5Y:^5!f0DYE $`~X2LJ!]!hmD?-:eK_|yA vb.$)!_Iu%#ul*r"=5#%@ákB!`@S>PЀ `)@pSFQ]PnMgAĥcpY.TϘFQ&䚾뭺kpNZXO 1Sy06^s;2W/> ~C3<ѽN]|K6{Ɵ(۝kjj q!{f!rִ=Lj.Am#[*V}Sʣ3IoUmeSֺyJY}v Hz#7BwYt Ɣ&}R .ӂQFS6c}o1rÔO_`Z]ȆI.{^b/"A,q{§S=y(~=O|K|;`/kI9nMM/"!C&>xF*TkT=v7dNi}1LvnB*ͫ:VCCqjQ0ȊOkVrE q-f| 1AD*[tʔ3/e]oMx6@+{sBLԸ7< 燋p`k=`w?]WK--V+^gi|B+,NRmWQU~ԟlm7ý6`u$POggSZI C4&WK?>e.(ݲITs'azRL[2k׼,p\u?+wڵ)c)E4}hGFvm'ciDFFƧz tݯs]uɠ8ݡk=RTT0 3~뜵kا922Ik"jƮ]kP[_nFuGu͡vjG窨Y|z<͑kWѮ}z)VP sCW)#܎_˳麮K@h>>t<%E׮qd+ڎϕUpi=|ڵk׮ :Fa随ܮ^zqm}M[i|^A{(/Q!###c]%kHN}Mdw1c mnHTxwaTz_T!D}k~0kXA}$fF /&.eG;`uI]|ykMä(^ʐ+T y/Zv"AW7 Xڽ[ǠU^ẾjhWњ$;]-4<>:??ZDDŽְX)*P٭]3R_|5G-+o$_I͞F{؟nvul+Q{[`/cO`ї;[4COj !Gcbs`>:UW|a#jB{VS:7OBXow:j*k+qLCPweVTΜvI:CVtIs{y6Q|?3V%t`Wݺ+H==)&K=rpzlD@v,ޤ3V(bEġΪyH<9!N!T=s*IM;aS̴|GHa FNoP5id)!hL\hx.)H%SqSv) content-hub-1.1.1/tests/peers/data/Stark,_Tony.vcf000066400000000000000000000077541456121157600220270ustar00rootroot00000000000000BEGIN:VCARD VERSION:3.0 UID:pas-id-53A9858700000001 TEL;TYPE=WORK,VOICE;X-EVOLUTION-UI-SLOT=1:(800) 521-2227 URL: TITLE: ROLE: X-EVOLUTION-MANAGER: X-EVOLUTION-ASSISTANT: NICKNAME:Ironman X-EVOLUTION-SPOUSE: NOTE: FN:Tony Stark N:Stark;Tony;;; X-EVOLUTION-FILE-AS:Stark\, Tony X-EVOLUTION-BLOG-URL: CALURI: FBURL: X-EVOLUTION-VIDEO-URL: X-MOZILLA-HTML:FALSE PHOTO;TYPE="X-EVOLUTION-UNKNOWN";ENCODING=b:/9j/4AAQSkZJRgABAQAAAQABAAD/2wB DAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0H yc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjI yMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAA8AGADASIAAhEBAxEB/8QAHwAAAQUBAQEBA QEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1F hByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV 1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usL DxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAA AAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoE IFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZ GVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcb HyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDF0ixnt5muCpZR1 C84rV1Hwxb36tfybssvAHFUrbzfPV7OZgsmDtz39CK3L/Ub60sYENsyYbEmRwQa9CTd9Dwaaio u5w9zaWMVhd2s8EnmkfunI6VyekaI97dyxKQXhUueOoH+RXpmpxR3lhNJtXIT5DjvXNeDkRdWv 2kban2dskjIHK8/oa5sZ/D5j0cqX71we25j39uu4Oo+9yfrWeIAxI24rS8TJe6fqUkiCGS1DDa Ylbbgg45Ix2P5GprCO3v4nzugnQEtGwx0ry23GNz6FcspcvUwZIccYqu0IYY7ntWjezxxIfs8T yvjLEDgVFpNsby4Mt5MsESgNtIO5+cALWsW7XMJpc3KirYacP7Rj87OwHdgdTjB/LkV3EVtBqI dbfIZV4THX8ateDvCx8Q6nrDpGVtrVTGHxnBYjA+uEP516FpHga00hFu97zApgqONxr0cPUUad +p4OOoynWstkeMXsohuTFswV4PsaPtCN8kecY5ra13wzeReJPs32ZkMp3RrnOVJ45qa90D+xXP mpkAAjjqfSutO7OCSSjtseiDw3pt9Er2WY5VfdtyRz6UzxTpWsnS4bKK2EuBu83dzjriuj06zk t40ZCSx6gjvXnPxN+IGqfbDoml3iQRon+kTwsGctz8gbtjHOOecVxSquLuenRwntvcirNnMXN3 JpnmW11KquFbMe7J6Zz+FW/htPZahrOoW08e5ZbYkAjGV6HH5j8q4N9RWHT7mARqZJlCtKxy5+ YE8++Mfia7DwLfaHo9jNq19BNHqaXIt2mL4iWNsA4UHnGcnOeMY74xrV5VINWO6hgaWFqJxldm 7eLbWdk1lqUYm8tj5Mi8MBnOMjt3wc1z0+nQQ6W2oB8eY5SJPQdSa3vEk8Udr5twBuRzH14bAB H5giucivNI1Wxiie/SzuoS3miZjskz0KkdMDjB//V5kVI9mTinqZdiqMDuBZQ2cVPJCsjpGDti U5VT1J4/wH5VBbX1hZ3DxQXBnibAZyuMnHOO+M962bJLQzm6kk/0a3QzSt7Doo9yeK197mMk4O J65ouo6P4L+GVvdatKIjcszkRj95PIxJAHqcAdegqLRPi54WvUW1ufN06UYwLkAof8AgQ6fjiv CdY1u71i2t/OLOLcu4VmysQLZOB2ySvPsKxJ1eWQychm5+tdcW1ocUqUW23qz6UCQ3euyXuFmS TDJMhyMdgD0x9K5TxxFdTXYSKNnXJKhR0XtXDfD7xJLoUt6+oXUq6UsYVo+WXzWYbTjtwG5HYV 6isFxrFquqwXET25yYhCQwYfXtXZSqa3PGxNBxXKup574i+LGo6za/ZbFW060KgOiPl345y3GB 7D8a8+urwyFNpwQpU/mf6Yp8UcaRBnZenGTVWbYZ/kO5eORXHu7ntSvCmorREllY3WpXKwWsLy yN2UVo3YuNLuptMvFBJKtn0YqAfwI4Nd/Z694Y8MWyrE4mkUf6u3QMT9W6frXHeIb5PFWr295b WT2YkIgLMdyk54OcDn1rCFWc5XatETpqK0d2WtOuJdc0saFdTf6h1kjZh8zIARtJ9sj8PpVPUN Ggsbho5oo1/u7J9n5hsmp9T0LW9AlivWt33Q43SR/MhHqSOx98VlanqI1NxJtIIxkMckVSTcrx ehtVcYaNXfT0JrbSI7yTbEE256hyf16VLNctFA9gD+4gbLuerEdM/Q1Sh1J4IljjUKR0YVd1vR 7ywskyPN+RZrqRDuWNm6Ix6bhnkeuadnf3iYyjbmitiXw7oNz4kh1N4QwWGNFAHPJORn/AL5NZ F3YX+kTbLqFkPuODXYeGPFKeEvC8S21rHc3V7O0k+5sbEACqOO/U/jVvVvFena3oV7FNaul28R ESuoYbiezDv8AXFZOpUjPRXiCp80b9Tz6SYyxhELCMkMyZ43DIB/U/ma0NH13VfD8hk0+5ZY2O XhJyj/Uf161lwjaWV8r6ZBq6sYkjOxlYD+6c/pXVe2xmoKqmpbkNtbCe1ZwFLIcMD19qUwRIcH gj0Iz+VO00fJJ9RVqdF4fGWZcnP5f0qG7Ox0U6CdJTKiRnPGG+lSxuQm4MRnrzUSk7855pzn93 nvQwhpqbVv4gugJ47qSS4iltWtirP0B6H3wa59n2oEkjGRwr+oqwtK0ayxMjdByPY0kkhyi2m0 O02aAajau8G+CKRXlAAywBzjmta+1m+1Cy+xzygWvmM4iUYHJJA+g6D6Vl20axwqFHXk1MamVm zro0FyqUt2RsoVOwA/lT1A+voKYn7w/N09KeehAJHGOKDRWs5IaJvKYhQATxg4zWfqUm+9yuQq qoXjHQc/rmrKxIJkXHHWm6kB5EZ/2qtWTOGrTc6Upvof/2Q== ADR;TYPE=HOME:;;1001 E. Lookout Drive;Richardson;Texas;75082;USA LABEL;TYPE=HOME:1001 E. Lookout Drive\nRichardson\, Texas\n75082\nUSA REV:2014-06-24T14:06:36Z(0) EMAIL;TYPE=WORK;X-EVOLUTION-UI-SLOT=1:Stark@work.com EMAIL;TYPE=HOME;X-EVOLUTION-UI-SLOT=2:Stark@home.com EMAIL;TYPE=OTHER;X-EVOLUTION-UI-SLOT=3:Stark@other END:VCARDcontent-hub-1.1.1/tests/peers/data/clock.png000066400000000000000000000243721456121157600207520ustar00rootroot00000000000000PNG  IHDRvG(IDATxn0O -p!P !yc|$`~HUUQmT&L[CD4mkUr4Sc8]x\u] !:KY.T':0[ pR%><cBt}Gɵ^t>fCocR,*5jx<ڈ\o%#kKd9>cF?J li-+)Uf{&ʈ>ˎ2QK⟞K MGLQ,I:XkBBUw0Ďjt#Zyuvxkh^5ZZ٣ESB+B=nn7z^VrXf,'_ᏠOA/LS[yq~'㣂#Cxbl ^aPaLVS 0`Ĉ" 8;Qq! 7"C||􁢩/pjnkVt:n\.g2x<"=wF#H8s F(HB\T Gt!JFl^|R,£a\eـ TiiSzł`$4 y`|>I|! bX*Vfn`t{$ ahC A@d" X!%A.K'HTÙP5eÁ6j5JQbPY>:_siPe4Ðar8d7_A h&Lx9D,|L )_.LúdŸʩMvj9ăITh4x$ì(V5% FkDWL<\+0wV``aaa 6b&k{^ۼWG]g|hl6˓@"<֡|?V[Q؅i8؈Xy#x`dҠS!99lS$< Fb,rOSk_k]u#!7 ۼ!<t56c 0J$7 AF@22dHʇFT EjI1%I `{l_g5KG̜ٞ;wns={kLWř~(1 OY駟^zu& e2/ fƿ E-Wko7]fbԦHpM7SO==>o=cΜ9a ;,_SNa n95햫 R5S;iuC=@t%Ƈ=5 [pj|YP>",SqmEb>U)7Qr}©!ʃuRR2 !5 ;X>Zڡ6&xi O0R蕫bֻoKQF)D5HI&\96S8S>, * rmD'ʺS[4QTؚn S>/Rsf{s0@rT:YIO'S>jEyշ4a&Q&hL-^nX- WOoy ojkx=dP8S>6ցHV"Y7V7Bne]K~6!ZzH>#H #j|0ʽ3'"\:?GHzΘ1n֠e`3gƁj4f]_{3q}{lxmP78Rjdi^1bFr6fm7ԜUl7|mQgz4W8lKgЁݹx\*,BC=>) T :B0\Ius 9)ED6[(UE~ǒ%.h[o)>R%%9ʔ`kڜCm]>űvʇ䣢+R ;GR@H|_֫1H=I+; |Zidbz]ju|=!cWf<[USW]u_nL;n9`6$0M `9U &yoYkCXn߾= dL6'Zܓ[}޼ lzMg,+E)ˮq˸1K.Z7xeyLV5h7bPnA7gİPk5Ԡяv̝'"MPrYɰ-Nɢ Z|w*UΌt+?.s琪> M\C 0/Z$KK>s 7nN;hٗn3,ObN fBNp$XT.wEVHDUCgkƻ)Z'MI چ hd(n\;cAV XHJ |Jg_hBYIeˆN?ݵk7ؽ-P /ym3NKJ[s_ R* HXieJoYGC.i0oJ@Ȱ7Ə:2 Ab"‰ms a̍zG++= ǑW+V z;.GG7 i1,͑%gцkf| oI*Bȸ:]vъd;=`u# ͞37,'y4$ ˓j9 fz ՟p"C01O? TŠ,qA!`R҆3AQtВ_I=d?ȡȈ jC_Ȫxʧ'ځM`iϡ2o:yYh1tpJ0n|͜ /0M]Zn"y!p' gaVh)HFFԞF #¬X c}y\UZB-kb ӟn?-˗/i$z,M`T;xd@QAšQ!A`*HCwⵚ|V,%]g꽴5UDH l0Gkh\g}ƫXޅGۊa1“;_5ۿ K8^k$b~aZ"= M`oIxˆ;2%0=HDk j!"AaU366on?O|ey45\ I`HKZ$mz2%9"PČM20=}[-& l3EΧ&_,Cs{W>9߭FpXش34~IiT5bR"̌d%y?<^Kkì.dˆ9~2}36lmӧuF%fT>txd,qUEByF*ԁ}gHHNDMDt WbLV{nP%7ʇfm>}/FV Hɮ 85>j:0p#S'RHFkACy3xfav4ov[,}wHZ@q"8x#[xѪG`IQ_e"@~CHnjlHb_V6͛ߟ?ᇿ_hddztɤً`UR~g~!RuFa$̖lFF^A[i͸_M53n-D(ܿr%`5;׻@5oXx3]:v@ZLKFEB!x<х kcj {i=`_8>*ꢸ_ Md1D8pI[M{禛X8|0hM(VN:i=4'0cy}/ba1lL`}{{キm[yLD!⁁-Ӧ}0m]z):& UXjdjE/c3"H1FL͇@>i.84}Mc@iCgqƝ3fl=2宩S͘8mz㖼\x_,]bDHږ#>+M XџQр-V%''ISӍDs1Ǽ:e }L2wt@l IO50v*o$cK: O;#3B@bX98f݀Atǿf|]UU_~t-L5pkae3R.K6r'ϼ R|fT/A: :B*|Fb*et G\nAwO^8ӯX1ۖGTr)F  +Jp3<hI>50 3< 4pef7Y=);%]ghd~8=;݊atR}&!rZB#sMT{QUG'GFZZ X;te L$BQ3M:SQ [؏7M{> 'CG2ژIh~,Q8'0[fN)qFY‹uj%|׵߮p X))¯ /`{>Ej 0))_~( :ʃ}֯j^B`[`޽HQa?$pƅnq% b.L &(1DaPM+̤.y7EH9CWOYTNwt=OK#'!2|uF$l?hnߺt^;Zm߼C9 )b^&Ѡ# #b1I+|+Cƌ;ݼvNcqQ$ FVZA0s ,A0([ Ў|"zf&,lfd f<ÇL (O+^*pC8KlXMtmG c3²>u_E\J} ю|XUczgtk~@³IE19%ڑOBN5M  &QMM7rG\xB2M6\0$ ̸J vF0LDt U8iUb@m5 iN^+ЎİI7baٖ`cy-+j  '! onVby~\c YcG '!DqxV)bf7c1G 5"! 1n? X.1FոżyVMۿ1Ak@nL`:& k`hG> ,1w4l G^Tu+8S-.lk 4/5 jX& X I '!2ɼ?@ d1dp:ݻD%%j̍"MwBjrޘF8ڑOBd˭^HO+PPt)pd+N0}s@XCf[j{0Gx-Ι&`^L{$ӻuLÇ:t eQC2v@~K*&[L1dL zrCV&X0gG@}^ qhG> W'XUb|hJ ם{B?vY5&t`NYITuyk{0  ɟ3!N<'9۷oi9o9uTJXky9hG>)-:i32yG˜KxY/T{]PJvFlL2V}e^x@5e6^k>; lGW@X@ӧ;jƶ̀쥫n=cmfMR/WB5ю|ܢRBx -@1?`oԶ. fݸtf:j'%Z{]??.x]Ԋyih8 Qt(=>cNBy6)/dIWx9R/> s $h QzƤ L,rjl4+;ۉlɾ<:x _|ˁav~r9KKU^$h9ڷ*nU6P)K1Xu9{&nyY۬D0%$B9v^rQ^a%~s0HeU)(ɨF8cRBOXwrtvFŽd.lro;& }>4 q\2%BC?Ѣ$}_-dz=;]8V k{b*BUI,GP7YA;ǸQERa7kb2AJ#[f&-KtdKƴ MT]jW[w9Zs3*ʖ`ylb_QLguӝq6ߏM8 (@@XxAuW\g|> j)}2U/=ɴ9xit^b]5q__+U+ @`" :asBE֓r? ^hmt덢YDG<k²R֘>V= o6Urd+X zv/No) Anr>P 8U0 zF+oM&Nqt $˚6SO_5)hd$M~hq 8C{z`1/;|r8A4^&LC¼c.UtwygbE "qsq89pΜ4xM^UrsR//,;26&71=͐tPx.x>;֜0C( dDl.IC?*pemMoDUӀbTZPO9DLL:q^`|\c9\2??zevc7Ɛ 9%AE(E䁮&JZVԋ{0LIWBoעe)|cB\.&59nmTGw II>HL*^46)W&haEi]RR<Ԍ%4$z1L]5Yv@ȧYZ53?^LJl0ťr:r)vX -,̢vl鬧\^H{h* PcPƐk/Mb}ysQ|< ^ycޓi'-e'u;\M߲lERpb2%«@ٜUE2 CNWX,(j3Wwpya+dJwZ 8-;UKe-̤;1pPAU* ^" !bNjF+zZ3.ZG!v&V{ ;og>#n3g.p疩2=(ZF5tc{'-!^XllԼvskĎQ"Rp°aqoPᵵrq@i^kV̵ ;Ò=zm3w"VThb<{j[SZAFrז844pJ'T'R {^W^[nM2Y~9tFvPԡ;ʢ@)<%tMSK kw\s03%riܤDZ5Sqk f{ V%Y6vꀪDXU_qzyL?5{*k)kה6P*b  "`"N{(IqFCDТ&Hkch% {(aMk\[S&'҄s wwփQcC(6G>u:2^(*(vH#ƕGIQdb7wԣ{/:f~F76,9^zWwR߽U9LA+a}ؑƊHO(.0C9*H.'DIT "?<Cn#?6^?xF86{SwbZzP0*= Z CvEUivJڭ³(ǚH8尶F,NrB+qbbXVh3.s'ϲsoz4 gOduWOr e Yw0Q,v<`S TxFJi -x@0*qHXD£>)SH5bwvbW26Vk?^P׊3߉K_f<}r+)e^F "Srb5%kd"K"{e>4,+#dP68NX8~1-vnd? ܑ>IN2nd6B=Ň6.)Z!QDIPQ](! %Y'4{iZFNTC* NN4EYIkD UFDf5e[cyDIE/o[C^y+"`yIJxQLYeK $M ӈ5G GEl^ ?`w8܋,< mĀݡEG9PK4GwЋIHGF?h\F)C;Vđb;)Id#X)3G8I/eJ$厹f{''V~R Zyl|~^fQ&B=sZsBet(AkRQ#:,XX"ZUYR9䯢LO 3?a S G>Ez j'DZӋ l 焹vHy%J82FPSN#Қr,Q"5Yʖ&MM>s3;{aXLx5[ ҉¨` p@ pdbPxSRK2#6Ҵ{|-z]lw(Jl4i(uF6P5umqsSYGq9 H)LsuAf1 F<E-biJGnqc;n.xʏޣ(%h/-!D6eK971TP7ELӐBiE77UT6ާ^f#pJ6{c~j?S/+|x|޳_x-e8Nk*[aE-*WOB/S54#֚qU!. uUCd sT%b=ǽ[we Q+q  ߀Ӧdc3E% `3TRQ@ M݌(]41n*J7-ib^0p>i'̷& :]RS:f\7)J>,>֐/Bam=߽ɗ^5T2ypv$nU8q"K:M&M6jlR8|{ ָ![QDesp)6ƣ ;g̓t;n*ɫ' ΀7fQ驭0ߍ-z.BȔ.Nj EpOD1-͝0X27g׸:GϽ)nm$x:9-v8B;eu)7!Bhra(x?saP+avfQ"p©Ŝ˖(#"T$ڡ3mnț[(ǎ'ޣN2bcXF1ؠPڑD5Fjb(K !4rߟizxV=v̶u gF~2e76wW M1 7$ֆ$WiS =-bh YD!e5}yK?f۔0҄ 1R >XA?5-~ҹL)B%%֗cܤfBk𮠟.yT,d{,pVŕ%^|x^f1E\˸!MR;=:>M;{ ;Y*yD\ݘkZfukG/-).|4' vzDSP|K hۈ["ZEA\F,9JpM qʺ&KP8r7nbo@?b S G\??MCPE8 C;F1 ⛂V-ܙ= tM %OB+V8[s=άzVB F 6Z7/xmum U"Mde@kΜ?D)c /2vQFo7@58g5]zbZnUTFg D"*PZꕔ.lC#{奔)ߙ痟w>f՛|1D e*uՀRĤ8c}&uE^IlV ^R-ZɈ%ؐEH>&?Ca{l"Ž'x+MftwdQ-·5XjD;kGѡQ*t(0u]DͲģP$J( ;&(TORtg쓤fT$gq؝*]`ys;^|.=*(lN-"~E5#]vX!m➢=cC^&d\~5\C)!8}6o;6hEi^xn6ޛ%_d[&bY>Spe]1,j0MyQ)#*v'jD~.t1i4Pb L:8'Q5c c*S׀RCSڒDF!k!Eh‚zCC@>WnCMqiIDSׁ[xBNjԴ~K[.&e~/pjLln|ͅU˕;+޺/K?KL j$pk{mV;WdʏeL%c*aK1BR9J$QBx , ̴ 6Y;bk@,"2}O23%" ·$ͭ\CekiO♶$qH)Ra[9ƻ;?a4?iz.yrJMoFech>~wlz.Yoaߔ}rQ :v0 Vn#]FҘk= [dVбYL3`/mmJTFj_R(E9~vB$i:<+0,OmEs_?F;X6J J{hzDt%E]n![) mfB 94F) -Ec4H)fzCG48h!:_5Kay˯` ^tI 7.0Ӥ!%jƣ4z'6YGǠp tv`>gSs>@TvLl|$}Gf^s!tՉ'+u9zm޸qL˃d[zzP.JtD4 <fRᗞ#6ܗ|waoP*ƋQ|k}cjt&YL8hjZ>N*NxV}&؏%lՁ t YT1׷O'* Fel{mJyо9(1YM>메oPmvo9xJ"Pr;z۲c,HY8ڐJS0~{?VO'/>ø ;MiU>cdw3~d`59rct4ozp) :v†V" *'<`)| p#$`,)4ᗆ4%s;=6/Yd7^LSɈË%`;& 62|!nndT7qՙgqM(lEv{S^/Uu}yM$:6 ؀C>=p̀j;qMIݢégmiVVQmu.N8/ywYEzȣo#8((?2:۟R@\<&s(O;OxP âOel씈@+MOu1k3 qů}P8͖_}D)!v0KX7Q~ S\ig cakτ/՞$ UըZ@ z3ĭU>mX88edB!3Q(?#gKFᢂ = lRܮC]{˗-_X.8:w7o(! {+w9z7q&3޺L[߉0[7X(8,XCBu⧎Ű`K[ʀ62|4ߌ3% ?(vl?4& ^b Y)+G#$5F'9 jv%JN[|p$l(։ǟ E-N.3mFvȡwkkX}7m [q [դqCsEȫVQK UU1UyGQ }# Qe݈m僿0N2*źm7`\,2j}F."aF#BуY/wOkPa$XJOor~ 3-,=}Ν=٦9 3|;..2Mx[|spdQNx 9C{!|5{Ҭ]W`#p`rD ϑ ȓJJ3h. ;c{;V5͐ۺ4Lɵ+nΚ-wیF%bU#EI&*VyY 9CS0(9QP۰kƈ-yv*NN"{tKԌ#JN2%w{SZ})6S+$Zf@{r)^_lk(s Ainllke&PUL[ϱbfCP|Ͼwq,4!X^o5>o1hrZf4Ƙz.u( jEG`">yb.p}&x-{^M(QTVPM(yu"6;zb>jOx{"UMt?ț=Z-ቖ湮w{FJ|מp>QސuNWJ+RnUdñ 6:NQo Ȫ[6VjXv\lؾ6%m!Oҗ?J2.h,(bE]z}+克o^{cGS-a^^Dg ,LyLRePND27ǵw,<f&Thv5CxsWy0 IJ0^y豊R[{?<7"8\E ,FG(|ZiȈҁғ(.^D'xeϛ,9e|>-S>.r8#{9+Y~Upx<^ƌ|J#v$Jhf~TQɑf0;;-aO[~& >~w :7WHJK^ ;77ۋ虅uS)9E}m>CBNphnl$7u/v-Ý1 ^n]H6./<܅nxY ǻp ä3E awc! S!0ᆭݩa H S?R^< 0קif<}dl KThK-#>nº0WN?N*^L?BS"6f"ox.R Iʭ3C9H榙g:P߹ɔF)(Q E;s'$BԚwDuNuD ʔEd?`Hv^)b3C?]YCDx=nْ2C:ĸS{̀H.6/xJ8x@'kQ͉h>=|`E-5YamLф.CwpPKD;sXZ(:SGoFmWY^u :gچAQFc4째5RY鈷T:p2hld`wf9Lʷ.mrs=z:%i/M:x<"|KxRb6z ["&25K y#?M&f#Mbs}`0=&r5=>r^{"ݦp̉@2D6{ڭgC+|ePg+օFV2Z޲2h1nD18EFI}v*@Ib U2B LeU~[BLn ?q`&I`RS~Eb<+lcsʅl'?_w?]6?˯gWy3,vWy~n>U ^gjkUْnM=>="/DF NTofW]sr˔d{tB{+n!?Q'8k5L_?mHcܘ䦕C%Ƅltgbp& ,7$2+́x|}+_TB+ӌK,o"^yCaJ{ljʦK,ţMG'8.FmjTK:buqe~>5c:EYDG8wYҙ٤pc'XhyRãNb\{w͹zNWtĎ K|9j>EEYxlph.~cko{tclEidhk(5"d OpήڼѽD\òЋثV Бvb&׷yn .=&xW'7T ? 74ktbvc툹$h4taTجjTy|Jן C(#c-s[>Ljv1:S5Oc7\1ԬkKe5\(M3j]WdilIdk='͞,;OfsZ{uw 4bNHFGF!ٞd?#b?+H7Qh("  ^]{,CYnu5h6[IKɞDXE tnuTdĐ,R=Qo~c .ܭ)ϭcNK[50(ؽњi^^@:, v 24Fnegu60؜V_5dach>x\BO*o,4֦ ]fa%_S:*'[\)%-W+3k+{<0ʢSKU9ziF TgZACTԐ(lUPNTRG1j].+be/~y rKňc[\T#1(Ld5$h֔j፡Z}CBl[ɯ{NE5tU} I8b;}ͭ 6z W/X9~Pr|gدn![`U\Q0% 4nU^\yt?E+M G^@ GNiO!6IF"ECT'vT)Oռa2DIԍZķ_>YR=Ʋ$îD pW|Gp^ Nͱ n1X%[Q,ӕs3NdJ*EzmLp fkMi!G<#aoKY*\;KoȭYthԐ$qdEEMT ^(UQ12$ g{7*򤾕ܣMǽ7+8 ϸ؏lbP4/f@8H6 Ϗ(' d$6Y9Fb%n|J\߁xeFEK&m /Q=6+,lNؘn1h6ݑ.e^qV#we^SXh}J[9R)gvƢ0?ZÉGO=7a/}x.Fƙǫ&zphAo7\Eь}>)G+6- N:gdɂ`g(tñB֟Z}i'{`/{ǁRK#G4* R#82+ՆS%e =DxTˣjZ)aTk陔Iu$ ^`ݦY5VTCl=MZi&et{}W"KGGG0,掞[}EWn>+$646pQAS˛SҴdH r册̌`]u!lZ +JqFʭ%C_ ^]٧ Ug?^#J2bҪe.[UġHݜDkr NNSƛ ct]l{S[Ts#9S^ <P M/K~0^a}+)ǥBFi5iU1|B`Xd.}RMQQS8zn0[*kыCid~UNhIYTll)>\c5g\<kW/>DL\FºYt>UMU~^YHM#"p4V:=Lwt7'Ss_~O <&Mrv׶-& z?Ch2և ˰y~{V$d3 IYzYWx@QVܸ9QF~T3?BH)PbRdП<Ǔ'c_}·~O?7eI~30FTZlߝXkhmVȃ8'o:ޞccB%)ګ?y{7s9_6MyFQDjޮeO$,e6rT|(J pTQϐ̫7N)7Fy'W&nH"N+(>Ъ#)ɸ5z< /=@(N$µo>}lmB[L!\B{Ջ ouQoe`D%׉ZTaW.1v'[ZI)+Lvϛon %WI!(,ـPU rde6lOM?I;3ґbX8,jl1.՜{@_+#?G'y!wUsyoio.I}^s=v,'= 7f^s&?nqt0cE;85a%[T8w0,)a ;9憬W_?k2QT]cm4Ow꼙5zsHSigR |oϹw97ܭMMZ`Qx@ w 񚲸aLOXʀD& e#N} 9[ Q Uot0Za' ;_ ^Ļ`TE|w[)2o0*Whk9.PvbNP*l~Th jLg\gs:xePf @26ZpYlp6Y0u#?`I^<}O1-n6 ܟ< 1Ws'TׅAk<#hίEĊ+\X#JuԄ]rncY' pY$燛//M#(!a8 w۹lItR[FOGoO],I}T>fzAuUq>x?cd%(~Ft׋0 aÜh͆ŷhRQͿ|W^]؟mc(I~ ѷ=Zpsu.u1`~85Wk􌺣V b znr>1WL).*x` LRPݍ}{1/'1 ̨)zf d:mEzt@]D=)*Z3),yIt OOJmp sD1JtJb6Q{j_e:n W/BqxN/MF_C'&z|B)E<(icj-L!+,$+#zC}C:嫽 Ks_!Q \Upt^Np Ϡx<Nvp,1kў+b&QWۗR|Y ;l ztiٮN˽DS gh2PO|u‹$iIJrᚢy\eMq![O2fiSO7jEjt+K7.{:18Qkw[-Z]2h嬈">0C@-pオZګ13x֡"$IɨO:.*!gGز ibA ?AM"11پd|\R*gY Mk8F dZӇT-h;SmXګG;k)H .IF/hwVVuʋtlE,3}N0_M.+&;:}fB4* Uy[@زkU+3u3~/.mM˂W9??d+8 W8-EZ >%[oʣ\^8ioCH?GU5ZNN ɅjB)+F7pn ? M48R; jڳDXRXjkX:)D?BP 7|VAK˷%v#Z]{ѭ!^ ) / |̬ W*N3f( 3l2;?8+ptt}gl@EQ`=h>#:&KGƸ$Ib+Oz=ګδ;> |0~dmWi:MM͊irb;7F(N\hYH]$u&P.doV|\׽jKa]d'p%['wb+úpwT;Gx咍.dl2'??W.~ӎЭDJ#1"eHt'3CL >y;裑p?el.3M^"Z1Fu¨ZT=W͖0֘ґZߐ$RjٶMuZ(pW2u΅S F6wNe .ֹ'd 9Zg%zJ{-lp|)C=\9==ĕ>(6f3ߕ(8"BbEekDơ`|P2Ƹg1(.,ok”|% m\Y`GzE`p _D (&iґU6gQ$H&L z=zL9(jEzuU. <#Ky(w>O54 ԐҜ#vN|ݻ^y\1Qo a19\OxL}u6,C+Uk q&4-H9Eu::R:[O~ɑ(ܜҬC0wX; 5TTz^z,{ypٴ+lTJ:n&S+t_27(tfXjHCU.$䣕|@EkW݀(RdÄܠ.}R9m3Z[rinG}|fgNJ+ L^aQEd*EhPvh3PlfH ;)]; 728 >=S+f4h[2/xbk?jvZR /Q(rz꩚iM8r]t)hnn~!X7y8}e\^xa°`r)$W8ʪ|=C60l6ai +4Ӝ-J g/L`a㟦VH"jogxߝe4(6F /'|y38bClGrAeCx/ѝ@>|Rm8pǞ=KH IG EP.=v+DsF8?DgpgS8 ēǟgwN{018}`zBk r.~o*EgHMP6 *F`%Ҟaspcpehj=5/M:WYAJeMetDI+G׸}t,}OѸ!`*D57sbHtsYe =2Z\trG"s#[ kqO3ְeVKvc k=x)\J ӟf[ZT"H=D[zmu~k +8Qţ%r(K`g(t8UI lڻTctyL8aB]gXjoY|Pq9w᭵su\4T>+%Lfvt ;/tКiSmсdRRyy''xB!`+O<³6[zEk>V,,9A@>Pb/tKa傋Mj?0z,)FƋ=EՎ㱱 ΃TSIYޖ&HB5}w^f䅥h0x4?⵼ՃֱdTH(+:EYKεklbez/[rѡS'ԍR)shOZ ݌3)(,Nk)˲mIUY0=IN+PZv|jVF;"=y'nlz[R8=e6r),'y`fѩFM98wF¿LhN2j[:pV.d7!d|{'1 k}wmJnQX~צ`͞IFWRЎue_Ӂh;A|挥A˭%eK\nUcl.26L/EwЄk٢rd-ƧUTVv:&Xh\%, `Ib#2ģB?a[|CTI)HfFrRtcTuHFvlѳDvOl*B_bI1}INWߧ'ɋ1j7H͂JFP1΂o J5S jԐ+9iᨢPbQhH+S'gz`Ӈt%`:j(@[}Nx #//ɹü+:^iXpt`~-m)fXN 2 eM7Ur6?}{QtC^ ޻6I`F*3l_s=-Me Vēdr7-VCi鷾[sT$BrzK KZZeEZ U:Q!|X3D_H쩔g{YzFKO.1Qe(mNe+ q[r[W{Vy.<+om &M(qwQU 87G3-n.x[rxo ZTNfVd1_QT7r؈(P]7*d ܴd˒QH$/򒴬 jhwBۃtu\E.ztեoR[sameU014fZ,덳o52pR,$ 2۰%˖sŲ$%#uox 6wq;u {{#A *O $W_(=-taDtd0m9a; fG;F!XƽKǣKپqq@ņ~jE:@y\tׯ|֚pFQKk"s|Yf~fPFGu;߼7T^T(a_}%1j$OiDu}/B,gʋ N*+i%y\ ?QRQ$< {+;Kw]]'KN8| u fl; /Ұݽte iܠ0YJ:Q,re OnᅯS+O-e"I1哟Z2ZQ7 :+w~o~ݝ{`XգSTπB%>0N p_F'D {*P; k#&LX+_Ar [έ$Uh]XT=֏ՇSFFheVuPoi%y18[D/LE+ rp~IΗ>u+DzK( JvK95뽦ww^:L/Yb;ڠi"4:%ѯ nDVijԽO퇺rpDqi4=4} Yґ{I>hL\ -6^Ƨ~?pC}@ u;RIypjE攲Dx}΃GA̶ǃ+{ݍ3^r2ζgR\m͔\8;h^8Hc4?^t0,*"]!'/8{o ۔·.'5=l>pԛv'ccduG^Є eC;ueg7~k-KJ.IJ,Fm͝*=ljm90*+?ʒe㵒+WnEl,Z>U:w:TjwEW+6{+b/*%:uIN+fUrkUzwĄpo[a`4TE#nqmi ErEO篱/ Ӈf@lf[ZEQ.aEx邶r^2RF" ycbS^SUCpn@q>I_]~+cgd/ҍH[MSZ60\GH#gEy/b zPT!oM7YJK.L^u vRsqF7kᝋϡo1{Gݤ68 Dn % KW3WXr~$%f3TwAj2>~1ʟ/wf &(8ItQzvAs&_mz '6uQ݂Wn\-SCCt@ƾ5}N<ĩ$ւdElbҊZK<ӗ۬`:=gu/qq̢j`Qa N_7TE8rk*nWU+>es=~pz,҂{K4MTDf莰:誩vpT[oBpIOD($H[zR 4(DiqbSs3?mS $4W@O7apC9P9pp~㛦wǑPQu451j.uZgwrgs${ 6 QJY:EԖGp:mH?8ɓW-\5 z{n@$\o+/m=^?n증9q#- 8klUS׸tYxMLL^Ȼ04?\sea'(;C}^l2XLg 7iN6(k=4MC@OOzX2?+Ц"l^WTڶ7*0IN% 浗ϥ7_͕ZT8u_"V)q$(qi~:B?.5:ACg9N[3m ^S\[QN7TSm~7OU`<Ƙ̙ |ZηtdG;kU]S!k>ry2yh /\(%*MX[n^*lᣟ+ʬj۟zdZnw,KK(N?i<ɳ;"Ss3Hu!P+/$qh h"kNǰu5#R&"3q4[< L~ֈCtO0]3.B+T3IH.w~Nu&5{-XXKcTkGWGGoy}#)Td+tS=CVVoZ4r]T< /=V5\c4Ҕb%AFn$.3Ύ@p4'S ]GDjVdñ)eVJJQޥG7[ʱR+IufXXKSF)eX-ƃSZ+R[,8(*Ӆ^G)_fqXeWIG0AF9,F3Ȫf'D<,W!m$E] uUb2c6?E|5aaG}M h/+ _m6+76q]mR F)ʄ.l<ĻoD\VasqqVX8.:\:Z^3o]S1q { F7. 燏E(K$bE._tv=#A#T%MKuF1B1 BHJ {P" ׺kWݾS5ZkNIƷů}y׿1ӯ; xyso' ~í-ޅF[Ţʙ`4();toV-Ͽ?x~@GNsuXl Xq3Hx8y5 vQg64z )raׄbu4,h0ZKHD2)-嬠8,ga'TUo{bđߩx VJU Q ,c:K@9v/9,yCclUf; 7UF4ZY!T I͈n΂{w5O.9Tg̖Lr1mks<|| %ICzQ̏=ӓP *|λOr.oIzgzP* >u~jO}~Wâ7ɟRNm.%~J2/ Kpi(Ԣ9ҒNQÊ"5,5!(ٜٙez4mjٜn8v8qh*:A|9îHaTͳtJتU+f_Du9f"e JL,qil;8*arRѠBMN^Ɔ0J0e~OamV7RKWpѱѯ:CZҘk.OdG ޶C\ӻ2"ߟ΋VVl*Qg0YDrFS IKÿ _âd`pcAisL0_.7wMAw'*;b ( (,"|d㸎&R{Mj5-+@UvY7F SNMOP y {$Q{$҆CBUb9ZO>?xkҔl ډ+J$Q7͑EButMEsBsΰ'S dC.Zh [I} o@]}Φ)gg{W,#Qxl Y! h#3?IjXl+{~wJjwSQZhC b=Y^:\n[P$̓W=\E@} .e 4,ЙNC!g,\ \Pgrj(m?$ ɵwȋxlJK|hq&&!9{Sv|?Q5 7<=j<&TT!*NFnT:߹Gh%z/WdM[KLݢU,ׇTmMW-Qu je?$H˂1@gR>Ut !B5ط*/1Sd6sOzhmU.꽃$ T=v ٩;+0NKFF5Y# V'ؼAB=m5{*ujg'f<c?f23b_/\ӻ(\eΜ;s>v`Wi !&GX`TXg^Y^tZ*>@R]˱G6BtSh%F )~=9[yɶyҪ͈VUeV"'chypäFZF1h8ȞXͰA|ހi?;Vr GX`Z 6aI~*vmK@èD1m-.&5TB&Ξ]as}PJ Ft4e=H̔qITh:rg}:nR3P[]ݥ.`ᡶNQM۪nW)U0ܥv6ʩƀc (!sBd&3m nB=z|=" (g.ǹS RQ3.]oGIoSiXv8&{?\noa6Ϝ/Bsa)̓ pUlCѩQHuk5q3$g9 XāsYŜ:D#)ۈ Q)JsgN_Nv3D<gr$u(&W_N#1t1TIT]?Bd IENDB`content-hub-1.1.1/tests/peers/exporter/000077500000000000000000000000001456121157600201005ustar00rootroot00000000000000content-hub-1.1.1/tests/peers/exporter/CMakeLists.txt000066400000000000000000000030271456121157600226420ustar00rootroot00000000000000# Copyright © 2014 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_executable( content-hub-test-exporter exporter.cpp autoexporter.cpp ) target_link_libraries(content-hub-test-exporter Qt5::Core Qt5::Gui Qt5::DBus) pkg_check_modules(APPARMOR REQUIRED libapparmor) set_target_properties( content-hub-test-exporter PROPERTIES AUTOMOC TRUE ) target_link_libraries( content-hub-test-exporter content-hub ${APPARMOR_LDFLAGS} ) install( TARGETS content-hub-test-exporter RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) install( FILES content-hub-test-exporter.json DESTINATION ${CMAKE_INSTALL_DATADIR}/content-hub/peers RENAME content-hub-test-exporter ) install( FILES content-hub-test-exporter.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications ) install( FILES content-hub-test-exporter.png DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/512x512/apps/ ) content-hub-1.1.1/tests/peers/exporter/autoexporter.cpp000066400000000000000000000067531456121157600233600ustar00rootroot00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "autoexporter.h" AutoExporter::AutoExporter() { auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(this); } void AutoExporter::setUrl(QString url) { qDebug() << Q_FUNC_INFO << url; m_url = url; } void AutoExporter::handle_import(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoExporter::handle_export(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO; if (transfer == nullptr) { qDebug() << Q_FUNC_INFO << "Transfer null"; return; } qDebug() << Q_FUNC_INFO << transfer->contentType(); QVector items; if (m_url.isEmpty()) { if (transfer->contentType() == cuc::Type::Known::contacts().id()) { items << cuc::Item(QUrl("file:///usr/share/content-hub/testability/data/Joker.vcf")); if (transfer->selectionType() == cuc::Transfer::SelectionType::multiple) { items << cuc::Item(QUrl("file:///usr/share/content-hub/testability/data/Stark,_Tony.vcf")); } } else if (transfer->contentType() == cuc::Type::Known::music().id()) { items << cuc::Item(QUrl("file:///usr/share/content-hub/testability/data/Music Ringtone.ogg")); if (transfer->selectionType() == cuc::Transfer::SelectionType::multiple) { items << cuc::Item(QUrl("file:///usr/share/content-hub/testability/data/Stark,_Tony.vcf")); } } else { items << cuc::Item(QUrl("file:///usr/share/content-hub/testability/data/webbrowser-app.png")); if (transfer->selectionType() == cuc::Transfer::SelectionType::multiple) { items << cuc::Item(QUrl("file:///usr/share/content-hub/testability/data/clock.png")); } } } else { items << cuc::Item(QUrl(m_url)); } transfer->charge(items); connect(transfer, SIGNAL(stateChanged()), this, SLOT(stateChanged())); qDebug() << Q_FUNC_INFO << "Items:" << items.count(); Q_FOREACH(cuc::Item item, items) { qDebug() << Q_FUNC_INFO << "URL:" << item.url(); qDebug() << Q_FUNC_INFO << "Name:" << item.name(); qDebug() << Q_FUNC_INFO << "Text:" << item.text(); qDebug() << Q_FUNC_INFO << "StreamType:" << item.streamType(); } } void AutoExporter::handle_share(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoExporter::stateChanged() { qDebug() << Q_FUNC_INFO; cuc::Transfer *transfer = static_cast(sender()); qDebug() << Q_FUNC_INFO << "STATE:" << transfer->state(); if (transfer->state() == cuc::Transfer::aborted) QCoreApplication::instance()->exit(1); if (transfer->state() == cuc::Transfer::collected) QCoreApplication::instance()->exit(0); } content-hub-1.1.1/tests/peers/exporter/autoexporter.h000066400000000000000000000024761456121157600230230ustar00rootroot00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef AUTOEXPORTER_H #define AUTOEXPORTER_H #include #include #include #include #include namespace cuc = com::lomiri::content; class AutoExporter : public cuc::ImportExportHandler { Q_OBJECT public: AutoExporter(); public Q_SLOTS: Q_INVOKABLE void handle_import(cuc::Transfer*); Q_INVOKABLE void handle_export(cuc::Transfer*); Q_INVOKABLE void handle_share(cuc::Transfer*); Q_INVOKABLE void stateChanged(); void setUrl(QString); private: QString m_url; }; #endif // AUTOEXPORTER_H content-hub-1.1.1/tests/peers/exporter/content-hub-test-exporter.desktop000066400000000000000000000002721456121157600265450ustar00rootroot00000000000000[Desktop Entry] Name=Auto Exporter Comment=Test Auto Exporter Exec=content-hub-test-exporter Icon=content-hub-test-exporter Terminal=false Type=Application Keywords= X-Lomiri-Touch=true content-hub-1.1.1/tests/peers/exporter/content-hub-test-exporter.json000066400000000000000000000001221456121157600260370ustar00rootroot00000000000000{ "source": [ "pictures", "contacts", "music" ] } content-hub-1.1.1/tests/peers/exporter/content-hub-test-exporter.png000066400000000000000000000331161456121157600256630ustar00rootroot00000000000000PNG  IHDRxbKGDHu pHYs  tIME 6tEXtCommentCreated with GIMPW IDATxwT/ma 6WcDwhF`bK'*+(;Ξٝ~{=sۊ}*        @@@@@@@@         @ќTAf]K%lS *({H߁#4BkMYB69K~NGPA @W=pķ5`^?d!/"x~I     #X ìܧ۶U9;0 `/m>Ar\vo@vdw( u(jWnbkZʅ 5OVs]FUt~]DK}ڵTZ@莎T')*m۵"!w5>~Sa*4T;Ne6->WQˮ**-+/F֘8*O*:4Dt_hYU)א<[$ȪEƏ)g4p'3$ Գe&)b33۹NrZיSҠ+˻w#'n7C_~V6J&w| x{kʎϙS_k$ \ͮl^yJ7VH9$w á첇5/ U0zfo}.k_uQ836= t:E%奇O# 0[2ow~ zyG;r+\p=@TB1@Kf]|063aGA}n }rfpwmN~{8ct`=}syFMLqx|?L |v> _jp{Sj~Ѵ9.WaJ/}Pŗ:B}ۚSZ~Ww۫s"MQ΁'IVoj{/Z{Uzk1{1PowKcm˖>;umjuYSξ? jUW )\>+G`x8Jnۇ=T˳&Y+0tuK=%jiTfWVnjS ^[%g>0aۼ~@O Xh/۫k&S_! sڜ>1v&' e:*rz9]/6aݗdWYbt?'-go+ZV)h=sC;7 ]AO|2+WUWIU1\%rdbvAKUǗ/PlJ鹙*>톔2FoyA/?VۛWۿ_02epr yFm-rG9s Z_yDy!Wqm7z[FoSWx|EV|Y"IV{V%ٽ~|}Y{gY>D~r"WJtSavjbW ׯ+{,KUQpRw8NW;=@\e*q^w^ThG_xSl.v YO =x<{5UЙ[èzJι#囲$_p˖SDKQ?nw8yS.˲ZE[ƯYxS:ڔ%+.9zFn+=lS'HluU ͎&@EBxj~iV ]|Ж'wu[|ᱨ>NѺw⣎ cw?Q^8еz=%wB&.=0U켞 8'6i%ښӦ-$$_-o7͟`EB7WmsQJ&nmg6 -YȪ /Lᥟ)KVgx$m5)XW7WxoÔ5OQ;.T(=:K=Ka[]1ZArdEyy|yrb* 4O@Op{,/gq?9QȞ+{VYyy|9]ܒlJDJAYm͊լz"k(<%:Z\u&d{yFN\**=#/ 7 lBJeu)VV ٰJ_(dffrWU^!g JɑW${v9ښۻ9]9ݒW"RQVsbuYj)n"f>|Srr\=p\Y:PΜ$ْ?ؖk˲]L/?V77c;5?[NΜ_喲$I߭HH)8ozVugFaCdwr\n99RY4r(v"Tx~e,.;bDdZeCT+/ZANYkHZjo;#K3Iޱܕcey'݌h ;+g埼noJaY‹?T9O]%MYqSnONQo?{/ksdæҀoU:XmHNNNߐgh#E6Һ3~%73{ɿ䛸9\Wgdzh䟼<_Q[w붣5=j} )NpU?i'!S`SB>׆w'gv*ce~x*%[xM=$3w|6\"K?Ѷ"WW)b]Ttm][ϼT^z@@oc⪹evceLRQ)+!{+2R^Q5LM>ylNs==.މo;bB֛L7=E{E|EE֯PW-3׈:+ΐdWs1*/RQWU٬WztwE\4% ^$7kޟmbY2}']{x{cc˜o&9w=\%<]^?J7' \WnHJ.X^T_ImUzCswT| ٝsnTh@@2BA5wm̜;o{HX57"EBvwqkmU1Jv 8*݃@ 3Q-e/( y7̺NU8?#w(ۯ?+#/J._}ۚݰ/z9*zQ_gnl퟼nNP;F9vӮ|pԙ# HeeC@Us4YsӠCNU2>9rl3XٝYϿ;e&臭ɸzor>o{VLB:N_*+Tt,e ~oEW/ѿ?B3qZpMS Otpڍ[o^9O+ЧKh L] ;)ݥX;3IyGglߛ^x@OLmzEׯP~U4jkR"R"#P~C>A;n{7  9wr JZk /Jt(HϖBa埴|얒l}K7MU 5O5KݰR]s%m:IDATހl^,9r_͟rRFޅŀ2Dw-Va/,Ӏ?mt΅V{2AW.sbѴn[ɞC{ar:E9Uo=]s6sՠYmsUc7*^]~P{gzCOJξXuSR9i|4K%g7vm;c gcMNg5Vs*A9;v/ G.vhiP7;zLSzCG:Z^Fhe+k=`ce7O Q[A@fj{I͝U?RūVs2]0\nK*`|۴m R@@|E6L'sj3eT8{yYQs{;hzEW~z^hZs6r"dD[jo?Seuv#U_nlWd圓=`baU̍ F[+4mpmϊTs4%mTud I ; .cSm-6Xoi 5̺Vs| >7בgJu~ն$)l0l8KVX ( ,: bQysoΝo΢W՚k6V:@ڊYiT][TsiFרdVYm/4lsҍsNXZh ohǟR}4[]4ձ yܶl  6IXSrCK#ethk6w^_h@{7m >%c󎘠Nr;ung.sm* N7 T]>xمӮw'v{`soܔ4\K%=$GYwH8ϘL>Pfp[p2_*g#S gNʮzB_gl0ug F@@MW[)A,Gvk@N՛on[V{ d.נ*״X $3{O5Vw35^tw&@Cɖ+hOfwNOb VsWn}`` dͮKߐivϔl0'Gx*ǚ uULc&>+7ry͒QxoSJn&\A"kv3_[=t_m0C8"ʲ|el&+3ң2FEgI|<J@Usw=,( U9wsUxҕF v!t||@TL (F5.?xޕ % \TpFl xF;IPe~d}OV}m6v&J@q}K7"eIڻ3_J.y ױ]~=!)SU<>1.ˊW'ݮK{]yf?}NEh@] Ux4ȼ7}7:L#)b!oRܗPY)![=V<ڙW#~4.3<_U} RT̏R5㕳 }ҠkWYxF 2"aθPuw%x:m0Śk wG GΒdS#+2QSvOc -_`̂/[v~:hݴ0/H{9,r6\Zg?E#UtR?g/W.JQzIoҞPc5}bklmJ~Y*8>q#WꆓUuVM3}\~Whڞ3 WjY)s.) X𥳐WH2Md یZ@-^_1{o8GÆQgnŪq֞:yW<5μTX%lS3jIdKW2NCuw=H[ddֵ3/-Y|HH-wh}U2X+V`f7y',gN~lXow=\{-ϘI)YnZ|J-/R)cf{I)*g;jn٦ c\}Fᅳqoz֋rB6y{k9K˒͗%/ %BJe5)aW(fB Wf]Fֽdv9TwgVrx|]㊬Z+l> ^ 9KYO|<^ܛȲEFdjkRV굊n\/^6_ @!@@ưػ(A5        @@@@@@@@@         @@@@@@@@@/~IENDB`content-hub-1.1.1/tests/peers/exporter/exporter.cpp000066400000000000000000000035241456121157600224600ustar00rootroot00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include #include #include "autoexporter.h" namespace cuc = com::lomiri::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "content-hub-test-exporter"); } QString peerName, url, profile; if (a.arguments().size() > 1) peerName = a.arguments().at(1); if (a.arguments().size() > 2) url = a.arguments().at(2); if (a.arguments().size() > 3) profile = a.arguments().at(3); if (not profile.isEmpty()) { int ret = 2; ret = aa_change_profile(profile.toStdString().c_str()); if (ret != 0) return 1; } AutoExporter exporter; if (not url.isEmpty()) exporter.setUrl(url); if (!peerName.isEmpty()) { qDebug() << peerName; auto hub = cuc::Hub::Client::instance(); auto peer = cuc::Peer{peerName}; qDebug() << Q_FUNC_INFO << "PEER: " << peer.id(); auto transfer = hub->create_export_to_peer(peer); exporter.handle_export(transfer); } return a.exec(); } content-hub-1.1.1/tests/peers/importer/000077500000000000000000000000001456121157600200715ustar00rootroot00000000000000content-hub-1.1.1/tests/peers/importer/CMakeLists.txt000066400000000000000000000027201456121157600226320ustar00rootroot00000000000000# Copyright © 2014 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_executable( content-hub-test-importer importer.cpp autoimporter.cpp ) target_link_libraries(content-hub-test-importer Qt5::Core Qt5::Gui Qt5::DBus) set_target_properties( content-hub-test-importer PROPERTIES AUTOMOC TRUE ) target_link_libraries( content-hub-test-importer content-hub ) install( TARGETS content-hub-test-importer RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) install( FILES content-hub-test-importer.json DESTINATION ${CMAKE_INSTALL_DATADIR}/content-hub/peers RENAME content-hub-test-importer ) install( FILES content-hub-test-importer.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications ) install( FILES content-hub-test-importer.png DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/512x512/apps/ ) content-hub-1.1.1/tests/peers/importer/autoimporter.cpp000066400000000000000000000042411456121157600233300ustar00rootroot00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "autoimporter.h" AutoImporter::AutoImporter() { auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(this); } void AutoImporter::handle_import(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO; if (transfer == nullptr) { qDebug() << Q_FUNC_INFO << "Transfer null"; return; } connect(transfer, SIGNAL(stateChanged()), this, SLOT(stateChanged())); QVector items; items = transfer->collect(); qDebug() << Q_FUNC_INFO << "Items:" << items.count(); Q_FOREACH(cuc::Item item, items) { qDebug() << Q_FUNC_INFO << "URL:" << item.url(); qDebug() << Q_FUNC_INFO << "Name:" << item.name(); qDebug() << Q_FUNC_INFO << "Text:" << item.text(); qDebug() << Q_FUNC_INFO << "StreamType:" << item.streamType(); } } void AutoImporter::handle_export(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoImporter::handle_share(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoImporter::stateChanged() { qDebug() << Q_FUNC_INFO; cuc::Transfer *transfer = static_cast(sender()); qDebug() << Q_FUNC_INFO << "STATE:" << transfer->state(); if (transfer->state() == cuc::Transfer::aborted) QCoreApplication::instance()->exit(1); if (transfer->state() == cuc::Transfer::collected) QCoreApplication::instance()->exit(0); } content-hub-1.1.1/tests/peers/importer/autoimporter.h000066400000000000000000000024461456121157600230020ustar00rootroot00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef AUTOSHARER_H #define AUTOSHARER_H #include #include #include #include #include #include namespace cuc = com::lomiri::content; class AutoImporter : public cuc::ImportExportHandler { Q_OBJECT public: AutoImporter(); public Q_SLOTS: Q_INVOKABLE void handle_import(cuc::Transfer*); Q_INVOKABLE void handle_export(cuc::Transfer*); Q_INVOKABLE void handle_share(cuc::Transfer*); Q_INVOKABLE void stateChanged(); }; #endif // AUTOSHARER_H content-hub-1.1.1/tests/peers/importer/content-hub-test-importer.desktop000066400000000000000000000002721456121157600265270ustar00rootroot00000000000000[Desktop Entry] Name=Auto Importer Comment=Test Auto Importer Exec=content-hub-test-importer Icon=content-hub-test-importer Terminal=false Type=Application Keywords= X-Lomiri-Touch=true content-hub-1.1.1/tests/peers/importer/content-hub-test-importer.json000066400000000000000000000002611456121157600260250ustar00rootroot00000000000000{ "destination": [ "pictures", "videos", "documents", "music", "contacts", "links", "ebooks", "text" ] } content-hub-1.1.1/tests/peers/importer/content-hub-test-importer.png000066400000000000000000000305761456121157600256540ustar00rootroot00000000000000PNG  IHDRxbKGDHu pHYs  tIME,%%GtEXtCommentCreated with GIMPW IDATxwTt) KkL즘cl$X 0XAD@.s? fٝ}xΝgwnگ4)Ч@ @ @ @ @ @ @ @ @ @  @ @ @ @ @ @ 9R;A/cpp^U kЈ[=BA# fI䬨φ~6@zCow5V_أ.arx EC]/@ 'q | ?@ @#x@YYV즬w @'4_1>ArJvo@vdw(  w)޼QMkXŊ|:_V[sN b*kTq̓YYpo ev4y"ةxsaZp;_~LAEdmiTdK"KU;i++k͇>Ҙ4\/+ X.;DE5ذZVfQzm,|Ni6k 'moTz/TFt*o#]$J͖?5HZ,~+G 2 E$@YI]it p! 7?֗gwX]]rY6-WR(5#%GeYH ޕNoUtFevoo w}Vހ|g\IYL4֩L?{OtC!rP`rxƦRg?"˲=Ϙ)HKSpi=b|ܦ}#iĦu|]UuV8N*.[F6> "@=;{+r iװ<;w5KOTΑ>HϖWd6_Ik_?=uSii# U|5ݺR|I-O>H֚ ߢ+Ց,.P`bA,O(o72Gg ?áYwrmo}. k_eIV@RS7v{m=*Pt*:t}P翞6~a#@_Sڥ|^oȉ* ztpl%,!`؝ S=*P|UrdF @A womި.Txi~}zͰ,yݹt}BOݓsU}; ~ 6@߱!~Θ*TU>  7$fO;.U˟oͨ?0m won1k}xwf{ԌT_=/gZsgC 2>;sTwnzyJU) KYbBm8m$E7Ό(?d=m;:/j 3"|㦩SY*@Y ug?m6z"{.> yC|[zlIK]sP3G뽗eYVgg~ ! =u}Ml9r ׅy /'G`r>VQwV"!ahmQ p-1ÿOdPAaZ}v85~"kzjFY5$M`ۼ~@oZltz3#RULmh􎛖;. ^"+06UUW+; 0t\Jg]:=XJs{v{Nk7D+UM'+To|@Gy8B etz~x j@Uw ~:J*S;WNx惹F;5 ٪NPds5E8Ѳ|]M\n~9Oq3ҿqMߙ7kУF嵏(#$OU3(F/*>ً+ Ǘ/0lJ{Tv-ig 3 }:_:['yjwgNUwo86gd9 ᠂ᄂ77vƒO16x'QO=jzgNJp oO?PI{GӔH C*:5|'7zJθY ]"+)nVY]JƢ{dd/jk?DrU L[~)0^gɲ,E,Qx -|C%oK)m1pp<{}e4$URkQezYX*%ZFds.ހ嬪j܃3j'F  5i_~ ~"_pVPdf3G2F}v]ޡ:NEw,Ra(VR)޸Nf%6 v*HVBr8esy/_#9IY\ntLSYyjFSsy*ԎU轗>(Gϱ򍞜3]3J22-mtnݿV5SShJ2Ԏ勌)aٔTӯϓ N 6w'osܠEO Td=d TWrNC{cΣ)٭iPFGg`[ Vܫˑ0sҚvݞD8X^!?@}J.VhY>\mO-[Qeen3 eD\ ?=Ndpٌwd@drwƦ[Dܛ3d _`@w$C#?/߇=#'f{O:%'v^3zgyFLiMoiT ͟*i]/΁Ô7p(W(s֯:*-:Э-Ka;]3ZArVTY>PRټ~<><^\)S2U2ޢD[mM7+b+V]LT=p?XQOby9ݒ%%R"d^9~>>6W6j٪Dk+qk?QdB%[~);C@ @ @ @ @ @ g_xNoe,9`vo_܃F5h!ZwhdlrVTgC?KzG"Y;P+w/k09~!Ϯb z'zvƟ @ rV\U5rV R*9UQT*{^Bdds:es%KGeEJFò:oWybY"*0>I4B>^ΪrVQOv_@;dE²6+޸^:6UdX6+ݟ+g9Y_[[^>7l.$ѐHhXߦu[ȧelr#Ir \5 dd$MV8dKVsra(cE͗ _@ڭArU ں'GAeݺ9][VBhX-[oǺ֭"d[_i2d&[Y}@yE WHkF]3RΪ!rT,Rt|YuRw_M)gaI-*lxV?dǖ(];V.arVTY/m[l E>y_]Vhݨ vSw.rwoa?y|I%tw-Ϩ<=t9n7׊E[Bѵ(j‹QdGYV{r}L[^yFL>A宬qq~QOޥ۸;R>?u[,;s(fI._ryLwTyFLv^DW、>Go;awpRz+Rd_1u3U ;n<#&۷+z|.@//g;~|=tNWFa׻/ӯ;*x~\Xo^DS}o=&!GV/Vc%YMJOG\,精zcuj}NuyTE2b<5O[){˻49<+>҆g#1=uo9Oq(V_#˸w*]X12r#P /V[>|U\~J/X x'w* ;nJU)#])A!w w(xU^g)Mgos8HۗJRYX m VG/2KU?J{r3Y a<Õ ĶOsnsՌRg#]' 2Mr`:v9ٿu8T~ŽrW&٦؆| +a 6*=grOkys84G _egmnP[؆Պ7o]ښ {y(,k@ {؎_Rd'L}ΗBeZ]O IDATMw:^~Lw_ڦ's_~LͿ9??ǪRCNKS6z>nfeWAΗ#|v{R-6?^\/U~'(+MSq},k_ 3b|c3fUw^]' O$r6U|EF(٧jyX1ݰFuNɹZ#ةƿ;ejÅf~ (<|wW>Tq}ry{krnY:IiOWp-|{A])o5Oʚ^]:%k凨ОyGN{x͟Up)f7xzLodp5m0:o{#}}b |ǥJ:M3|B/yr׌вx|Ƨ]p=]ܥV,~ڥkpJϑWYGrg5s,[nއ5 -~CƤ@%_O.+:s7OE}xo{r מN| WIe0Ton d<ϲeV6WcM8[TM͍IX@ %Z6͗y3ԥe&L.ZcC]Qj3ue<ٷ]Хp(i?&7ZK [ v 3SgdG6deo ^vYsG"cY1Pg7c9\7O||nF0@*Wu8K{xúόM&Hd<5(Rxݟo<e<D|3,qJҿJfh1d=l/$Ɨ\{ѵlD-0WP,i7r7Odg-,Ʀe㊥p ٪5#o>ny33ҨD3'~ey2\9! /My-?@%δYnW`ƁƦY! @G8%g yGN26Go]dl>Tx)iN5[-3IJ*9Z u#"+jA>E]"[:n ˍN2K,_)\RM|;ɀ$ i+VwAB 0z+[QY\nlz5K7xyJnGY)a*>J{*XW3:O&γMϳ4yy 75|f6z8A%쓷 ݾ=)3TveZwnO`lvʯܣ'wrU!ٝN.bQu 70}o#K٥T}*sd/w?3n0:oVgc'ޝR/y =[V[3 7FhU~}WI/?'"UUzu*=:W}ȧY񑢫+,UVK6GR;v'tdqm=%:|U\uvZIweT|hGL$YBխfPZ 5yBImy* ]~|PݏyaC;t\χ^}ڞG i/Iy3 /zKw۰FVWLϗjx"gܽ0+P=WkC7|wj9'hM'K9rCp5o̼2VI@Ns[ƓanƒxaFd<5~o 'J5:m6e|9rWrC;swͬ#KS9S[/dܘEV/ֆKTY떫}Y$ÎyЇDWpѲl̽f5Cmx6=PxKѕHz_|<1W6\q:>D$5Kx%Z xV,л/i鞫$Bj}.?uڟ[ T-DjExaYڻA.=',M)] 8HwrwooWl68:G@v_l<})*٪؆5կRtrDc]NZy{|_gD9< E,Q7]UdɻJ:l ;bUY#g@9K˞_,+{?Y񨒱vYJ6)ib*EV,T ! N @ @ @ΰگ40@ @ @ @ @ @ @ @ @ @ @ @ @ @+JRIENDB`content-hub-1.1.1/tests/peers/importer/importer.cpp000066400000000000000000000020101456121157600224270ustar00rootroot00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include "autoimporter.h" namespace cuc = com::lomiri::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "content-hub-test-importer"); } AutoImporter importer; return a.exec(); } content-hub-1.1.1/tests/peers/sharer/000077500000000000000000000000001456121157600175145ustar00rootroot00000000000000content-hub-1.1.1/tests/peers/sharer/CMakeLists.txt000066400000000000000000000026721456121157600222630ustar00rootroot00000000000000# Copyright © 2014 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_executable( content-hub-test-sharer sharer.cpp autosharer.cpp ) target_link_libraries(content-hub-test-sharer Qt5::Core Qt5::Gui Qt5::DBus) set_target_properties( content-hub-test-sharer PROPERTIES AUTOMOC TRUE ) target_link_libraries( content-hub-test-sharer content-hub ) install( TARGETS content-hub-test-sharer RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) install( FILES content-hub-test-sharer.json DESTINATION ${CMAKE_INSTALL_DATADIR}/content-hub/peers RENAME content-hub-test-sharer ) install( FILES content-hub-test-sharer.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications ) install( FILES content-hub-test-sharer.png DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/512x512/apps/ ) content-hub-1.1.1/tests/peers/sharer/autosharer.cpp000066400000000000000000000042251456121157600224000ustar00rootroot00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "autosharer.h" AutoSharer::AutoSharer() { auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(this); } void AutoSharer::handle_import(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoSharer::handle_export(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoSharer::handle_share(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO; if (transfer == nullptr) { qDebug() << Q_FUNC_INFO << "Transfer null"; return; } connect(transfer, SIGNAL(stateChanged()), this, SLOT(stateChanged())); QVector items; items = transfer->collect(); qDebug() << Q_FUNC_INFO << "Items:" << items.count(); Q_FOREACH(cuc::Item item, items) { qDebug() << Q_FUNC_INFO << "URL:" << item.url(); qDebug() << Q_FUNC_INFO << "Name:" << item.name(); qDebug() << Q_FUNC_INFO << "Text:" << item.text(); qDebug() << Q_FUNC_INFO << "StreamType:" << item.streamType(); } } void AutoSharer::stateChanged() { qDebug() << Q_FUNC_INFO; cuc::Transfer *transfer = static_cast(sender()); qDebug() << Q_FUNC_INFO << "STATE:" << transfer->state(); if (transfer->state() == cuc::Transfer::aborted) QCoreApplication::instance()->exit(1); if (transfer->state() == cuc::Transfer::collected) QCoreApplication::instance()->exit(0); } content-hub-1.1.1/tests/peers/sharer/autosharer.h000066400000000000000000000024421456121157600220440ustar00rootroot00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef AUTOSHARER_H #define AUTOSHARER_H #include #include #include #include #include #include namespace cuc = com::lomiri::content; class AutoSharer : public cuc::ImportExportHandler { Q_OBJECT public: AutoSharer(); public Q_SLOTS: Q_INVOKABLE void handle_import(cuc::Transfer*); Q_INVOKABLE void handle_export(cuc::Transfer*); Q_INVOKABLE void handle_share(cuc::Transfer*); Q_INVOKABLE void stateChanged(); }; #endif // AUTOSHARER_H content-hub-1.1.1/tests/peers/sharer/content-hub-test-sharer.desktop000066400000000000000000000002621456121157600255740ustar00rootroot00000000000000[Desktop Entry] Name=Auto Sharer Comment=Test Auto Sharer Exec=content-hub-test-sharer Icon=content-hub-test-sharer Terminal=false Type=Application Keywords= X-Lomiri-Touch=true content-hub-1.1.1/tests/peers/sharer/content-hub-test-sharer.json000066400000000000000000000002531456121157600250740ustar00rootroot00000000000000{ "share": [ "pictures", "videos", "documents", "music", "contacts", "links", "ebooks", "text" ] } content-hub-1.1.1/tests/peers/sharer/content-hub-test-sharer.png000066400000000000000000000340521456121157600247130ustar00rootroot00000000000000PNG  IHDRxbKGDHu pHYs  tIME tEXtCommentCreated with GIMPW IDATxwU-3nlvlzB*$xHQ" <$bPQAޓJzng?Dzvy^y!{sf|g9M%&        @@@@@@@@h        / _4װbw}*,Y5NF؝+jjN@,! ckwri  zCFEʱ#ch9^D#ix<<)2r6^<`Udsn;;@v' .g5fjC(*%BŃJ{mٮhc" 5 o^)ђQM(kdUdVLb9r e3=4hDhXpPNźv(٦hsM4( m-e_ pew|{&s^Fi˕$>[Xz^+_-O1=>X=y9?) G#ԬWhr-UpԬ]ۦÊ4l0awȿ߱;l7"ۛSMw9;Vw@;ޢ3yY%:[SnONu[(b7cR.8֐o!)=hTe/SdS"eqR?_Ar 2ﶛn?]yhǒݲéӯPqߕݙ:)~ l.r3gz eUzbGMN> }&>3Mw'y&ְ߼ }MPůL_kb@x<&|DJn3He= Gh *!9SwفrJ._$J0Ur"81(ÛmimP 8y/GzN/]i&;vJ.E)5\`y!ݔ~өAΊ伡wLm$`WcӜ9*jk_rKҦ>\{9\k|eiQXW+؟̡#3.']$cxKJH9Դ{hr1vh|5)odl*<*K2GN9:}vs}˷2GMQxSn{fA<Wp}y6PabJٝy/l6Z2>^Ɛ/,}I); 's oZhS<#4[}=fߟʥj*5v\TM@ o6IlSMF~h}Z-}:Ws?~51+S૘{I~~sm3ȅѤЎ&ּ.Tt-2ˆ[Y^P>aXZapJp hfuoVד*a QsQ9Zk|N32jۻ[tpv>*f|%bw:?Duξ-kY5HZgE*!@dݮcϳHk/[5z:u!ooMv< .ߞ,x4NWf}\I-w\ޥ/Z](1[ ! `p;k/,.Q˒KGZVtP 7P9^|l [O.Q<w9D,OQgȲLvrΧ$e;c5 {FQl>}6PcITn͛Î՟+O n\xkCҶ5hmՖ)T]dz!|6y6\cvƈ }L-T?QՒ*UzS+q3d[׾4l&V~+^W+isऋUyϻ*~y%9 vTX˨ve:Kqqy䟀f+Q՟Weg idEp}IiQ>I?˦'w>GGe|uO˧dS-z=DQ+ vMWɥw*8 raivׯϷǖL׻'_UZ! *{? qGfg07uZlpylU.~Gg]#3 [vtWvwnŢ>=?ܕq<*8U.zS}aW L%.ZOܛ22E*|K kOR?P۟R˙w)9,~ sE,-k)՞2ut <&jvs|j ށ -G=o?24g= w<Нr[x)~ݷߜ!BWޣD XwwGRjg~{)wY))K@cU{^jBjj N_ G>;ݹc˖ܽUIy3'_`X -'Q ) G-8K9,?o!owXLvâ3)E0X">mVQXV[|ڲf@5|#لe'LM,-=e+u=y;OW}C_IW'շF;eB6V<i:p 0غ2r]})!rˋM 5,#d0^V0Utu䚼w7䚴 ϻQUTZe,Qo$Lhc o]q)52jUEZPv MlJwxMI)5r*~kQs-28awU\wg\̕3?  5a:X`zz^_I4yGiYYѾ>+hVϪ7?TͧTBss<3ӶK$> O8_FqEҾ3a<fjȹ7*a›V*q5jWS.%"a^<>=~>s,)shCGʨQ>Bvpk&6VWpʙwrx< .E( W۟ 8^N!5K$CT~>\WQpۊmREpH6ܹ}r |2GLk2>Z9r]4h_~oMW SIbr(j͝_n{dGMVU<Wa›W+m"?TF:ZV"1pɑ/Gaʱr!GYPbi7g{}^yGr 'Wzo`S`+zR]Փ8ѿ Ȧy`=@Ji# m\Byq EnߐQw,4dLˮM~Sҗ</;?;u>skZ3wtm;Ă|wxr\ꞼUoHzUHvl>EUou=L6 T^fYy-R9A#+OT{/u=x5nzZ=Vߑ,~mRhpPۯ9E-Nm|oYo}ш=M#'QGcQynE_M^hڦWh{sJ˕*>m UvU{f }]xe }iШYU3 &.X{\T)umZlLM teժ!56ժ})vo$*s+ڶp_{Jm\TͿLo)_|Ww@+^tI\.՞5[KCjmcڲfpۣS4 "!Vn>87C9}C|]9V3I oA:Xiq_M{WI=@'A_xHo<%EÜ@o3ekrb= ׬Wx/Sh2-кLg>rMC?<;={A>XcMaw|s1|u7j7lWpk~Sd JJ9KɑW$+#-ᒢ%"a%"!݊w)ѦXGMu6|Hc"u-j!e2l#,*{N4%!Ӑ)U"V"RC6;mަHVE7+ybν'2LQ6\ΒaGT]fEkپUkڰ\6/!&    )Tf8Ucwr̪9ylrV~4Џ˥2+~~ap{i |VvAC@ Rkd +LC CưQr$sx9YX*ǐ2nLlKERY͊7+XpzEj+ڴM6H_6.ϴ}>OnއtI7|XGuK\+_WhR4LɨNoޱ2ʓ}Oi;mA>ןPVNs/yg/gA/> gz{P<+[~;8HCM%hA\Tt ; _)ִ͒2ll6^_4|?m_ i7K07t  iQ̫ewyt&U ϺF'\zt*~4VXc |Θ_ KckŸeL}z^~xww̜.zz/Spe2ʨ:u= yHrQu7g\ O.OFթӹ@ys?W7O@Zc"$xnoʏ\H:E)֨xo4$Ôpɑ[(GA2*1^2ˆ }ߧs/ rCWcR4wFhD@mnۨЧR?(o+p| 7G1-/S뢫eKX|VO-QSKd/?L\Hs<D){[oWﯲtx{:?_tjSs* K+^ULЇvM?"[רպzsBұ@1,[<6(u6hM۾pT5vdT1Z"<~=>)S<T"T"ԫXkmڦHݦYn8J ] ,&GP9((#@B9re3ݒӐpI]hQ oYk̜Q^ʪdVɑ_r dl'al+)cJuPUіzEmݹmۨ𶍃v~UW33MFE㢨\vOv_;*Qe54(yBxG '{>ӸՖxyu8Qޙ3e_ Mug.ݡʿ); l\cU=IFXU,0w$iHG^.Uܿ޾Ue/)E>SD;M.==U,)}u8$Ô×+ lݠֵ mZ7ϧ(.c04dV|v6pWד$etXQfH?/xem9:ޯ~9-3JdB6L{\yvK 3- '} ,E6)i=q<{^r.͉vPTcwr=yioVSE7 5M'g+l:,n!fiWۢkaߓYVmںV;ܬOeu{RnVUANu[(b@C`׳jǒR?$3]QP)ȷLԎ"EwlR8FLPُejBEj #&7w|skB%\iȹ7 "dvӭ?Xr:S&8iH/_>.{A}odۆh骸Yʻ^V~2WT~×nПK!e(Y4z,-/oѨ>Ѝ۟1b|_f}lLξVEܦSr2LSŝ/(g1)UGϤ䞶N ox6E*or }P!'ST{q{ܣ4dHɺ:Tv}$' @uY|mrMC8gAol9}"?mCZoTݟe~޴ҒsJ._4oIDAT4|0Ur"8 E6YaK7UCOS9t/5fţѴl##ae>b#T?HAT%=m_N N&gV~+}H9 {)ALZXTцӶ}}mV}; 9xNrV$AL%wphU N"鷚wg]-}ɻ ?H×7eџ`J+OsJ8xw6T=d;^}U-y_C.q4|j7ux?`oMXw"aO%>&5UTp$&GJQUW5O+gepBO$.@$^ܓݮo|/7,E,sȌh.5:g=n/EF%Wqk7ND_r?!9wmHue>=RAȜA0UxU$'UKPU55r/dF 'gMpysDVuvs}ƵoCeIbhZyԇu<q8C?PRsͬu?G<RhJ-Ux*E6+XD[`l.yEr=q{⬯^"ܣQ4TzKMt*I΂.Ej7*}bw޺]u)* **Jl)7GBeT{Ly+7'9C܃[=Ej)RYѦѢDWxLvO6Wv_"%s3)T_}Ig,PO޴JѦڝLjÐݟ'|ܓf˷LOTMcr;̔ڦXW=<aP$+WDW)+F_;eo|佖[vN[hTM+xU/ShrEYӔo%rU|=urG/6P8K,mgGUK˙[hmHj:%:۾^.sM#USĀA0.Ŕ}p'-u<{l[+N܅g_|~15믞oeUYV^<Qu+WHmZTK_& /G0:z^QoT*~K޹Gem;ZCֆIu%[ApKwZ~NC}KX-'(nƮt@ ,K_T݅*^?Oe? ϾV-WhRsfXgx[lnSK?0ekQR=)Im?*n) 太tE^|qd8q ްջvuOKn%ߣUrJزcldYYŒkxk ϗQ1ʲ< N1b? 8Z|9jTpʥu"_|Z~+EK݃|{Q4Tƈ 2RΒJ9)ݟ'9;R4D4D4xomu)֤hS"u޲F?mL] !ݺ\nrrVk@i%ONktr SނQΡߒßۚ{\/Y[u`osջ3c?y&ϑkL9sv!$)Pwѭz k %yoA~GiFmKnVAPS!ݨ7۔}aQg'e#{i@v>X8׾$괨7c{_=U9~KKWCλQ?i<^&wns*8Ry8[tIv w2Z7X噱v@g2#ֽ7ee5pL:Ago6'z^~X=/?,?Oy)7}6)Ԑ q ϺF"}x98uw|1rr[O;uٺ6NH{53aw{V.+enyxt/ n lY;/Sͷ&eՊlz|Qt7Tv_3} `||uV?R3|,xO'o%_z|@c2t'O{U{,á~jCi$?bw, Gpv]OeAw]BI5v$I*82"[p ;&VTw]RҾ=,E,aYYYx' 9wjɩ n\#idi3i6 Ma7;A^T/j؝/nԴ"H&Xw¬ mY؎Fv4+ݮD$D$,.}rQP,gq*cˎ&#$Sfz^~D9`ilykyu˴㯿ڹLlIR,.Ţ{oݮOmt>;m KtO,yc1ߏb+W)қ [NWj 6,ji<-[/Pc0HfK3Ѩ `XG`/#'ZVVKhtVYZ{|$aխD4LZi`]O-ADxj-\ʷ4*ɑ_l}WzZ*\h4h$"6Zw`w]A82Af@x/rk'*<*h̕Q[mwmífnNxG~Fz}c~\;`v*|A%?W$\u9z{f}ؾ3h4\b!k(ZxSʜ@h &?g*~&7gphJGvõt%,Y?J87oUvrK@2;^v7{\|Zŗ/wQ90k8PC̲\~NXѺd>xZz>/|9*!P N Yd=ˣyǨ{4u*ɟ{B*a{v<QM1,9U[tE6Yww{UzrMæi~0Ls&z$dkҞ*T^`K6ǫL[vo9;W,}l=Gp䵵gLy&ԐsoThr7Th k)ծxO]JD²y|{}Y>Rj9QQ-| j(@JHw\7Io?#]o}Xb90sďT>"_[UvÔg,y3X!Jtҿg=y臘Tp?Ilz7 wOdTX@zTiWӓ?P//T<̜0@4NC,Zxu%Uh lۤ7pTy9YQ׮R+wWPÿSgq%}]OZ7xm>8kϦ '=yG_fUx*6Rx*kgW_%BD6yD;]v1imP[OGw.뫁5ֲȻrOGY6|`FE7+\^)R[?P+e͑9r12J*,&GArf9 ٝѨ)ш^݊zt+ӡX{;ooQAEJj 6. * * Authored by: Ken VanDine */ #include #include #include "autosharer.h" namespace cuc = com::lomiri::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "content-hub-test-sharer"); } AutoSharer sharer; return a.exec(); } content-hub-1.1.1/tests/qml-tests-ubuntu-compat/000077500000000000000000000000001456121157600216445ustar00rootroot00000000000000content-hub-1.1.1/tests/qml-tests-ubuntu-compat/CMakeLists.txt000066400000000000000000000035251456121157600244110ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . set(TEST tst_QmlTests_UbuntuCompat) set(XVFB_CMD xvfb-run -a -s "-screen 0 640x480x24") add_executable(${TEST} ../qml-tests/tst_QmlTests.cpp) find_package(Qt5Quick REQUIRED) find_package(Qt5QuickTest REQUIRED) target_link_libraries(${TEST} Qt5::Core Qt5::Qml Qt5::Quick Qt5::Test Qt5::QuickTest) add_test(NAME ${TEST} COMMAND ${XVFB_CMD} ${CMAKE_CURRENT_BINARY_DIR}/${TEST}) set_tests_properties(${TEST} PROPERTIES ENVIRONMENT "QT_QPA_PLATFORM=minimal;QML2_IMPORT_PATH=${CMAKE_BINARY_DIR}/import;APP_ID=com.some.app.for.testing") set(out_qml_files) file(GLOB qmlTestFiles RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/../qml-tests ../qml-tests/*.qml) foreach(qmlTestFile ${qmlTestFiles}) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${qmlTestFile} DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/../qml-tests/${qmlTestFile} COMMAND sed -e 's/Lomiri.Content/Ubuntu.Content/g' ${CMAKE_CURRENT_SOURCE_DIR}/../qml-tests/${qmlTestFile} >${CMAKE_CURRENT_BINARY_DIR}/${qmlTestFile}) endforeach(qmlTestFile) add_custom_target(copy_qml_test_ubuntu_compat_files_to_build_dir DEPENDS ${qmlTestFiles}) add_dependencies(${TEST} lomiri-content-hub-plugin copy_ubuntu_compat_files_to_build_dir copy_qml_test_ubuntu_compat_files_to_build_dir ) content-hub-1.1.1/tests/qml-tests/000077500000000000000000000000001456121157600170435ustar00rootroot00000000000000content-hub-1.1.1/tests/qml-tests/CMakeLists.txt000066400000000000000000000035131456121157600216050ustar00rootroot00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . set(TEST tst_QmlTests) set(XVFB_CMD xvfb-run -a -s "-screen 0 640x480x24") add_executable(${TEST} tst_QmlTests.cpp) find_package(Qt5Quick REQUIRED) find_package(Qt5QuickTest REQUIRED) target_link_libraries(${TEST} Qt5::Core Qt5::Qml Qt5::Quick Qt5::Test Qt5::QuickTest) add_test(NAME ${TEST} COMMAND ${XVFB_CMD} ${CMAKE_CURRENT_BINARY_DIR}/${TEST}) set_tests_properties(${TEST} PROPERTIES ENVIRONMENT "QT_QPA_PLATFORM=minimal;QML2_IMPORT_PATH=${CMAKE_BINARY_DIR}/import;APP_ID=com.some.app.for.testing") # copy qml files under test to build dir set(out_qml_files) if(NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}) # copy qml test files to build dir file(GLOB qmlTestFiles RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.qml) foreach(qmlTestFile ${qmlTestFiles}) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${qmlTestFile} DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${qmlTestFile} COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/${qmlTestFile} ${CMAKE_CURRENT_BINARY_DIR}/${qmlTestFile}) endforeach(qmlTestFile) add_custom_target(copy_qml_test_files_to_build_dir DEPENDS ${qmlTestFiles}) add_dependencies(${TEST} copy_qml_test_files_to_build_dir) endif() content-hub-1.1.1/tests/qml-tests/tst_ContentHub.qml000066400000000000000000000074611456121157600225310ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ import QtQuick 2.0 import QtTest 1.0 import Lomiri.Content 1.3 TestCase { name: "ContentHub" function test_default_import() { var transfer = sourcePeer.request(); verify(transfer !== null, "No transer Object returned") } function test_select_for_import() { var transfer = sourcePeer.request(); verify(transfer !== null, "No transer Object returned") } function test_export_request_pictures() { var filePath = "file:///foo/bar.png"; var transfer = destPeer.request(); transfer.items = [ resultComponent.createObject(test, {"url": filePath, "name": "test"}) ]; transfer.state = ContentTransfer.Charged; // This shouldn't be necessary, but without it we compare the results to fast ContentHub.exportRequested(transfer); compare(test.exportTransfer, transfer, "Transfer object not correcty set"); compare(test.exportTransfer.items[0].url, filePath, "Transfer url incorrect"); compare(test.exportTransfer.items[0].name, "test", "Transfer name incorrect"); } function test_export_request_text() { var transfer = textPeer.request(); transfer.items = [ resultComponent.createObject(test, {"url": "", "name": "test", "text": "some text"}) ]; transfer.state = ContentTransfer.Charged; // This shouldn't be necessary, but without it we compare the results to fast ContentHub.exportRequested(transfer); compare(test.exportTransfer, transfer, "Transfer object not correcty set"); compare(test.exportTransfer.items[0].text, "some text", "Transfer text incorrect"); } function test_export_request_text_and_url() { var transfer = textPeer.request(); transfer.items = [ resultComponent.createObject(test, {"url": "http://www.lomiri.com", "name": "test", "text": "some text"}) ]; transfer.state = ContentTransfer.Charged; // This shouldn't be necessary, but without it we compare the results to fast ContentHub.exportRequested(transfer); compare(test.exportTransfer, transfer, "Transfer object not correcty set"); compare(test.exportTransfer.items[0].text, "some text", "Transfer text incorrect"); compare(test.exportTransfer.items[0].url, "http://www.lomiri.com", "Transfer text incorrect"); } Component { id: resultComponent ContentItem {} } ContentPeer { id: textPeer handler: ContentHandler.Destination contentType: ContentType.Text appId: "com.some.dest" } ContentPeer { id: sourcePeer handler: ContentHandler.Source contentType: ContentType.Pictures } ContentPeer { id: destPeer handler: ContentHandler.Destination contentType: ContentType.Pictures appId: "com.some.dest" } Item { id: test property ContentTransfer exportTransfer property int numImports: 0 Connections { target: ContentHub onExportRequested: { test.exportTransfer = transfer; } onFinishedImportsChanged: { test.numImports++; } } } } content-hub-1.1.1/tests/qml-tests/tst_QmlTests.cpp000066400000000000000000000013041456121157600222130ustar00rootroot00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include QUICK_TEST_MAIN(QmlTests) content-hub-1.1.1/tools/000077500000000000000000000000001456121157600151105ustar00rootroot00000000000000content-hub-1.1.1/tools/CMakeLists.txt000066400000000000000000000012601456121157600176470ustar00rootroot00000000000000# Copyright © 2015 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine add_subdirectory(send) content-hub-1.1.1/tools/send/000077500000000000000000000000001456121157600160415ustar00rootroot00000000000000content-hub-1.1.1/tools/send/CMakeLists.txt000066400000000000000000000026401456121157600206030ustar00rootroot00000000000000# Copyright © 2015 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories( ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/src/com/lomiri/content ${LOMIRI_LAUNCH_INCLUDE_DIRS} ) add_executable( content-hub-send exporter.cpp autoexporter.cpp ${CMAKE_SOURCE_DIR}/src/com/lomiri/content/debug.cpp ) target_link_libraries(content-hub-send Qt5::Core Qt5::Gui Qt5::DBus) set_target_properties( content-hub-send PROPERTIES AUTOMOC TRUE ) target_link_libraries( content-hub-send content-hub ${LOMIRI_LAUNCH_LDFLAGS} ) install( TARGETS content-hub-send RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) install( FILES content-hub-send.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications ) install( FILES content-hub-send.url-dispatcher DESTINATION share/lomiri-url-dispatcher/urls ) content-hub-1.1.1/tools/send/autoexporter.cpp000066400000000000000000000042151456121157600213100ustar00rootroot00000000000000/* * Copyright (C) 2015 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "autoexporter.h" #include "debug.h" AutoExporter::AutoExporter() { auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(this); } void AutoExporter::setUrl(const QString& newUrl) { url = newUrl; } void AutoExporter::setText(const QString& newText) { text = newText; } void AutoExporter::handle_import(cuc::Transfer *transfer) { TRACE() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoExporter::handle_export(cuc::Transfer *transfer) { TRACE() << Q_FUNC_INFO; if (transfer == nullptr) { TRACE() << Q_FUNC_INFO << "Transfer null"; return; } cuc::Item item; if (!url.isEmpty()) item.setUrl(QUrl(url)); if (!text.isEmpty()) item.setText(text); QVector items; items << item; transfer->charge(items); connect(transfer, SIGNAL(stateChanged()), this, SLOT(stateChanged())); TRACE() << Q_FUNC_INFO << "Items:" << items.count(); } void AutoExporter::handle_share(cuc::Transfer *transfer) { TRACE() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoExporter::stateChanged() { cuc::Transfer *transfer = static_cast(sender()); TRACE() << Q_FUNC_INFO << "STATE:" << transfer->state(); if (transfer->state() == cuc::Transfer::aborted) QCoreApplication::instance()->exit(1); if (transfer->state() == cuc::Transfer::collected) QCoreApplication::instance()->exit(0); } content-hub-1.1.1/tools/send/autoexporter.h000066400000000000000000000025661456121157600207640ustar00rootroot00000000000000/* * Copyright (C) 2015 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef AUTOEXPORTER_H #define AUTOEXPORTER_H #include #include #include #include #include namespace cuc = com::lomiri::content; class AutoExporter : public cuc::ImportExportHandler { Q_OBJECT public: AutoExporter(); public slots: Q_INVOKABLE void handle_import(cuc::Transfer*); Q_INVOKABLE void handle_export(cuc::Transfer*); Q_INVOKABLE void handle_share(cuc::Transfer*); Q_INVOKABLE void stateChanged(); void setUrl(const QString&); void setText(const QString&); private: QString url; QString text; }; #endif // AUTOEXPORTER_H content-hub-1.1.1/tools/send/content-hub-send.desktop000066400000000000000000000002531456121157600226110ustar00rootroot00000000000000[Desktop Entry] Name=Content Hub Send Comment=Content Hub Send Exec=content-hub-send %U Icon= Terminal=false Type=Application Keywords= OnlyShowIn=Old X-Lomiri-Touch=true content-hub-1.1.1/tools/send/content-hub-send.url-dispatcher000066400000000000000000000000531456121157600240640ustar00rootroot00000000000000[ { "protocol": "content" } ] content-hub-1.1.1/tools/send/exporter.cpp000066400000000000000000000070751456121157600204260ustar00rootroot00000000000000/* * Copyright (C) 2015 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include #include #include "autoexporter.h" #include "debug.h" namespace cuc = com::lomiri::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "content-hub-send-file"); } /* read environment variables */ QProcessEnvironment environment = QProcessEnvironment::systemEnvironment(); if (environment.contains(QLatin1String("CONTENT_HUB_LOGGING_LEVEL"))) { bool isOk; int value = environment.value( QLatin1String("CONTENT_HUB_LOGGING_LEVEL")).toInt(&isOk); if (isOk) setLoggingLevel(value); } std::string handler = "export"; QString url, text, appId; gchar* pkg = NULL; gchar* app = NULL; gchar* ver = NULL; /* URL handled looks like: * content:?pkg=foo&app=bar&ver=0.1&url=path&text=text * Only pkg is required. */ QUrlQuery* query = new QUrlQuery(a.arguments().at(1).split("?").at(1)); TRACE() << "Handling URL:" << query->query(); if (query->hasQueryItem("pkg")) pkg = g_strdup(query->queryItemValue("pkg").toStdString().c_str()); else { qWarning() << "PKG is required"; return 1; } if (query->hasQueryItem("app")) app = g_strdup(query->queryItemValue("app").toStdString().c_str()); if (query->hasQueryItem("ver")) ver = g_strdup(query->queryItemValue("ver").toStdString().c_str()); if (query->hasQueryItem("handler")) handler = query->queryItemValue("handler").toStdString(); url = query->queryItemValue("url"); /* Don't support file transfers via url-dispatcher * it would allow unconfined access to any file simply * by constructing an evil file url */ if (url.startsWith("file")) { qWarning() << "File transfers are not supported"; return 1; } text = query->queryItemValue("text"); TRACE() << "URL:" << url; TRACE() << "PKG:" << pkg; TRACE() << "APP:" << app; TRACE() << "VER:" << ver; TRACE() << "HANDLER:" << handler.c_str(); appId = QString::fromLocal8Bit(lomiri_app_launch_triplet_to_app_id(pkg, app, ver)); if (appId.isNull()) appId = QString(pkg); if (appId.isEmpty()) { qWarning() << "Unable to determine peer"; return 1; } AutoExporter exporter; if (!url.isEmpty()) exporter.setUrl(url); if (!text.isEmpty()) exporter.setText(text); TRACE() << "APP_ID:" << appId; auto hub = cuc::Hub::Client::instance(); auto peer = cuc::Peer{appId}; if (handler == "share") { auto transfer = hub->create_share_to_peer(peer); exporter.handle_export(transfer); } else { auto transfer = hub->create_export_to_peer(peer); exporter.handle_export(transfer); } return a.exec(); }