├── .gitignore ├── .tx └── config ├── LICENSE ├── Makefile ├── README.md ├── appinfo ├── app.php ├── info.xml └── routes.php ├── css └── navigate.css ├── img ├── mood.svg └── mood_black.svg ├── js ├── mood.app.actions.js ├── mood.app.elements.js ├── mood.app.js ├── mood.app.navigation.js └── mood.js ├── l10n ├── .gitkeep ├── af.js ├── af.json ├── ast.js ├── ast.json ├── ca.js ├── ca.json ├── cs.js ├── cs.json ├── da.js ├── da.json ├── de.js ├── de.json ├── de_DE.js ├── de_DE.json ├── el.js ├── el.json ├── en_GB.js ├── en_GB.json ├── es.js ├── es.json ├── es_MX.js ├── es_MX.json ├── eu.js ├── eu.json ├── fa.js ├── fa.json ├── fi.js ├── fi.json ├── fr.js ├── fr.json ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.json ├── is.js ├── is.json ├── it.js ├── it.json ├── ja.js ├── ja.json ├── ko.js ├── ko.json ├── lv.js ├── lv.json ├── nb.js ├── nb.json ├── nl.js ├── nl.json ├── pl.js ├── pl.json ├── pt_BR.js ├── pt_BR.json ├── ro.js ├── ro.json ├── ru.js ├── ru.json ├── sk.js ├── sk.json ├── sl.js ├── sl.json ├── sr.js ├── sr.json ├── sv.js ├── sv.json ├── tr.js ├── tr.json ├── zh_CN.js └── zh_CN.json ├── lib ├── Activity │ ├── Filter.php │ ├── Provider.php │ └── Setting.php ├── AppInfo │ └── Application.php ├── Circles │ └── Broadcaster.php ├── Controller │ ├── MoodController.php │ └── ToolsController.php ├── Exceptions │ └── HttpRequestException.php └── Service │ └── HttpService.php └── screenshots └── 0.2.0.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | \.idea/ 3 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | lang_map = bg_BG: bg, cs_CZ: cs, fi_FI: fi, hu_HU: hu, nb_NO: nb, sk_SK: sk, th_TH: th, ja_JP: ja 4 | 5 | [nextcloud.mood] 6 | file_filter = translationfiles//mood.po 7 | source_file = translationfiles/templates/mood.pot 8 | source_lang = en 9 | type = PO 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | app_name=mood 2 | 3 | project_dir=$(CURDIR) 4 | build_dir=$(CURDIR)/build/artifacts 5 | appstore_dir=$(build_dir)/appstore 6 | source_dir=$(build_dir)/source 7 | sign_dir=$(build_dir)/sign 8 | package_name=$(app_name) 9 | cert_dir=$(HOME)/.nextcloud/certificates 10 | github_account=nextcloud 11 | branch=master 12 | version+=0.5.0 13 | 14 | all: appstore 15 | 16 | release: appstore github-release github-upload 17 | 18 | github-release: 19 | github-release release \ 20 | --user $(github_account) \ 21 | --repo $(app_name) \ 22 | --target $(branch) \ 23 | --tag v$(version) \ 24 | --name "$(app_name) v$(version)" 25 | 26 | github-upload: 27 | github-release upload \ 28 | --user $(github_account) \ 29 | --repo $(app_name) \ 30 | --tag v$(version) \ 31 | --name "$(app_name)-$(version).tar.gz" \ 32 | --file $(build_dir)/$(app_name)-$(version).tar.gz 33 | 34 | create-tag: 35 | git tag -s -a v$(version) -m "Tagging the $(version) release." 36 | git push origin v$(version) 37 | 38 | clean: 39 | rm -rf $(build_dir) 40 | rm -rf node_modules 41 | 42 | appstore: clean 43 | mkdir -p $(sign_dir) 44 | rsync -a \ 45 | --exclude=/build \ 46 | --exclude=/docs \ 47 | --exclude=/translationfiles \ 48 | --exclude=/.tx \ 49 | --exclude=/tests \ 50 | --exclude=/.git \ 51 | --exclude=/.github \ 52 | --exclude=/l10n/l10n.pl \ 53 | --exclude=/CONTRIBUTING.md \ 54 | --exclude=/issue_template.md \ 55 | --exclude=/README.md \ 56 | --exclude=/.gitattributes \ 57 | --exclude=/.gitignore \ 58 | --exclude=/.scrutinizer.yml \ 59 | --exclude=/.travis.yml \ 60 | --exclude=/Makefile \ 61 | $(project_dir)/ $(sign_dir)/$(app_name) 62 | tar -czf $(build_dir)/$(app_name)-$(version).tar.gz \ 63 | -C $(sign_dir) $(app_name) 64 | @if [ -f $(cert_dir)/$(app_name).key ]; then \ 65 | echo "Signing package…"; \ 66 | openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name)-$(version).tar.gz | openssl base64; \ 67 | fi 68 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | _Note: **mood** is deprecated and replaced with the **Social** app in Nextcloud 15_ 2 | 3 | # Mood 4 | 5 | [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/daita/mood/badges/quality-score.png?b=master&)](https://scrutinizer-ci.com/g/daita/mood/?branch=master) 6 | [![Scrutinizer Build Test](https://scrutinizer-ci.com/g/daita/mood/badges/build.png?b=master&)](https://scrutinizer-ci.com/g/daita/mood/?branch=master) 7 | 8 | **Your mood over the clouds.** 9 | 10 | ![](https://raw.githubusercontent.com/daita/mood/master/screenshots/0.2.0.png) 11 | 12 | 13 | **mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud. 14 | 15 | 💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want. 16 | You don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒 17 | If you want to connect with other instances, you can federate your Circles with them. 18 | 19 | Link your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀 20 | -------------------------------------------------------------------------------- /appinfo/app.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 10 | * @license GNU AGPL version 3 or any later version 11 | * 12 | * This program is free software: you can redistribute it and/or modify 13 | * it under the terms of the GNU Affero General Public License as 14 | * published by the Free Software Foundation, either version 3 of the 15 | * License, or (at your option) any later version. 16 | * 17 | * This program is distributed in the hope that it will be useful, 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 | * GNU Affero General Public License for more details. 21 | * 22 | * You should have received a copy of the GNU Affero General Public License 23 | * along with this program. If not, see . 24 | * 25 | * 26 | */ 27 | 28 | $app = new \OCA\Mood\AppInfo\Application(); 29 | 30 | $app->registerToActivity(); 31 | -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | mood 5 | mood 6 | Your mood over the clouds 7 | 17 | 18 | 0.5.0 19 | agpl 20 | Maxence Lange 21 | 22 | https://github.com/daita/mood/wiki 23 | 24 | social 25 | https://github.com/daita/mood 26 | https://github.com/daita/mood/issues 27 | https://github.com/daita/mood.git 28 | 29 | https://raw.githubusercontent.com/daita/mood/master/screenshots/0.2.0.png 30 | 31 | 32 | 33 | 34 | 35 | 36 | OCA\Mood\Activity\Setting 37 | 38 | 39 | OCA\Mood\Activity\Filter 40 | 41 | 42 | OCA\Mood\Activity\Provider 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /appinfo/routes.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 10 | * @license GNU AGPL version 3 or any later version 11 | * 12 | * This program is free software: you can redistribute it and/or modify 13 | * it under the terms of the GNU Affero General Public License as 14 | * published by the Free Software Foundation, either version 3 of the 15 | * License, or (at your option) any later version. 16 | * 17 | * This program is distributed in the hope that it will be useful, 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 | * GNU Affero General Public License for more details. 21 | * 22 | * You should have received a copy of the GNU Affero General Public License 23 | * along with this program. If not, see . 24 | * 25 | * 26 | */ 27 | 28 | return [ 29 | 'routes' => [ 30 | ['name' => 'Mood#shareToCircle', 'url' => 'mood/circle/{circleId}', 'verb' => 'PUT'], 31 | ['name' => 'Tools#dataFromUrl', 'url' => 'data/url', 'verb' => 'GET'], 32 | [ 33 | 'name' => 'Tools#binFromExternalImage', 'url' => 'data/image', 'verb' => 'GET' 34 | ] 35 | ] 36 | ]; 37 | 38 | 39 | -------------------------------------------------------------------------------- /css/navigate.css: -------------------------------------------------------------------------------- 1 | 2 | #moody, #moody .lightenbg { 3 | height: 55px; 4 | } 5 | 6 | #moody .lightenbg { 7 | width: 100%; 8 | background: #ffffffe0; 9 | position: absolute; 10 | } 11 | 12 | #moody .mood_input { 13 | background: #fff; 14 | position: absolute; 15 | margin: 10px; 16 | } 17 | 18 | #moody #mood { 19 | width: 400px; 20 | } 21 | 22 | #moody #mood_shares { 23 | width: 200px; 24 | left: 410px; 25 | font-weight: normal; 26 | text-align: left; 27 | color: #999; 28 | } 29 | 30 | #moody #mood_submit { 31 | left: 620px; 32 | } 33 | 34 | #shares_list { 35 | z-index: 5; 36 | border-radius: 4px; 37 | border: solid 1px #00000022; 38 | color: #000000aa; 39 | background: #ffffffdd; 40 | max-height: 400px; 41 | min-width: 280px; 42 | overflow-y: auto; 43 | position: absolute; 44 | 45 | -moz-box-shadow: 2px 2px 1px #86868660; 46 | -webkit-box-shadow: 2px 2px 1px #86868660; 47 | box-shadow: 2px 2px 1px #86868660; 48 | } 49 | 50 | #website_infos { 51 | margin: 20px; 52 | padding: 10px; 53 | border: solid 4px; 54 | max-width: 500px; 55 | border-radius: 10px; 56 | height: 130px; 57 | 58 | -moz-box-shadow: 3px 3px 1px #86868660; 59 | -webkit-box-shadow: 3px 3px 1px #86868660; 60 | box-shadow: 3px 3px 1px #86868660; 61 | } 62 | 63 | #moody .lightenbg { 64 | width: 100%; 65 | background: #ffffffe0; 66 | position: absolute; 67 | } 68 | 69 | #website_infos .thumb { 70 | width: 120px; 71 | max-width: 120px; 72 | height: auto; 73 | max-height: 120px; 74 | float: left; 75 | margin: 3px 15px 5px 3px; 76 | } 77 | 78 | DIV.sharesItem { 79 | padding-left: 10px; 80 | } 81 | 82 | INPUT.check { 83 | margin-left: 5px; 84 | margin-right: 15px; 85 | } 86 | 87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /img/mood.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 8 | 17 | 21 | 25 | 26 | -------------------------------------------------------------------------------- /img/mood_black.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 8 | 17 | 21 | 25 | 26 | -------------------------------------------------------------------------------- /js/mood.app.actions.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Circles - Bring cloud-users closer together. 3 | * 4 | * This file is licensed under the Affero General Public License version 3 or 5 | * later. See the COPYING file. 6 | * 7 | * @author Maxence Lange 8 | * @copyright 2017 9 | * @license GNU AGPL version 3 or any later version 10 | * 11 | * This program is free software: you can redistribute it and/or modify 12 | * it under the terms of the GNU Affero General Public License as 13 | * published by the Free Software Foundation, either version 3 of the 14 | * License, or (at your option) any later version. 15 | * 16 | * This program is distributed in the hope that it will be useful, 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | * GNU Affero General Public License for more details. 20 | * 21 | * You should have received a copy of the GNU Affero General Public License 22 | * along with this program. If not, see . 23 | * 24 | */ 25 | 26 | /** global: OC */ 27 | /** global: OCA */ 28 | 29 | /** global: nav */ 30 | /** global: elements */ 31 | /** global: curr */ 32 | /** global: api */ 33 | 34 | 35 | var actions = { 36 | 37 | onEventPostMood: function (text) { 38 | var mood = { 39 | text: text, 40 | website: curr.websiteInfos 41 | }; 42 | 43 | if (text === '' && curr.websiteInfos.website === undefined) { 44 | return; 45 | } 46 | 47 | elements.websiteInfos.hide(300); 48 | elements.moodText.val(''); 49 | curr.requestingInfos = false; 50 | 51 | this.newMood(mood, curr.shares); 52 | }, 53 | 54 | 55 | onEventPastedMood: function (mood) { 56 | this.getDataFromUrl(mood); 57 | }, 58 | 59 | 60 | newMood: function (mood, shares) { 61 | $.each(shares, function (k, share) { 62 | var info = share.split(':', 2); 63 | if (info[0] === 'circle') { 64 | api.shareMoodToCircle(info[1], mood, actions.newMoodResult); 65 | } 66 | }); 67 | }, 68 | 69 | 70 | newMoodResult: function () { 71 | }, 72 | 73 | 74 | getDataFromUrl: function (url) { 75 | curr.requestingInfos = true; 76 | api.getDataFromUrl(url, actions.getDataFromUrlResult); 77 | }, 78 | 79 | 80 | getDataFromUrlResult: function (result) { 81 | if (result.status !== 1 || curr.requestingInfos === false) { 82 | return; 83 | } 84 | nav.fillWebsiteInfos(result.data); 85 | } 86 | 87 | 88 | }; 89 | 90 | 91 | -------------------------------------------------------------------------------- /js/mood.app.elements.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Circles - Bring cloud-users closer together. 3 | * 4 | * This file is licensed under the Affero General Public License version 3 or 5 | * later. See the COPYING file. 6 | * 7 | * @author Maxence Lange 8 | * @copyright 2017 9 | * @license GNU AGPL version 3 or any later version 10 | * 11 | * This program is free software: you can redistribute it and/or modify 12 | * it under the terms of the GNU Affero General Public License as 13 | * published by the Free Software Foundation, either version 3 of the 14 | * License, or (at your option) any later version. 15 | * 16 | * This program is distributed in the hope that it will be useful, 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | * GNU Affero General Public License for more details. 20 | * 21 | * You should have received a copy of the GNU Affero General Public License 22 | * along with this program. If not, see . 23 | * 24 | */ 25 | 26 | /** global: OC */ 27 | /** global: OCA */ 28 | 29 | /** global: nav */ 30 | /** global: actions */ 31 | /** global: curr */ 32 | /** global: api */ 33 | 34 | 35 | var elements = { 36 | 37 | moodText: null, 38 | websiteInfos: null, 39 | 40 | initElements: function () { 41 | elements.ActivityHeader = null; 42 | 43 | elements.moody = $('#moody'); 44 | elements.moodText = $('#mood'); 45 | elements.moodShares = $('#mood_shares'); 46 | elements.moodSharesList = $('#shares_list'); 47 | elements.moodSubmit = $('#mood_submit'); 48 | elements.websiteInfos = $('#website_infos'); 49 | }, 50 | 51 | 52 | initUI: function () { 53 | elements.websiteInfos.hide(0); 54 | elements.moodSharesList.hide(0); 55 | 56 | var theme = $('#body-user').find('#header').css('background-color'); 57 | elements.moody.css('background-color', theme); 58 | elements.websiteInfos.css('border-color', theme); 59 | }, 60 | 61 | 62 | initExperienceMood: function () { 63 | elements.initExperienceMoodPost(); 64 | elements.initExperienceMoodPaste(); 65 | elements.initExperienceMoodShares(); 66 | elements.initExperienceMoodSharesItems(); 67 | }, 68 | 69 | 70 | initExperienceMoodPost: function () { 71 | 72 | elements.moodText.on('keypress', function (e) { 73 | if (e.keyCode === 13) { 74 | actions.onEventPostMood($(this).val()); 75 | } 76 | }); 77 | 78 | elements.moodSubmit.on('click', function () { 79 | actions.onEventPostMood(elements.moodText.val()); 80 | }); 81 | }, 82 | 83 | initExperienceMoodPaste: function () { 84 | elements.moodText.on('paste', function (e) { 85 | var pastedData = e.originalEvent.clipboardData.getData('text'); 86 | actions.onEventPastedMood(pastedData); 87 | }); 88 | }, 89 | 90 | initExperienceMoodShares: function () { 91 | 92 | elements.moodShares.on('click', function (e) { 93 | nav.switchSharesDisplay(); 94 | e.stopPropagation(); 95 | }); 96 | 97 | elements.moodSharesList.on('click', function (e) { 98 | e.stopPropagation(); 99 | }); 100 | 101 | $(window).click(function () { 102 | if (curr.sharesDisplayed) { 103 | nav.switchSharesDisplay(); 104 | } 105 | }); 106 | }, 107 | 108 | 109 | initExperienceMoodSharesItems: function () { 110 | 111 | $('.sharesItem').on('click', function () { 112 | curr.switchShare($(this).attr('data-id')); 113 | elements.refreshShares(); 114 | }); 115 | 116 | }, 117 | 118 | 119 | refreshShares: function () { 120 | elements.moodSharesList.children('div').each(function () { 121 | if (curr.isShared($(this).attr('data-id'))) { 122 | $(this).find('input').prop('checked', true); 123 | } 124 | else { 125 | $(this).find('input').prop('checked', false); 126 | } 127 | }); 128 | 129 | }, 130 | 131 | 132 | integrateMoodToActivity: function () { 133 | elements.ActivityHeader = $('#app-content'); 134 | 135 | var moodHtml = ''; 136 | moodHtml += '
'; 137 | moodHtml += '
'; 138 | moodHtml += ''; 140 | moodHtml += 141 | ''; 143 | moodHtml += 144 | ''; 146 | moodHtml += '
'; 147 | moodHtml += '
'; 148 | 149 | elements.ActivityHeader.prepend(moodHtml); 150 | } 151 | 152 | 153 | }; -------------------------------------------------------------------------------- /js/mood.app.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Mood 3 | * 4 | * This file is licensed under the Affero General Public License version 3 or 5 | * later. See the COPYING file. 6 | * 7 | * @author Maxence Lange 8 | * @copyright 2017 9 | * @license GNU AGPL version 3 or any later version 10 | * 11 | * This program is free software: you can redistribute it and/or modify 12 | * it under the terms of the GNU Affero General Public License as 13 | * published by the Free Software Foundation, either version 3 of the 14 | * License, or (at your option) any later version. 15 | * 16 | * This program is distributed in the hope that it will be useful, 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | * GNU Affero General Public License for more details. 20 | * 21 | * You should have received a copy of the GNU Affero General Public License 22 | * along with this program. If not, see . 23 | * 24 | */ 25 | 26 | /** global: OC */ 27 | /** global: OCA */ 28 | 29 | /** global: nav */ 30 | /** global: actions */ 31 | /** global: elements */ 32 | 33 | const circles_api = OCA.Circles.api; 34 | const api = OCA.Mood.api; 35 | let curr = { 36 | mood: '', 37 | circles: [], 38 | shares: [], 39 | sharesDisplayed: false, 40 | requestingInfos: false, 41 | websiteInfos: {}, 42 | 43 | isShared: function (share) { 44 | return ($.inArray(share, curr.shares) > -1); 45 | }, 46 | 47 | addShare: function (share) { 48 | if (!curr.isShared(share)) { 49 | curr.shares.push(share); 50 | } 51 | }, 52 | 53 | remShare: function (share) { 54 | const e = curr.shares.indexOf(share); 55 | if (e > -1) { 56 | curr.shares.splice(e, 1); 57 | } 58 | }, 59 | 60 | switchShare: function (share) { 61 | if (curr.isShared(share)) { 62 | curr.remShare(share); 63 | } else { 64 | curr.addShare(share); 65 | } 66 | } 67 | }; 68 | 69 | const Navigation = function () { 70 | 71 | $.extend(Navigation.prototype, curr); 72 | $.extend(Navigation.prototype, nav); 73 | $.extend(Navigation.prototype, elements); 74 | $.extend(Navigation.prototype, actions); 75 | 76 | this.init(); 77 | }; 78 | 79 | Navigation.prototype = { 80 | 81 | init: function () { 82 | elements.integrateMoodToActivity(); 83 | elements.initElements(); 84 | elements.initUI(); 85 | elements.initExperienceMood(); 86 | 87 | nav.initNavigation(); 88 | nav.initCircles(); 89 | } 90 | }; 91 | 92 | 93 | OCA.Mood.Navigation = Navigation; 94 | 95 | $(document).ready(function () { 96 | OCA.Mood.navigation = new Navigation(); 97 | }); 98 | 99 | -------------------------------------------------------------------------------- /js/mood.app.navigation.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Circles - Bring cloud-users closer together. 3 | * 4 | * This file is licensed under the Affero General Public License version 3 or 5 | * later. See the COPYING file. 6 | * 7 | * @author Maxence Lange 8 | * @copyright 2017 9 | * @license GNU AGPL version 3 or any later version 10 | * 11 | * This program is free software: you can redistribute it and/or modify 12 | * it under the terms of the GNU Affero General Public License as 13 | * published by the Free Software Foundation, either version 3 of the 14 | * License, or (at your option) any later version. 15 | * 16 | * This program is distributed in the hope that it will be useful, 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | * GNU Affero General Public License for more details. 20 | * 21 | * You should have received a copy of the GNU Affero General Public License 22 | * along with this program. If not, see . 23 | * 24 | */ 25 | 26 | /** global: OC */ 27 | /** global: OCA */ 28 | 29 | /** global: nav */ 30 | /** global: elements */ 31 | /** global: curr */ 32 | /** global: api */ 33 | /** global: circles */ 34 | 35 | 36 | var nav = { 37 | 38 | 39 | initNavigation: function () { 40 | 41 | }, 42 | 43 | 44 | initCircles: function () { 45 | circles_api.listCircles('all', '', 1, nav.initCirclesResult); 46 | }, 47 | 48 | 49 | initCirclesResult: function (result) { 50 | curr.circles = []; 51 | $.each(result.data, function (k, item) { 52 | curr.circles.push({ 53 | id: item.unique_id, 54 | name: item.name, 55 | type: item.type_string, 56 | owner: item.owner.user_id, 57 | level: item.user.level_string 58 | }); 59 | }); 60 | 61 | nav.fillSharesList(); 62 | }, 63 | 64 | 65 | fillWebsiteInfos: function (infos) { 66 | curr.websiteInfos = infos; 67 | 68 | elements.websiteInfos.empty(); 69 | if (infos.thumb !== '') { 70 | elements.websiteInfos.append( 71 | ''); 72 | } 73 | 74 | var website = (infos.title === '') ? infos.website : ' (' + infos.website + ') '; 75 | elements.websiteInfos.append('' + infos.title + ' ' + website + ''); 76 | elements.websiteInfos.append('
' + infos.description); 77 | elements.websiteInfos.fadeIn(400); 78 | }, 79 | 80 | 81 | fillSharesList: function () { 82 | 83 | elements.moodSharesList.empty(); 84 | $.each(curr.circles, function (k, circle) { 85 | elements.moodSharesList.append( 86 | '
' + 87 | '
' + 88 | '' + circle.name + ' (' + circle.type + ', ' + circle.owner + 89 | ')
'); 90 | }); 91 | 92 | elements.initExperienceMoodSharesItems(); 93 | }, 94 | 95 | 96 | switchSharesDisplay: function () { 97 | var sharePosition = elements.moodShares.position(); 98 | 99 | elements.moodSharesList.css({ 100 | position: 'absolute', 101 | top: sharePosition.top + 50, 102 | left: sharePosition.left + 10 103 | }); 104 | 105 | if (curr.sharesDisplayed) { 106 | curr.sharesDisplayed = false; 107 | elements.moodSharesList.fadeOut(400); 108 | } else { 109 | curr.sharesDisplayed = true; 110 | elements.moodSharesList.fadeIn(400); 111 | } 112 | } 113 | 114 | 115 | }; 116 | 117 | -------------------------------------------------------------------------------- /js/mood.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Circles - Bring cloud-users closer together. 3 | * 4 | * This file is licensed under the Affero General Public License version 3 or 5 | * later. See the COPYING file. 6 | * 7 | * @author Maxence Lange 8 | * @copyright 2017 9 | * @license GNU AGPL version 3 or any later version 10 | * 11 | * This program is free software: you can redistribute it and/or modify 12 | * it under the terms of the GNU Affero General Public License as 13 | * published by the Free Software Foundation, either version 3 of the 14 | * License, or (at your option) any later version. 15 | * 16 | * This program is distributed in the hope that it will be useful, 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | * GNU Affero General Public License for more details. 20 | * 21 | * You should have received a copy of the GNU Affero General Public License 22 | * along with this program. If not, see . 23 | * 24 | */ 25 | 26 | /** global: OC */ 27 | /** global: OCA */ 28 | 29 | (function () { 30 | 31 | 32 | /** 33 | * @constructs Mood 34 | */ 35 | var Mood = function () { 36 | this.initialize(); 37 | }; 38 | 39 | Mood.prototype = { 40 | 41 | initialize: function () { 42 | 43 | var self = this; 44 | 45 | 46 | this.getDataFromUrl = function (url, callback) { 47 | var result = {status: -1}; 48 | $.ajax({ 49 | method: 'GET', 50 | url: OC.generateUrl('/apps/mood/data/url'), 51 | data: { 52 | url: url 53 | } 54 | }).done(function (res) { 55 | self.onCallback(callback, res); 56 | }).fail(function () { 57 | self.onCallback(callback, result); 58 | }); 59 | }; 60 | 61 | 62 | this.localUrlOfExternalImage = function (url) { 63 | return OC.generateUrl('/apps/mood/data/image') + '?url=' + 64 | encodeURIComponent(url); 65 | }; 66 | 67 | 68 | this.shareMoodToCircle = function (circleId, item, callback) { 69 | var result = {status: -1}; 70 | $.ajax({ 71 | method: 'PUT', 72 | url: OC.generateUrl('/apps/mood/mood/circle/' + circleId), 73 | data: { 74 | item: item 75 | } 76 | }).done(function (res) { 77 | self.onCallback(callback, res); 78 | }).fail(function () { 79 | self.onCallback(callback, result); 80 | }); 81 | }; 82 | 83 | 84 | this.onCallback = function (callback, result) { 85 | if (callback && (typeof callback === "function")) { 86 | callback(result); 87 | } 88 | }; 89 | 90 | 91 | } 92 | }; 93 | 94 | OCA.Mood = Mood; 95 | OCA.Mood.api = new Mood(); 96 | 97 | })(); 98 | 99 | -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtificialOwl/mood/bde7d04ad40d93f92256f73cdbc26e6f46a07805/l10n/.gitkeep -------------------------------------------------------------------------------- /l10n/af.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nuwe stemming", 5 | "Share with ..." : "Deel met …", 6 | "Share your mood" : "Deel u stemming", 7 | "{author} shared a mood with you" : "{author} het ’n stemming met u gedeel", 8 | "{author} shared a mood with {circles}" : "{author} het ’n stemming met {circles} gedeel", 9 | "You shared a mood with {circles}" : "U het ’n stemming met {circles} gedeel", 10 | "A social mood is shared" : "’n Sosiale stemming is gedeel", 11 | "mood" : "stemming", 12 | "Your mood over the clouds" : "U stemming in die wolke" 13 | }, 14 | "nplurals=2; plural=(n != 1);"); 15 | -------------------------------------------------------------------------------- /l10n/af.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nuwe stemming", 3 | "Share with ..." : "Deel met …", 4 | "Share your mood" : "Deel u stemming", 5 | "{author} shared a mood with you" : "{author} het ’n stemming met u gedeel", 6 | "{author} shared a mood with {circles}" : "{author} het ’n stemming met {circles} gedeel", 7 | "You shared a mood with {circles}" : "U het ’n stemming met {circles} gedeel", 8 | "A social mood is shared" : "’n Sosiale stemming is gedeel", 9 | "mood" : "stemming", 10 | "Your mood over the clouds" : "U stemming in die wolke" 11 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 12 | } -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "Share with ..." : "Compartir con..." 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Share with ..." : "Compartir con..." 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nou estat d'ànim", 5 | "Share with ..." : "Comparteix amb...", 6 | "Share your mood" : "Compartiu el vostre estat d'ànim", 7 | "{author} shared a mood with you" : "{author} us ha compartit un estat d'ànim", 8 | "{author} shared a mood with {circles}" : "{author} ha compartit un estat d'ànim amb {circles}", 9 | "You shared a mood with {circles}" : "Heu compartit un estat d'ànim amb {circles}", 10 | "A social mood is shared" : "S'ha compartit un estat d'ànim social", 11 | "mood" : "estat d'ànim", 12 | "Your mood over the clouds" : "El vostre estat d'ànim sobre els núvols", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** utilitza les aplicacions **Activititat** i **Cercles** per oferir-vos l'eina social perfecte al vostre Nextcloud.\n\n_Avís: **mood** ja no és mantinguda al dia, i per tant es desaconsella el seu ús. Considereu passar a utilitzar l'aplicació **Social** ._\n\n💬 Amb **mood**, podeu compartir instantàniament un text breu amb altres usuaris de la vostra instància: pot ser per comunicar unn canvi d'estat, un enllaç, qualsevol informació que vulgueu.\nNo heu de compartir el vostre missatge amb tothom: gràcies a l'aplicació **Cercles** podeu decidir qui veurà els vostres moods 🔒\n\nSi voleu connectar amb altres instàncies, podeu federar els vostres Cercles amb elles. Enllaceu els vostres _cercles_ amb núvols remots i els vostres missatges seran difosos arreu! 🚀" 14 | }, 15 | "nplurals=2; plural=(n != 1);"); 16 | -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nou estat d'ànim", 3 | "Share with ..." : "Comparteix amb...", 4 | "Share your mood" : "Compartiu el vostre estat d'ànim", 5 | "{author} shared a mood with you" : "{author} us ha compartit un estat d'ànim", 6 | "{author} shared a mood with {circles}" : "{author} ha compartit un estat d'ànim amb {circles}", 7 | "You shared a mood with {circles}" : "Heu compartit un estat d'ànim amb {circles}", 8 | "A social mood is shared" : "S'ha compartit un estat d'ànim social", 9 | "mood" : "estat d'ànim", 10 | "Your mood over the clouds" : "El vostre estat d'ànim sobre els núvols", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** utilitza les aplicacions **Activititat** i **Cercles** per oferir-vos l'eina social perfecte al vostre Nextcloud.\n\n_Avís: **mood** ja no és mantinguda al dia, i per tant es desaconsella el seu ús. Considereu passar a utilitzar l'aplicació **Social** ._\n\n💬 Amb **mood**, podeu compartir instantàniament un text breu amb altres usuaris de la vostra instància: pot ser per comunicar unn canvi d'estat, un enllaç, qualsevol informació que vulgueu.\nNo heu de compartir el vostre missatge amb tothom: gràcies a l'aplicació **Cercles** podeu decidir qui veurà els vostres moods 🔒\n\nSi voleu connectar amb altres instàncies, podeu federar els vostres Cercles amb elles. Enllaceu els vostres _cercles_ amb núvols remots i els vostres missatges seran difosos arreu! 🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 13 | } -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nová nálada", 5 | "Share with ..." : "Sdílet s…", 6 | "Share your mood" : "Sdílejte svou náladu", 7 | "{author} shared a mood with you" : "{author} s vámi sdílel(a) náladu", 8 | "{author} shared a mood with {circles}" : "{author} sdílel(a) náladu s {circles}", 9 | "You shared a mood with {circles}" : "Nasdíleli jste náladu s {circles}", 10 | "A social mood is shared" : "Sociální nálada je sdílená", 11 | "mood" : "nálada", 12 | "Your mood over the clouds" : "Vaše nálada nad mraky (cloud)", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**nálada** použijte aplikace **Aktivita** a **Okruhy** a vyrobíte skvělý nástroj pro sociální média pro váš Nextcloud.\n\n_Poznámka: **nálada** je opuštěna a nahrazena aplikací **Společenské**_\n\n💬 S **nálada**, můžete okamžitě sdílet krátký text s ostatními uživateli vaší instance: může to být aktualizace stavu, odkaz, informace nebo cokoli chcete.\nNení třeba sdílet se všemi: díky aplikaci **Okruhy**, rozhodujete kdo může vaše nálady vidět 🔒\n\nPokud se chcete spojit s ostatními instancemi, je možné federovat vaše okruhy s nimi.\nPropojte vaše _okruhy_ se vzdálenými cloudy a vaše zprávy budou šířeny přes celý mesh!🚀" 14 | }, 15 | "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); 16 | -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nová nálada", 3 | "Share with ..." : "Sdílet s…", 4 | "Share your mood" : "Sdílejte svou náladu", 5 | "{author} shared a mood with you" : "{author} s vámi sdílel(a) náladu", 6 | "{author} shared a mood with {circles}" : "{author} sdílel(a) náladu s {circles}", 7 | "You shared a mood with {circles}" : "Nasdíleli jste náladu s {circles}", 8 | "A social mood is shared" : "Sociální nálada je sdílená", 9 | "mood" : "nálada", 10 | "Your mood over the clouds" : "Vaše nálada nad mraky (cloud)", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**nálada** použijte aplikace **Aktivita** a **Okruhy** a vyrobíte skvělý nástroj pro sociální média pro váš Nextcloud.\n\n_Poznámka: **nálada** je opuštěna a nahrazena aplikací **Společenské**_\n\n💬 S **nálada**, můžete okamžitě sdílet krátký text s ostatními uživateli vaší instance: může to být aktualizace stavu, odkaz, informace nebo cokoli chcete.\nNení třeba sdílet se všemi: díky aplikaci **Okruhy**, rozhodujete kdo může vaše nálady vidět 🔒\n\nPokud se chcete spojit s ostatními instancemi, je možné federovat vaše okruhy s nimi.\nPropojte vaše _okruhy_ se vzdálenými cloudy a vaše zprávy budou šířeny přes celý mesh!🚀" 12 | },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" 13 | } -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nyt humør", 5 | "Share with ..." : "Del med…", 6 | "Share your mood" : "Vis dit humør", 7 | "{author} shared a mood with you" : "{author} har delt sit humør med dig", 8 | "{author} shared a mood with {circles}" : "{author} har delt sit humør med {circles}", 9 | "You shared a mood with {circles}" : "Du har delt dit humør med {circles}", 10 | "A social mood is shared" : "har delt et social humør ", 11 | "mood" : "humør", 12 | "Your mood over the clouds" : "Dit humør i skyerne", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**humør** benytter **Aktivitet** og **circler** apps til at lave det perfekte sociale medie værktøj i din Nextcloud.\n\n_Note: **humør** bliver ikke vedligeholdt mere. Overvej venligst at skifte til **Social** app._\n\n💬 Med **humør**, kan du nemt dele en kort tekst med andre brugere på samme server: det kan være en status opdatering, et link, en information eller andet efter behov.\nDu behøver ikke dele med alle: takket være **Circler** app'en, klan du vælge hvem der kan se dit humør🔒\n\nHvis du vil kobles på andre servere, kan du føderere dine cirkler med dem.\nlink dine _cirkler_ til afsides clouds, og for at dine meddelelser udbredes over hele netværket!🚀" 14 | }, 15 | "nplurals=2; plural=(n != 1);"); 16 | -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nyt humør", 3 | "Share with ..." : "Del med…", 4 | "Share your mood" : "Vis dit humør", 5 | "{author} shared a mood with you" : "{author} har delt sit humør med dig", 6 | "{author} shared a mood with {circles}" : "{author} har delt sit humør med {circles}", 7 | "You shared a mood with {circles}" : "Du har delt dit humør med {circles}", 8 | "A social mood is shared" : "har delt et social humør ", 9 | "mood" : "humør", 10 | "Your mood over the clouds" : "Dit humør i skyerne", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**humør** benytter **Aktivitet** og **circler** apps til at lave det perfekte sociale medie værktøj i din Nextcloud.\n\n_Note: **humør** bliver ikke vedligeholdt mere. Overvej venligst at skifte til **Social** app._\n\n💬 Med **humør**, kan du nemt dele en kort tekst med andre brugere på samme server: det kan være en status opdatering, et link, en information eller andet efter behov.\nDu behøver ikke dele med alle: takket være **Circler** app'en, klan du vælge hvem der kan se dit humør🔒\n\nHvis du vil kobles på andre servere, kan du føderere dine cirkler med dem.\nlink dine _cirkler_ til afsides clouds, og for at dine meddelelser udbredes over hele netværket!🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 13 | } -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Neue Stimmung", 5 | "Share with ..." : "Teilen mit …", 6 | "Share your mood" : "Teile Deine Stimmung", 7 | "{author} shared a mood with you" : "{author} teilte seine Stimmung mit Dir", 8 | "{author} shared a mood with {circles}" : "{author} teilte seine Stimmung mit {circles}", 9 | "You shared a mood with {circles}" : "Du hast Deine Stimmung mit {circles} geteilt", 10 | "A social mood is shared" : "Eine Stimmung wurde geteilt", 11 | "mood" : "Stimmung", 12 | "Your mood over the clouds" : "Deine Stimmung über den Wolken", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** nutzt die Apps **Activity** und **Circles** um das perfekte Social-Media-Werkzeug für Deine Nextcloud zu sein.\n\n_Achtung: **mood* wurde abgekündigt und wird nicht mehr gepflegt. Überlege den Umstieg auf die **Social** App._\n\n💬 Mit **mood** kannst Du sofort einen kurzen Text mit den anderen Benutzern Deiner Nextcloud teilen. Dies kann eine Statusaktualisierung, ein Link, eine Information oder etwas anderes sein.\nDu musst nichts mit allen teilen, denn Dank der **Circles**-App entscheidest Du, wer Deine Stimmungen sehen kann 🔒\n\nWenn Du Dich mit anderen Nextclouds verbinden willst, dann kannst Du Deine Kreise (Circles) via Federated verbinden.\nVerbinde Deine _Kreise_ mit externen Clouds und Deine Nachrichten gehen als Rundruf duch das Netz!🚀" 14 | }, 15 | "nplurals=2; plural=(n != 1);"); 16 | -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Neue Stimmung", 3 | "Share with ..." : "Teilen mit …", 4 | "Share your mood" : "Teile Deine Stimmung", 5 | "{author} shared a mood with you" : "{author} teilte seine Stimmung mit Dir", 6 | "{author} shared a mood with {circles}" : "{author} teilte seine Stimmung mit {circles}", 7 | "You shared a mood with {circles}" : "Du hast Deine Stimmung mit {circles} geteilt", 8 | "A social mood is shared" : "Eine Stimmung wurde geteilt", 9 | "mood" : "Stimmung", 10 | "Your mood over the clouds" : "Deine Stimmung über den Wolken", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** nutzt die Apps **Activity** und **Circles** um das perfekte Social-Media-Werkzeug für Deine Nextcloud zu sein.\n\n_Achtung: **mood* wurde abgekündigt und wird nicht mehr gepflegt. Überlege den Umstieg auf die **Social** App._\n\n💬 Mit **mood** kannst Du sofort einen kurzen Text mit den anderen Benutzern Deiner Nextcloud teilen. Dies kann eine Statusaktualisierung, ein Link, eine Information oder etwas anderes sein.\nDu musst nichts mit allen teilen, denn Dank der **Circles**-App entscheidest Du, wer Deine Stimmungen sehen kann 🔒\n\nWenn Du Dich mit anderen Nextclouds verbinden willst, dann kannst Du Deine Kreise (Circles) via Federated verbinden.\nVerbinde Deine _Kreise_ mit externen Clouds und Deine Nachrichten gehen als Rundruf duch das Netz!🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 13 | } -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Neue Stimmung", 5 | "Share with ..." : "Teilen mit…", 6 | "Share your mood" : "Teilen Sie Ihre Stimmung", 7 | "{author} shared a mood with you" : "{author} teilte seine Stimmung mit Ihnen", 8 | "{author} shared a mood with {circles}" : "{author} teilte seine Stimmung mit {circles}", 9 | "You shared a mood with {circles}" : "Sie teilten Ihre Stimmung mit {circles}", 10 | "A social mood is shared" : "Eine Stimmung wurde geteilt", 11 | "mood" : "Stimmung", 12 | "Your mood over the clouds" : "Deine Stimmung über den Wolken", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** nutzt die Apps **Activity** und **Circles** um das perfekte Social-Media-Werkzeug für Ihre Nextcloud zu sein.\n\n_Achtung: **mood* wurde abgekündigt und wird nicht mehr gepflegt. Überlegen Sie den Umstieg auf die **Social** App._\n\n💬 Mit **mood** können Sie sofort einen kurzen Text mit den anderen Benutzern Ihrer Nextcloud teilen. Dies kann eine Statusaktualisierung, ein Link, eine Information oder etwas anderes sein.\nSie müssen nichts mit allen teilen, denn Dank der **Circles**-App entscheiden Sie, wer Ihre Stimmungen sehen kann 🔒\n\nWenn Sie sich mit anderen Nextclouds verbinden möchten, dann können Sie Ihre Kreise (Circles) via Federated verbinden.\nVerbinden Sie Ihre _Kreise_ mit externe Clouds und Ihre Nachrichten gehen als Rundruf duch das Netz!🚀" 14 | }, 15 | "nplurals=2; plural=(n != 1);"); 16 | -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Neue Stimmung", 3 | "Share with ..." : "Teilen mit…", 4 | "Share your mood" : "Teilen Sie Ihre Stimmung", 5 | "{author} shared a mood with you" : "{author} teilte seine Stimmung mit Ihnen", 6 | "{author} shared a mood with {circles}" : "{author} teilte seine Stimmung mit {circles}", 7 | "You shared a mood with {circles}" : "Sie teilten Ihre Stimmung mit {circles}", 8 | "A social mood is shared" : "Eine Stimmung wurde geteilt", 9 | "mood" : "Stimmung", 10 | "Your mood over the clouds" : "Deine Stimmung über den Wolken", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** nutzt die Apps **Activity** und **Circles** um das perfekte Social-Media-Werkzeug für Ihre Nextcloud zu sein.\n\n_Achtung: **mood* wurde abgekündigt und wird nicht mehr gepflegt. Überlegen Sie den Umstieg auf die **Social** App._\n\n💬 Mit **mood** können Sie sofort einen kurzen Text mit den anderen Benutzern Ihrer Nextcloud teilen. Dies kann eine Statusaktualisierung, ein Link, eine Information oder etwas anderes sein.\nSie müssen nichts mit allen teilen, denn Dank der **Circles**-App entscheiden Sie, wer Ihre Stimmungen sehen kann 🔒\n\nWenn Sie sich mit anderen Nextclouds verbinden möchten, dann können Sie Ihre Kreise (Circles) via Federated verbinden.\nVerbinden Sie Ihre _Kreise_ mit externe Clouds und Ihre Nachrichten gehen als Rundruf duch das Netz!🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 13 | } -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Νέα διάθεση", 5 | "Share with ..." : "Διαμοιρασμός με ...", 6 | "Share your mood" : "Μοιραστείτε την διάθεσή σας", 7 | "{author} shared a mood with you" : "Ο {author} σας κοινοποίησε την διάθεσή του", 8 | "{author} shared a mood with {circles}" : "{author} κοινοποίησε διάθεση με {circles}", 9 | "You shared a mood with {circles}" : "Κοινοποιήσατε μια διάθεση με {circles}", 10 | "A social mood is shared" : "Κοινοποιήθηκε μια κοινωνική διάθεση ", 11 | "mood" : "διάθεση", 12 | "Your mood over the clouds" : "Η διαθεσή σας παντού", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**διάθεση** χρησιμοποιεί τις εφαρμογές **Δραστηριότητα** και **Κύκλοι** για να δημιουργήσει το τέλειο εργαλείο κοινωνικής δικτύωσης για το Nextcloud σας.\n\n_Σημ: **διάθεση** δεν αναπτύσεται και δεν υποστηρίζεται πλέον. Παρακαλώ σκεφτείτε την αλλαγή στην εφαρμογή **Κοινωνικά** ._\n\n💬 Με την **διάθεση**, μπορείτε άμεσα να μοιραστείτε μικρό κείμενο με άλλους χρήστες: μπορεί να είναι ενημέρωση κατάστασης, μια πληροφορία, ένας σύνδεσμος, οτιδήποτε θέλετε.\nΔεν χρειάζεται να το μοιραστείτε με όλους: με την εφαρμογή **Κύκλοι** , επιλέγετε ποιός θα δεί την διάθεσή σας 🔒\n\nΕάν επιθυμείτε να συνδεθείτε με άλλους, πρέπει να το ορίσετε από τους Κύκλους σας.\nΣυνδέστε τους _Κύκλους_ με άλλες τοποθεσίες και τα μηνύματά σας θα διαβιβαστούν σε όλο το δίκτυο!🚀" 14 | }, 15 | "nplurals=2; plural=(n != 1);"); 16 | -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Νέα διάθεση", 3 | "Share with ..." : "Διαμοιρασμός με ...", 4 | "Share your mood" : "Μοιραστείτε την διάθεσή σας", 5 | "{author} shared a mood with you" : "Ο {author} σας κοινοποίησε την διάθεσή του", 6 | "{author} shared a mood with {circles}" : "{author} κοινοποίησε διάθεση με {circles}", 7 | "You shared a mood with {circles}" : "Κοινοποιήσατε μια διάθεση με {circles}", 8 | "A social mood is shared" : "Κοινοποιήθηκε μια κοινωνική διάθεση ", 9 | "mood" : "διάθεση", 10 | "Your mood over the clouds" : "Η διαθεσή σας παντού", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**διάθεση** χρησιμοποιεί τις εφαρμογές **Δραστηριότητα** και **Κύκλοι** για να δημιουργήσει το τέλειο εργαλείο κοινωνικής δικτύωσης για το Nextcloud σας.\n\n_Σημ: **διάθεση** δεν αναπτύσεται και δεν υποστηρίζεται πλέον. Παρακαλώ σκεφτείτε την αλλαγή στην εφαρμογή **Κοινωνικά** ._\n\n💬 Με την **διάθεση**, μπορείτε άμεσα να μοιραστείτε μικρό κείμενο με άλλους χρήστες: μπορεί να είναι ενημέρωση κατάστασης, μια πληροφορία, ένας σύνδεσμος, οτιδήποτε θέλετε.\nΔεν χρειάζεται να το μοιραστείτε με όλους: με την εφαρμογή **Κύκλοι** , επιλέγετε ποιός θα δεί την διάθεσή σας 🔒\n\nΕάν επιθυμείτε να συνδεθείτε με άλλους, πρέπει να το ορίσετε από τους Κύκλους σας.\nΣυνδέστε τους _Κύκλους_ με άλλες τοποθεσίες και τα μηνύματά σας θα διαβιβαστούν σε όλο το δίκτυο!🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 13 | } -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "New mood", 5 | "Share with ..." : "Share with ...", 6 | "Share your mood" : "Share your mood", 7 | "{author} shared a mood with you" : "{author} shared a mood with you", 8 | "{author} shared a mood with {circles}" : "{author} shared a mood with {circles}", 9 | "You shared a mood with {circles}" : "You shared a mood with {circles}", 10 | "A social mood is shared" : "A social mood is shared", 11 | "mood" : "mood", 12 | "Your mood over the clouds" : "Your mood over the clouds", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" 14 | }, 15 | "nplurals=2; plural=(n != 1);"); 16 | -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "New mood", 3 | "Share with ..." : "Share with ...", 4 | "Share your mood" : "Share your mood", 5 | "{author} shared a mood with you" : "{author} shared a mood with you", 6 | "{author} shared a mood with {circles}" : "{author} shared a mood with {circles}", 7 | "You shared a mood with {circles}" : "You shared a mood with {circles}", 8 | "A social mood is shared" : "A social mood is shared", 9 | "mood" : "mood", 10 | "Your mood over the clouds" : "Your mood over the clouds", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 13 | } -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nuevo estado de ánimo", 5 | "Share with ..." : "Compartir con...", 6 | "Share your mood" : "Comparte tu estado de ánimo", 7 | "{author} shared a mood with you" : "{author} ha compartido un estado de ánimo contigo", 8 | "{author} shared a mood with {circles}" : "{author} ha compartido un estado de ánimo con {circles}", 9 | "You shared a mood with {circles}" : "Has compartido un estado de ánimo con {circles}", 10 | "A social mood is shared" : "Se ha compartido un mood social", 11 | "mood" : "mood", 12 | "Your mood over the clouds" : "Tu estado de ánimo en las nubes", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** usa las apps *Activity** y **Circles** par crear la herramienta perfecta de social media para su Nextcloud\n\n_Nota: **mood** está obsoleta y ya no se actualiza. Por favor, considere cambiar a la app **Social**._\n\n💬 Con **mood**, puede compartir instantáneamente con otros usuarios de su empresa un texto corto: puede ser una actualización de estado, un enlace, una información o cualquier cosa que desee.\nNo necesita compartir con todo el mundo: gracias a la app **Circles**, tú decides quién puede ver tus estados 🔒\n\nSi desea conectar con otras empresas o departamentos, podrá federar sus Círculoi con ellos.\n¿Enlace sus _círculos_ con nubes remotas y sus mensajes será distribuidos en toda la red!🚀" 14 | }, 15 | "nplurals=2; plural=(n != 1);"); 16 | -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nuevo estado de ánimo", 3 | "Share with ..." : "Compartir con...", 4 | "Share your mood" : "Comparte tu estado de ánimo", 5 | "{author} shared a mood with you" : "{author} ha compartido un estado de ánimo contigo", 6 | "{author} shared a mood with {circles}" : "{author} ha compartido un estado de ánimo con {circles}", 7 | "You shared a mood with {circles}" : "Has compartido un estado de ánimo con {circles}", 8 | "A social mood is shared" : "Se ha compartido un mood social", 9 | "mood" : "mood", 10 | "Your mood over the clouds" : "Tu estado de ánimo en las nubes", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** usa las apps *Activity** y **Circles** par crear la herramienta perfecta de social media para su Nextcloud\n\n_Nota: **mood** está obsoleta y ya no se actualiza. Por favor, considere cambiar a la app **Social**._\n\n💬 Con **mood**, puede compartir instantáneamente con otros usuarios de su empresa un texto corto: puede ser una actualización de estado, un enlace, una información o cualquier cosa que desee.\nNo necesita compartir con todo el mundo: gracias a la app **Circles**, tú decides quién puede ver tus estados 🔒\n\nSi desea conectar con otras empresas o departamentos, podrá federar sus Círculoi con ellos.\n¿Enlace sus _círculos_ con nubes remotas y sus mensajes será distribuidos en toda la red!🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 13 | } -------------------------------------------------------------------------------- /l10n/es_MX.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nuevo estado de ánimo", 5 | "Share with ..." : "Compartir con ...", 6 | "Share your mood" : "Comparte tu estado de ánimo", 7 | "{author} shared a mood with you" : "{author} te compartió un estado de ánimo", 8 | "{author} shared a mood with {circles}" : "{author} compartió un estado de ánimo con {circles}", 9 | "You shared a mood with {circles}" : "Compartiste un estado de ánimo con {circles}", 10 | "A social mood is shared" : "Se comparte un estado de ánimo social", 11 | "mood" : "estado de ánimo", 12 | "Your mood over the clouds" : "Tu estado de ánimo en las nubes" 13 | }, 14 | "nplurals=2; plural=(n != 1);"); 15 | -------------------------------------------------------------------------------- /l10n/es_MX.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nuevo estado de ánimo", 3 | "Share with ..." : "Compartir con ...", 4 | "Share your mood" : "Comparte tu estado de ánimo", 5 | "{author} shared a mood with you" : "{author} te compartió un estado de ánimo", 6 | "{author} shared a mood with {circles}" : "{author} compartió un estado de ánimo con {circles}", 7 | "You shared a mood with {circles}" : "Compartiste un estado de ánimo con {circles}", 8 | "A social mood is shared" : "Se comparte un estado de ánimo social", 9 | "mood" : "estado de ánimo", 10 | "Your mood over the clouds" : "Tu estado de ánimo en las nubes" 11 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 12 | } -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Aldarte berria", 5 | "Share with ..." : "Partekatu honekin ...", 6 | "Share your mood" : "Partekatu zure aldartea", 7 | "{author} shared a mood with you" : "{author} horrek zurekin partekatu du bere aldartea", 8 | "{author} shared a mood with {circles}" : "{author} horrek partekatu du bere aldartea hauekin: {circles}", 9 | "You shared a mood with {circles}" : "Partekatu duzu zure aldartea hauekin: {circles}", 10 | "A social mood is shared" : "Publikoki aldartea partekatu da", 11 | "mood" : "aldartea", 12 | "Your mood over the clouds" : "Zure aldartea laino guztien gainetik", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**aldarte** horrek erabiltzen du **Jarduera** eta **Zirkuluak** aplikazioak Nextclouden ingurunean sare soziala sortzeko.\n\n_Oharra: **aldarte** hori iraungita dago, ez dute eguneratzen. Agian **Social** app._ erabiltzea duzu\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nEz duzu zertan zure aldartea edonorekin partekatu: ez duzu edonerekin partekatu behar **Circles** app horri esker, zuk erabaki ahal duzu nork ikus dezakeen zure aldartea eta nork ez 🔒\n\nBeste instantzia batzuekin konektatu nahi baduzu Zirkuluak haiekin federatu ahal duzu.\nEstekatu zure _circles_ urrutiko hodeiekin eta zure mezuak hedatuko dira blogosfera osoan!🚀" 14 | }, 15 | "nplurals=2; plural=(n != 1);"); 16 | -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Aldarte berria", 3 | "Share with ..." : "Partekatu honekin ...", 4 | "Share your mood" : "Partekatu zure aldartea", 5 | "{author} shared a mood with you" : "{author} horrek zurekin partekatu du bere aldartea", 6 | "{author} shared a mood with {circles}" : "{author} horrek partekatu du bere aldartea hauekin: {circles}", 7 | "You shared a mood with {circles}" : "Partekatu duzu zure aldartea hauekin: {circles}", 8 | "A social mood is shared" : "Publikoki aldartea partekatu da", 9 | "mood" : "aldartea", 10 | "Your mood over the clouds" : "Zure aldartea laino guztien gainetik", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**aldarte** horrek erabiltzen du **Jarduera** eta **Zirkuluak** aplikazioak Nextclouden ingurunean sare soziala sortzeko.\n\n_Oharra: **aldarte** hori iraungita dago, ez dute eguneratzen. Agian **Social** app._ erabiltzea duzu\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nEz duzu zertan zure aldartea edonorekin partekatu: ez duzu edonerekin partekatu behar **Circles** app horri esker, zuk erabaki ahal duzu nork ikus dezakeen zure aldartea eta nork ez 🔒\n\nBeste instantzia batzuekin konektatu nahi baduzu Zirkuluak haiekin federatu ahal duzu.\nEstekatu zure _circles_ urrutiko hodeiekin eta zure mezuak hedatuko dira blogosfera osoan!🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 13 | } -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "روحیه جدید", 5 | "Share with ..." : "به اشتراک گذاشتن با ...", 6 | "Share your mood" : "حال و هوای خود را به اشتراک بگذارید", 7 | "{author} shared a mood with you" : "{نویسنده {روحیه ای را با شما به اشتراک گذاشت", 8 | "{author} shared a mood with {circles}" : "{نویسنده } خلق و خوی را با {حلقه‌ها} به اشتراک گذاشت", 9 | "You shared a mood with {circles}" : "شما خلق و خوی را با {محافل }به اشتراک گذاشتید", 10 | "A social mood is shared" : "یک روحیه اجتماعی مشترک است", 11 | "mood" : "حالت", 12 | "Your mood over the clouds" : "حال و هوای شما روی ابرها", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "** خلق و خوی ** از برنامه های ** فعالیت ** و ** محافل ** استفاده کنید تا از ابزار رسانه های اجتماعی مناسب برای Nextcloud خود استفاده کنید.\n\n_ نکته: ** خلق و خوی ** کاهش یافته و دیگر حفظ نمی شود. لطفاً به برنامه ** Social ** بروید.\n\n💬 با ** حال و هوای ** ، شما می توانید فوراً متن کوتاه خود را با سایر کاربران در مورد خود به اشتراک بگذارید: می تواند یک به روزرسانی وضعیت ، یک پیوند ، یک اطلاعات یا هر چیز دیگری باشد که می خواهید.\nلازم نیست با همه به اشتراک بگذارید: با تشکر از برنامه ** Circles ** ، تصمیم می گیرید چه کسی می تواند روحیه شما را ببیند\n\nاگر می خواهید با موارد دیگر ارتباط برقرار کنید ، می توانید حلقه‌های خود را با آنها فدراسیون کنید.\n_circles_ خود را با ابرهای از راه دور پیوند دهید و پیام های شما در سراسر شبکه پخش می شود!" 14 | }, 15 | "nplurals=2; plural=(n > 1);"); 16 | -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "روحیه جدید", 3 | "Share with ..." : "به اشتراک گذاشتن با ...", 4 | "Share your mood" : "حال و هوای خود را به اشتراک بگذارید", 5 | "{author} shared a mood with you" : "{نویسنده {روحیه ای را با شما به اشتراک گذاشت", 6 | "{author} shared a mood with {circles}" : "{نویسنده } خلق و خوی را با {حلقه‌ها} به اشتراک گذاشت", 7 | "You shared a mood with {circles}" : "شما خلق و خوی را با {محافل }به اشتراک گذاشتید", 8 | "A social mood is shared" : "یک روحیه اجتماعی مشترک است", 9 | "mood" : "حالت", 10 | "Your mood over the clouds" : "حال و هوای شما روی ابرها", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "** خلق و خوی ** از برنامه های ** فعالیت ** و ** محافل ** استفاده کنید تا از ابزار رسانه های اجتماعی مناسب برای Nextcloud خود استفاده کنید.\n\n_ نکته: ** خلق و خوی ** کاهش یافته و دیگر حفظ نمی شود. لطفاً به برنامه ** Social ** بروید.\n\n💬 با ** حال و هوای ** ، شما می توانید فوراً متن کوتاه خود را با سایر کاربران در مورد خود به اشتراک بگذارید: می تواند یک به روزرسانی وضعیت ، یک پیوند ، یک اطلاعات یا هر چیز دیگری باشد که می خواهید.\nلازم نیست با همه به اشتراک بگذارید: با تشکر از برنامه ** Circles ** ، تصمیم می گیرید چه کسی می تواند روحیه شما را ببیند\n\nاگر می خواهید با موارد دیگر ارتباط برقرار کنید ، می توانید حلقه‌های خود را با آنها فدراسیون کنید.\n_circles_ خود را با ابرهای از راه دور پیوند دهید و پیام های شما در سراسر شبکه پخش می شود!" 12 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 13 | } -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Uusi mielentila", 5 | "Share with ..." : "Jaa...", 6 | "Share your mood" : "Jaa mielentilasi", 7 | "{author} shared a mood with you" : "{author} jakoi mielentilansa kanssasi", 8 | "Your mood over the clouds" : "Mielentilasi pilvien yläpuolella" 9 | }, 10 | "nplurals=2; plural=(n != 1);"); 11 | -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Uusi mielentila", 3 | "Share with ..." : "Jaa...", 4 | "Share your mood" : "Jaa mielentilasi", 5 | "{author} shared a mood with you" : "{author} jakoi mielentilansa kanssasi", 6 | "Your mood over the clouds" : "Mielentilasi pilvien yläpuolella" 7 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 8 | } -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nouvelle humeur", 5 | "Share with ..." : "Partager avec...", 6 | "Share your mood" : "Partager votre humeur", 7 | "{author} shared a mood with you" : "{author} a partagé son humeur avec vous", 8 | "{author} shared a mood with {circles}" : "{author} a partagé son humeur avec {circles}", 9 | "You shared a mood with {circles}" : "Vous avez partagé votre humeur avec {circles}", 10 | "A social mood is shared" : "Une humeur sociale est partagée", 11 | "mood" : "humeur", 12 | "Your mood over the clouds" : "Votre humeur dans le Cloud", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**Humeur** utilise les applications **Activité** et **Cercles** pour faire un outil social parfait pour votre Nextcloud.\n\n_Note: **Humeur** est déprécié et n'est plus maintenue. Veuillez envisager de passer à l’application **Social**_\n\n💬 Avec **Humeur**, vous pouvez partager instantanément un message court avec les autres utilisateurs de votre instance : il peut s'agir d'une mise à jour de votre statut, d'un lien, d'une information ou ce que vous voulez.\nVous n'avez pas besoin de partager avec tout le monde : grâce à l'application **Cercles**, vous décidez qui peut voir vos humeurs 🔒\n\nSi vous voulez vous connecter avec d'autres instances, vous pouvez fusionner vos Cercles avec elles.\nReliez vos _Cercles_ avec d'autres Cloud et vos messages seront diffusés partout dans le monde ! 🚀" 14 | }, 15 | "nplurals=2; plural=(n > 1);"); 16 | -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nouvelle humeur", 3 | "Share with ..." : "Partager avec...", 4 | "Share your mood" : "Partager votre humeur", 5 | "{author} shared a mood with you" : "{author} a partagé son humeur avec vous", 6 | "{author} shared a mood with {circles}" : "{author} a partagé son humeur avec {circles}", 7 | "You shared a mood with {circles}" : "Vous avez partagé votre humeur avec {circles}", 8 | "A social mood is shared" : "Une humeur sociale est partagée", 9 | "mood" : "humeur", 10 | "Your mood over the clouds" : "Votre humeur dans le Cloud", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**Humeur** utilise les applications **Activité** et **Cercles** pour faire un outil social parfait pour votre Nextcloud.\n\n_Note: **Humeur** est déprécié et n'est plus maintenue. Veuillez envisager de passer à l’application **Social**_\n\n💬 Avec **Humeur**, vous pouvez partager instantanément un message court avec les autres utilisateurs de votre instance : il peut s'agir d'une mise à jour de votre statut, d'un lien, d'une information ou ce que vous voulez.\nVous n'avez pas besoin de partager avec tout le monde : grâce à l'application **Cercles**, vous décidez qui peut voir vos humeurs 🔒\n\nSi vous voulez vous connecter avec d'autres instances, vous pouvez fusionner vos Cercles avec elles.\nReliez vos _Cercles_ avec d'autres Cloud et vos messages seront diffusés partout dans le monde ! 🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 13 | } -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Novo estado de ánimo", 5 | "Share with ..." : "Compartir con...", 6 | "Share your mood" : "Compartir o seu estado de ánimo", 7 | "{author} shared a mood with you" : "{actor} compartiu o seu estado de ánimo con vostede", 8 | "{author} shared a mood with {circles}" : "{actor} compartiu o seu estado de ánimo con {circles}", 9 | "You shared a mood with {circles}" : "Vostede compartiu o seu estado de ánimo con {circles}", 10 | "A social mood is shared" : "Foi compartido un estado de ánimo social", 11 | "mood" : "estado de ánimo", 12 | "Your mood over the clouds" : "O seu estado de ánimo polas nubes", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** (estado de ánimo) emprega as aplicacións **Actividade** e **Círculos** para crear a ferramenta de medios sociais perfecta para o seu Nextcloud.\n\n_Nota: **mood** é obsoleto e xa non dispón de mantemento. Considere cambiar á aplicación **Social**_\n\n💬 Co **mood**, pode compartir instantaneamente un pequeno texto con outros usuarios na súa instancia: pode ser unha actualización de estado, unha ligazón, unha información ou calquera cousa que queira.\nNon ten que compartir con todo o mundo: grazas á aplicación **Círculos**, decida quen pode ver o seu estado de ánimo 🔒\n\nSe quere conectarse con outras instancias, pode federar os seus círculos con elas.\nLigue os seus _círculos_ con nubes remotas e as súas mensaxes emitirase por toda a malla. 🚀" 14 | }, 15 | "nplurals=2; plural=(n != 1);"); 16 | -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Novo estado de ánimo", 3 | "Share with ..." : "Compartir con...", 4 | "Share your mood" : "Compartir o seu estado de ánimo", 5 | "{author} shared a mood with you" : "{actor} compartiu o seu estado de ánimo con vostede", 6 | "{author} shared a mood with {circles}" : "{actor} compartiu o seu estado de ánimo con {circles}", 7 | "You shared a mood with {circles}" : "Vostede compartiu o seu estado de ánimo con {circles}", 8 | "A social mood is shared" : "Foi compartido un estado de ánimo social", 9 | "mood" : "estado de ánimo", 10 | "Your mood over the clouds" : "O seu estado de ánimo polas nubes", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** (estado de ánimo) emprega as aplicacións **Actividade** e **Círculos** para crear a ferramenta de medios sociais perfecta para o seu Nextcloud.\n\n_Nota: **mood** é obsoleto e xa non dispón de mantemento. Considere cambiar á aplicación **Social**_\n\n💬 Co **mood**, pode compartir instantaneamente un pequeno texto con outros usuarios na súa instancia: pode ser unha actualización de estado, unha ligazón, unha información ou calquera cousa que queira.\nNon ten que compartir con todo o mundo: grazas á aplicación **Círculos**, decida quen pode ver o seu estado de ánimo 🔒\n\nSe quere conectarse con outras instancias, pode federar os seus círculos con elas.\nLigue os seus _círculos_ con nubes remotas e as súas mensaxes emitirase por toda a malla. 🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 13 | } -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "מצב רוח חדש", 5 | "Share with ..." : "שיתוף עם…", 6 | "Share your mood" : "שיתוף מצב הרוח שלך", 7 | "{author} shared a mood with you" : "שותף אתך מצב רוח על ידי {author}", 8 | "{author} shared a mood with {circles}" : "שותף מצב רוח עם {circles} על ידי {author}", 9 | "You shared a mood with {circles}" : "שיתפת מצב רוח עם {circles}", 10 | "A social mood is shared" : "שותף מצב רוח חברתי", 11 | "mood" : "מצב רוח", 12 | "Your mood over the clouds" : "מצב הרוח שלך בעננים" 13 | }, 14 | "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"); 15 | -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "מצב רוח חדש", 3 | "Share with ..." : "שיתוף עם…", 4 | "Share your mood" : "שיתוף מצב הרוח שלך", 5 | "{author} shared a mood with you" : "שותף אתך מצב רוח על ידי {author}", 6 | "{author} shared a mood with {circles}" : "שותף מצב רוח עם {circles} על ידי {author}", 7 | "You shared a mood with {circles}" : "שיתפת מצב רוח עם {circles}", 8 | "A social mood is shared" : "שותף מצב רוח חברתי", 9 | "mood" : "מצב רוח", 10 | "Your mood over the clouds" : "מצב הרוח שלך בעננים" 11 | },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;" 12 | } -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Novo raspoloženje", 5 | "Share with ..." : "Dijeli s…", 6 | "Share your mood" : "Podijelite svoje raspoloženje", 7 | "{author} shared a mood with you" : "{author} je podijelio svoje raspoloženje s vama", 8 | "{author} shared a mood with {circles}" : "{author} je podijelio svoje raspoloženje s {circles}", 9 | "You shared a mood with {circles}" : "Podijelili ste raspoloženje s {circles}", 10 | "A social mood is shared" : "Dijeli se društveno raspoloženje", 11 | "mood" : "raspoloženje", 12 | "Your mood over the clouds" : "Vaše raspoloženje nad oblacima", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**raspoloženje** koristite se aplikacijom **Activity** i **Circles** za izradu savršenog alata na društvenim mrežama za svoj Nextcloud.\n\n_Napomena: **raspoloženje** je zastarjelo i više se ne održava. Zamijenite ga aplikacijom **Social**._\n\n💬 **raspoloženje** vam omogućuje da trenutačno podijelite kratki tekst s drugim korisnicima u svojoj instanci: to može biti ažuriranje statusa, poveznica, informacija ili bilo što drugo.\nNe morate dijeliti sa svima: zahvaljujući aplikaciji **Circles** sami odlučujete tko može vidjeti vaša raspoloženja 🔒\n\nAko se želite povezati s drugim instancama, možete udružiti svoje krugove.\nPovežite svoje _krugove_ s udaljenim oblacima i vaše će se poruke emitirati po cijeloj mreži!🚀" 14 | }, 15 | "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"); 16 | -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Novo raspoloženje", 3 | "Share with ..." : "Dijeli s…", 4 | "Share your mood" : "Podijelite svoje raspoloženje", 5 | "{author} shared a mood with you" : "{author} je podijelio svoje raspoloženje s vama", 6 | "{author} shared a mood with {circles}" : "{author} je podijelio svoje raspoloženje s {circles}", 7 | "You shared a mood with {circles}" : "Podijelili ste raspoloženje s {circles}", 8 | "A social mood is shared" : "Dijeli se društveno raspoloženje", 9 | "mood" : "raspoloženje", 10 | "Your mood over the clouds" : "Vaše raspoloženje nad oblacima", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**raspoloženje** koristite se aplikacijom **Activity** i **Circles** za izradu savršenog alata na društvenim mrežama za svoj Nextcloud.\n\n_Napomena: **raspoloženje** je zastarjelo i više se ne održava. Zamijenite ga aplikacijom **Social**._\n\n💬 **raspoloženje** vam omogućuje da trenutačno podijelite kratki tekst s drugim korisnicima u svojoj instanci: to može biti ažuriranje statusa, poveznica, informacija ili bilo što drugo.\nNe morate dijeliti sa svima: zahvaljujući aplikaciji **Circles** sami odlučujete tko može vidjeti vaša raspoloženja 🔒\n\nAko se želite povezati s drugim instancama, možete udružiti svoje krugove.\nPovežite svoje _krugove_ s udaljenim oblacima i vaše će se poruke emitirati po cijeloj mreži!🚀" 12 | },"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;" 13 | } -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Új hangulat", 5 | "Share with ..." : "Megosztás…", 6 | "Share your mood" : "Ossza meg a hangulatát", 7 | "{author} shared a mood with you" : "{author} megosztotta Önnel a hangulatát", 8 | "{author} shared a mood with {circles}" : "{author} megosztotta a hangulatát ezekkel a körökkel: {circles}", 9 | "You shared a mood with {circles}" : "Megosztotta a hangulatát ezekkel a körökkel: {circles}", 10 | "A social mood is shared" : "Egy közösségi hangulat van megosztva", 11 | "mood" : "hangulat", 12 | "Your mood over the clouds" : "A hangulata a felhők felett", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "A **hangulat** a **Tevékenység** és **Körök** alkalmazásokat használja, hogy a tökéletes közösségi média eszköz legyen a Nextcloudjához.\n\n_Megjegyzés: a **hangulat** elavult, és már nincs karbantartva. Fontolja meg a **Közösségi** alkalmazásra váltást._\n\n💬 A **hangulattal** azonnal megoszthat egy rövid szöveget a példány többi felhasználójával: ez lehet állapotfrissítés, hivatkozás, információ vagy bármi amit szeretne.\nNem kell megosztania mindenkivel: a **Körök** alkalmazásnak köszönhetően eldöntheti, hogy ki láthatja a hangulatait 🔒\n\nHa már példányokhoz akar kapcsolódni, akkor összevonhatja a köreit azokkal.\nKösse össze a _köreit_ a távoli felhőkkel, és az üzenetei mindenhová eljutnak. 🚀" 14 | }, 15 | "nplurals=2; plural=(n != 1);"); 16 | -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Új hangulat", 3 | "Share with ..." : "Megosztás…", 4 | "Share your mood" : "Ossza meg a hangulatát", 5 | "{author} shared a mood with you" : "{author} megosztotta Önnel a hangulatát", 6 | "{author} shared a mood with {circles}" : "{author} megosztotta a hangulatát ezekkel a körökkel: {circles}", 7 | "You shared a mood with {circles}" : "Megosztotta a hangulatát ezekkel a körökkel: {circles}", 8 | "A social mood is shared" : "Egy közösségi hangulat van megosztva", 9 | "mood" : "hangulat", 10 | "Your mood over the clouds" : "A hangulata a felhők felett", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "A **hangulat** a **Tevékenység** és **Körök** alkalmazásokat használja, hogy a tökéletes közösségi média eszköz legyen a Nextcloudjához.\n\n_Megjegyzés: a **hangulat** elavult, és már nincs karbantartva. Fontolja meg a **Közösségi** alkalmazásra váltást._\n\n💬 A **hangulattal** azonnal megoszthat egy rövid szöveget a példány többi felhasználójával: ez lehet állapotfrissítés, hivatkozás, információ vagy bármi amit szeretne.\nNem kell megosztania mindenkivel: a **Körök** alkalmazásnak köszönhetően eldöntheti, hogy ki láthatja a hangulatait 🔒\n\nHa már példányokhoz akar kapcsolódni, akkor összevonhatja a köreit azokkal.\nKösse össze a _köreit_ a távoli felhőkkel, és az üzenetei mindenhová eljutnak. 🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 13 | } -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Ný skapbrigði", 5 | "Share with ..." : "Deila með ...", 6 | "Share your mood" : "Deildu skapbrigðunum þínum", 7 | "{author} shared a mood with you" : "{author} deildi skapbrigðum með þér", 8 | "{author} shared a mood with {circles}" : "{author} deildi skapbrigðum með {circles}", 9 | "You shared a mood with {circles}" : "Þú deildir skapbrigðum með {circles}", 10 | "A social mood is shared" : "Samfélagslegum skapbrigðum er deilt", 11 | "mood" : "skapbrigði", 12 | "Your mood over the clouds" : "Skapbrigðin þín út um gagnaskýin", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**skapbrigði** (mood) notar forritin **Virkni** (Activity) og **Hringir** (Circles) til að útbúa einstaka samfélagsmiðlaupplifun í Nextcloud.\n\n_Athugaðu: **mood** er úrelt og ekki lengur viðhaldið. Íhugaðu að skipta yfir í **Social** forritið._\n\n💬 Með **skapbrigðum** geturðu á augnabliki deilt stuttum texta með öðrum notendum á þjóninum þínum: það getur verið stöðuuppfærsla, tengill, upplýsingar eða bara hvað sem er.\nÞú þarft ekki að deila með öllum: með **Hringir** forritinu geturðu ákvarðað hverjir sjá skapbrigðin þín 🔒\n\nEf þú vilt tengjast við aðra þjóna, geturðu útbúið skýjasamband fyrir Hringina í þeim.\nTengdu _hringina_ þína við fjartengd gagnaský og þá verður skilaboðunum þínum útvarpað yfir allt það net!🚀" 14 | }, 15 | "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); 16 | -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Ný skapbrigði", 3 | "Share with ..." : "Deila með ...", 4 | "Share your mood" : "Deildu skapbrigðunum þínum", 5 | "{author} shared a mood with you" : "{author} deildi skapbrigðum með þér", 6 | "{author} shared a mood with {circles}" : "{author} deildi skapbrigðum með {circles}", 7 | "You shared a mood with {circles}" : "Þú deildir skapbrigðum með {circles}", 8 | "A social mood is shared" : "Samfélagslegum skapbrigðum er deilt", 9 | "mood" : "skapbrigði", 10 | "Your mood over the clouds" : "Skapbrigðin þín út um gagnaskýin", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**skapbrigði** (mood) notar forritin **Virkni** (Activity) og **Hringir** (Circles) til að útbúa einstaka samfélagsmiðlaupplifun í Nextcloud.\n\n_Athugaðu: **mood** er úrelt og ekki lengur viðhaldið. Íhugaðu að skipta yfir í **Social** forritið._\n\n💬 Með **skapbrigðum** geturðu á augnabliki deilt stuttum texta með öðrum notendum á þjóninum þínum: það getur verið stöðuuppfærsla, tengill, upplýsingar eða bara hvað sem er.\nÞú þarft ekki að deila með öllum: með **Hringir** forritinu geturðu ákvarðað hverjir sjá skapbrigðin þín 🔒\n\nEf þú vilt tengjast við aðra þjóna, geturðu útbúið skýjasamband fyrir Hringina í þeim.\nTengdu _hringina_ þína við fjartengd gagnaský og þá verður skilaboðunum þínum útvarpað yfir allt það net!🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" 13 | } -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nuovo umore", 5 | "Share with ..." : "Condividi con…", 6 | "Share your mood" : "Condividi il tuo umore", 7 | "{author} shared a mood with you" : "{author} ha condiviso un umore con te", 8 | "{author} shared a mood with {circles}" : "{author} ha condiviso un umore con {circles}", 9 | "You shared a mood with {circles}" : "Hai condiviso un umore con {circles}", 10 | "A social mood is shared" : "Un umoreumore sociale è condiviso", 11 | "mood" : "umore", 12 | "Your mood over the clouds" : "Il tuo umore sopra le nuvole", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**Umore** utilizza le applicazioni **Attività** e **Cerchie** per creare lo strumento sociale perfetto per il tuo Nextcloud.\n\n_Nota: **Umore** è sconsigliato e non più mantenuto. Considera la possibilità di passare all'applicazione **Social**_\n💬 Con **Umore**, puoi condividere immediatamente un breve testo con altri utenti sulla tua istanza: può essere un aggiornamento di stato, un collegamento, un'informazione o qualsiasi cosa tu voglia.\nNon devi condividere con chiunque: grazie all'applicazione **Cerchie**, decidi tu chi può vedere il tuo umore 🔒\n\nSe desideri collegarti con altre istanze, puoi federare le tue cerchie con loro.\nCollega le tue _cerchie_ con le nuvole remote e il tuo messaggio sarà trasmesso su tutta la rete!🚀" 14 | }, 15 | "nplurals=2; plural=(n != 1);"); 16 | -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nuovo umore", 3 | "Share with ..." : "Condividi con…", 4 | "Share your mood" : "Condividi il tuo umore", 5 | "{author} shared a mood with you" : "{author} ha condiviso un umore con te", 6 | "{author} shared a mood with {circles}" : "{author} ha condiviso un umore con {circles}", 7 | "You shared a mood with {circles}" : "Hai condiviso un umore con {circles}", 8 | "A social mood is shared" : "Un umoreumore sociale è condiviso", 9 | "mood" : "umore", 10 | "Your mood over the clouds" : "Il tuo umore sopra le nuvole", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**Umore** utilizza le applicazioni **Attività** e **Cerchie** per creare lo strumento sociale perfetto per il tuo Nextcloud.\n\n_Nota: **Umore** è sconsigliato e non più mantenuto. Considera la possibilità di passare all'applicazione **Social**_\n💬 Con **Umore**, puoi condividere immediatamente un breve testo con altri utenti sulla tua istanza: può essere un aggiornamento di stato, un collegamento, un'informazione o qualsiasi cosa tu voglia.\nNon devi condividere con chiunque: grazie all'applicazione **Cerchie**, decidi tu chi può vedere il tuo umore 🔒\n\nSe desideri collegarti con altre istanze, puoi federare le tue cerchie con loro.\nCollega le tue _cerchie_ con le nuvole remote e il tuo messaggio sarà trasmesso su tutta la rete!🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 13 | } -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "ニューモード", 5 | "Share with ..." : "共有 ...", 6 | "Share your mood" : "モード共有", 7 | "{author} shared a mood with you" : "{author} が自分とモード共有", 8 | "{author} shared a mood with {circles}" : "{author} が {circles} とモード共有", 9 | "You shared a mood with {circles}" : "{circles} とモード共有", 10 | "A social mood is shared" : "ソーシャルモードは共有されました", 11 | "mood" : "モード", 12 | "Your mood over the clouds" : "モードをクラウドに接続する", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** は、**Activity** と **Circles** アプリを使用して Nextcloud 用の完璧なソーシャルメディアツールを形作ります。\n\n_注:**mood**は廃止予定で、もう保守されていません。 **Social**アプリへの切り替えを検討してください。\n\n**mood** の 💬 ではインスタンス上のメンバーとショートメッセージのやり取り他、今のステータス、インフォメーション、リンクの共有などができます。\n全員と共有する必要は有りません。**Circles** アプリで共有範囲を限定できます。🔒\n\nインスタンスを超えて接続したい場合は、サークルとサークルを連携させます。\n自分の _circles_ をリモートクラウドにリンクさせれば、あなたのメッセージは情報網全体に放送されます🚀" 14 | }, 15 | "nplurals=1; plural=0;"); 16 | -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "ニューモード", 3 | "Share with ..." : "共有 ...", 4 | "Share your mood" : "モード共有", 5 | "{author} shared a mood with you" : "{author} が自分とモード共有", 6 | "{author} shared a mood with {circles}" : "{author} が {circles} とモード共有", 7 | "You shared a mood with {circles}" : "{circles} とモード共有", 8 | "A social mood is shared" : "ソーシャルモードは共有されました", 9 | "mood" : "モード", 10 | "Your mood over the clouds" : "モードをクラウドに接続する", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** は、**Activity** と **Circles** アプリを使用して Nextcloud 用の完璧なソーシャルメディアツールを形作ります。\n\n_注:**mood**は廃止予定で、もう保守されていません。 **Social**アプリへの切り替えを検討してください。\n\n**mood** の 💬 ではインスタンス上のメンバーとショートメッセージのやり取り他、今のステータス、インフォメーション、リンクの共有などができます。\n全員と共有する必要は有りません。**Circles** アプリで共有範囲を限定できます。🔒\n\nインスタンスを超えて接続したい場合は、サークルとサークルを連携させます。\n自分の _circles_ をリモートクラウドにリンクさせれば、あなたのメッセージは情報網全体に放送されます🚀" 12 | },"pluralForm" :"nplurals=1; plural=0;" 13 | } -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "새 분위기", 5 | "Share with ..." : "공유 대상 ...", 6 | "Share your mood" : "내 분위기 공유", 7 | "{author} shared a mood with you" : "{author} 님이 여러분과 분위기를 공유함", 8 | "{author} shared a mood with {circles}" : "{author} 님이 {circles}와(과) 분위기를 공유함", 9 | "You shared a mood with {circles}" : "{circles}와(과) 분위기를 공유함", 10 | "A social mood is shared" : "소셜 분위기를 공유함", 11 | "mood" : "분위기", 12 | "Your mood over the clouds" : "클라우드에 느껴지는 분위기" 13 | }, 14 | "nplurals=1; plural=0;"); 15 | -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "새 분위기", 3 | "Share with ..." : "공유 대상 ...", 4 | "Share your mood" : "내 분위기 공유", 5 | "{author} shared a mood with you" : "{author} 님이 여러분과 분위기를 공유함", 6 | "{author} shared a mood with {circles}" : "{author} 님이 {circles}와(과) 분위기를 공유함", 7 | "You shared a mood with {circles}" : "{circles}와(과) 분위기를 공유함", 8 | "A social mood is shared" : "소셜 분위기를 공유함", 9 | "mood" : "분위기", 10 | "Your mood over the clouds" : "클라우드에 느껴지는 분위기" 11 | },"pluralForm" :"nplurals=1; plural=0;" 12 | } -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "Share with ..." : "Koplietot ar..." 5 | }, 6 | "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); 7 | -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Share with ..." : "Koplietot ar..." 3 | },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" 4 | } -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nytt humør", 5 | "Share with ..." : "Del med …", 6 | "mood" : "humør" 7 | }, 8 | "nplurals=2; plural=(n != 1);"); 9 | -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nytt humør", 3 | "Share with ..." : "Del med …", 4 | "mood" : "humør" 5 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 6 | } -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nieuwe stemming", 5 | "Share with ..." : "Delen met ...", 6 | "Share your mood" : "Deel je stemming", 7 | "{author} shared a mood with you" : "{author} deelde een stemming met jou", 8 | "{author} shared a mood with {circles}" : "{author} deelde een stemming met {circles}", 9 | "You shared a mood with {circles}" : "Je deelde een stemming met {circles}", 10 | "A social mood is shared" : "Een sociale stemming is gedeeld", 11 | "mood" : "stemming", 12 | "Your mood over the clouds" : "Je stemming in de clouds", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**stemming** gebruikt de **Activiteit** en **Kringen** apps om het perfecte social media gereedschap voor je Nextcloud te maken.\n\n_Let op: **stemming** is vervallen en wordt niet meer onderhouden. Gebruik bij voorkeur de **Social** app_\n\n💬 Met **stemming**, kun je direct een korte tekst met andere gebruikers op je server delen: dat kan een statusupdate zijn, een link, informatie of wat je maar wilt.\nJe hoeft niet met iedereen te delen: dankzij de **Kringen** app, kun je zelf bepalen met wie je jouw stemmingen wilt delen 🔒\n\nAls je een verbinding wilt maken met andere servers, kunt je je kringen daarmee samenvoegen.\nVerbind je _kringen_ met externe clouds en je berichten worden overal in het netwerk uitgezonden!🚀" 14 | }, 15 | "nplurals=2; plural=(n != 1);"); 16 | -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nieuwe stemming", 3 | "Share with ..." : "Delen met ...", 4 | "Share your mood" : "Deel je stemming", 5 | "{author} shared a mood with you" : "{author} deelde een stemming met jou", 6 | "{author} shared a mood with {circles}" : "{author} deelde een stemming met {circles}", 7 | "You shared a mood with {circles}" : "Je deelde een stemming met {circles}", 8 | "A social mood is shared" : "Een sociale stemming is gedeeld", 9 | "mood" : "stemming", 10 | "Your mood over the clouds" : "Je stemming in de clouds", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**stemming** gebruikt de **Activiteit** en **Kringen** apps om het perfecte social media gereedschap voor je Nextcloud te maken.\n\n_Let op: **stemming** is vervallen en wordt niet meer onderhouden. Gebruik bij voorkeur de **Social** app_\n\n💬 Met **stemming**, kun je direct een korte tekst met andere gebruikers op je server delen: dat kan een statusupdate zijn, een link, informatie of wat je maar wilt.\nJe hoeft niet met iedereen te delen: dankzij de **Kringen** app, kun je zelf bepalen met wie je jouw stemmingen wilt delen 🔒\n\nAls je een verbinding wilt maken met andere servers, kunt je je kringen daarmee samenvoegen.\nVerbind je _kringen_ met externe clouds en je berichten worden overal in het netwerk uitgezonden!🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 13 | } -------------------------------------------------------------------------------- /l10n/pl.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nowy nastrój", 5 | "Share with ..." : "Udostępnij z…", 6 | "Share your mood" : "Udostępnij swój nastrój", 7 | "{author} shared a mood with you" : "{author} udostępnił swój nastrój z Tobą", 8 | "{author} shared a mood with {circles}" : "{author} udostępnił swój nastrój z {circles}", 9 | "You shared a mood with {circles}" : "Udostępniłeś swój nastrój z {circles}", 10 | "A social mood is shared" : "Społecznościowy nastrój został udostępniony", 11 | "mood" : "nastrój", 12 | "Your mood over the clouds" : "Twój nastrój w chmurach", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** używaj w aplikacji **Activity** i **Circles**, aby stworzyć idealne narzędzie społecznościowe dla Twojego Nextcloud.\n\n_Uwaga: **mood** jest przestarzały i nie jest już rozwijany. Proszę rozważyć przejście na aplikację **Social**._\n\n💬 Z **mood**, możesz natychmiast udostępnić krótki tekst innym użytkownikom na swojej instancji: może to być aktualizacja statusu, link, informacja lub cokolwiek innego.\nNie musisz dzielić się ze wszystkimi: dzięki aplikacji **Circles** decydujesz, kto widzi Twoje nastroje 🔒\n\nJeśli chcesz połączyć się z innymi instancjami, możesz zrzeszać swoje Koła z nimi.\nPołącz swoje _circles_ ze zdalnymi chmurami, a Twoje wiadomości będą transmitowane w całej sieci!" 14 | }, 15 | "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); 16 | -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nowy nastrój", 3 | "Share with ..." : "Udostępnij z…", 4 | "Share your mood" : "Udostępnij swój nastrój", 5 | "{author} shared a mood with you" : "{author} udostępnił swój nastrój z Tobą", 6 | "{author} shared a mood with {circles}" : "{author} udostępnił swój nastrój z {circles}", 7 | "You shared a mood with {circles}" : "Udostępniłeś swój nastrój z {circles}", 8 | "A social mood is shared" : "Społecznościowy nastrój został udostępniony", 9 | "mood" : "nastrój", 10 | "Your mood over the clouds" : "Twój nastrój w chmurach", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** używaj w aplikacji **Activity** i **Circles**, aby stworzyć idealne narzędzie społecznościowe dla Twojego Nextcloud.\n\n_Uwaga: **mood** jest przestarzały i nie jest już rozwijany. Proszę rozważyć przejście na aplikację **Social**._\n\n💬 Z **mood**, możesz natychmiast udostępnić krótki tekst innym użytkownikom na swojej instancji: może to być aktualizacja statusu, link, informacja lub cokolwiek innego.\nNie musisz dzielić się ze wszystkimi: dzięki aplikacji **Circles** decydujesz, kto widzi Twoje nastroje 🔒\n\nJeśli chcesz połączyć się z innymi instancjami, możesz zrzeszać swoje Koła z nimi.\nPołącz swoje _circles_ ze zdalnymi chmurami, a Twoje wiadomości będą transmitowane w całej sieci!" 12 | },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" 13 | } -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Novo humor", 5 | "Share with ..." : "Compartilhar com...", 6 | "Share your mood" : "Compartilhar seu humor", 7 | "{author} shared a mood with you" : "{author} compartilhou um humor com você", 8 | "{author} shared a mood with {circles}" : "{author} compartilhou um humor com {circles}", 9 | "You shared a mood with {circles}" : "Você compartilhou um humor com {circles}", 10 | "A social mood is shared" : "Um humor social está compartilhado", 11 | "mood" : "humor", 12 | "Your mood over the clouds" : "Seu humor nas nuvens", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** use os aplicativos **Activity** e **Circles** para criar a ferramenta perfeita de mídia social para seu Nextcloud.\n\n_Atenção: **mood** está obsoleto e não é mais mantido. Considere a mudança para o aplicativo **Social**._\n\n💬 Com **mood**, você pode compartilhar instantaneamente um texto curto com outros usuários: pode ser uma atualização de status, um link, uma informação ou o que quiser.\nVocê não precisa compartilhar com todos: graças ao aplicativo **Circles**, você decide quem pode ver seu humor 🔒\n\nSe você deseja se conectar a outras instâncias, é possível federar seus círculos com eles.\nLigue seus _circles_ com nuvens remotas e suas mensagens serão transmitidas por toda a rede!🚀" 14 | }, 15 | "nplurals=2; plural=(n > 1);"); 16 | -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Novo humor", 3 | "Share with ..." : "Compartilhar com...", 4 | "Share your mood" : "Compartilhar seu humor", 5 | "{author} shared a mood with you" : "{author} compartilhou um humor com você", 6 | "{author} shared a mood with {circles}" : "{author} compartilhou um humor com {circles}", 7 | "You shared a mood with {circles}" : "Você compartilhou um humor com {circles}", 8 | "A social mood is shared" : "Um humor social está compartilhado", 9 | "mood" : "humor", 10 | "Your mood over the clouds" : "Seu humor nas nuvens", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**mood** use os aplicativos **Activity** e **Circles** para criar a ferramenta perfeita de mídia social para seu Nextcloud.\n\n_Atenção: **mood** está obsoleto e não é mais mantido. Considere a mudança para o aplicativo **Social**._\n\n💬 Com **mood**, você pode compartilhar instantaneamente um texto curto com outros usuários: pode ser uma atualização de status, um link, uma informação ou o que quiser.\nVocê não precisa compartilhar com todos: graças ao aplicativo **Circles**, você decide quem pode ver seu humor 🔒\n\nSe você deseja se conectar a outras instâncias, é possível federar seus círculos com eles.\nLigue seus _circles_ com nuvens remotas e suas mensagens serão transmitidas por toda a rede!🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 13 | } -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "Share with ..." : "Împarte cu... ", 5 | "{author} shared a mood with you" : "{author} a partajat starea cu tine", 6 | "You shared a mood with {circles}" : "Ai partajat o stare cu {circles} ", 7 | "mood" : "stare", 8 | "Your mood over the clouds" : "starea ta deasupra norilor" 9 | }, 10 | "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); 11 | -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Share with ..." : "Împarte cu... ", 3 | "{author} shared a mood with you" : "{author} a partajat starea cu tine", 4 | "You shared a mood with {circles}" : "Ai partajat o stare cu {circles} ", 5 | "mood" : "stare", 6 | "Your mood over the clouds" : "starea ta deasupra norilor" 7 | },"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));" 8 | } -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Новое настроение", 5 | "Share with ..." : "Поделиться с...", 6 | "Share your mood" : "Поделись своим настроением", 7 | "{author} shared a mood with you" : "{author} поделился настроением с Вами", 8 | "{author} shared a mood with {circles}" : "{author} поделился настроением с {circles}", 9 | "You shared a mood with {circles}" : "Вы поделились настроением с {circles}", 10 | "A social mood is shared" : "Социальное настроение общедоступно", 11 | "mood" : "настроение", 12 | "Your mood over the clouds" : "Ваше настроение над облаками", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "Приложение **Настроение** использует приложения **Активности** и **Круги**, чтобы быть идеальным социальным инструментом для Nextcloud.\n\n_Внимание: приложение **настроение** является устаревшим и более не сопровождается. Используйте вместо него приложение **Social**_\n\n💬 **Настроение** позволяет обмениваться короткими текстами с другими пользователями вашего сервера: обновлениями статуса, ссылками сообщением или всем, что вы захотите.\nВам не нужно делиться со всеми: благодаря приложению **Круги**, вы решаете, кто может видеть ваши настроения 🔒\n\nЕсли вы хотите подключиться к другим серверам, вы можете объединить свои круги с ними.\nСвяжите свои _Круги_ с другими серверами и ваши сообщения будут транслироваться по всей сетке! 🚀" 14 | }, 15 | "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); 16 | -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Новое настроение", 3 | "Share with ..." : "Поделиться с...", 4 | "Share your mood" : "Поделись своим настроением", 5 | "{author} shared a mood with you" : "{author} поделился настроением с Вами", 6 | "{author} shared a mood with {circles}" : "{author} поделился настроением с {circles}", 7 | "You shared a mood with {circles}" : "Вы поделились настроением с {circles}", 8 | "A social mood is shared" : "Социальное настроение общедоступно", 9 | "mood" : "настроение", 10 | "Your mood over the clouds" : "Ваше настроение над облаками", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "Приложение **Настроение** использует приложения **Активности** и **Круги**, чтобы быть идеальным социальным инструментом для Nextcloud.\n\n_Внимание: приложение **настроение** является устаревшим и более не сопровождается. Используйте вместо него приложение **Social**_\n\n💬 **Настроение** позволяет обмениваться короткими текстами с другими пользователями вашего сервера: обновлениями статуса, ссылками сообщением или всем, что вы захотите.\nВам не нужно делиться со всеми: благодаря приложению **Круги**, вы решаете, кто может видеть ваши настроения 🔒\n\nЕсли вы хотите подключиться к другим серверам, вы можете объединить свои круги с ними.\nСвяжите свои _Круги_ с другими серверами и ваши сообщения будут транслироваться по всей сетке! 🚀" 12 | },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" 13 | } -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nová nálada", 5 | "Share with ..." : "Zdieľať s…", 6 | "Share your mood" : "Podeľte sa o svoju náladu", 7 | "{author} shared a mood with you" : "{author} s vami zdieľa náladu", 8 | "{author} shared a mood with {circles}" : "{author} zdieľa náladu s {circles}", 9 | "You shared a mood with {circles}" : "Náladu ste zdieľali s {circles}", 10 | "A social mood is shared" : "Spoločná nálada je zdieľaná", 11 | "mood" : "nálada", 12 | "Your mood over the clouds" : "Vaša nálada nad oblakmi", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "** Nálada ** Pomocou aplikácií ** Aktivita ** a ** Okruhy ** vytvoríte dokonalý nástroj pre sociálne médiá pre váš Nextcloud.\n\n_Poznámka: ** nálada ** je zastaraná a už nie je udržiavaná. Zvážte prechod na aplikáciu ** Sociálne **.\n\n💬 S ** náladou ** môžete s ostatnými používateľmi vo vašej inštancii okamžite zdieľať krátky text : môže to byť aktualizácia stavu, odkaz, informácia alebo čokoľvek, čo chcete.\nNemusíte zdieľať s každým: vďaka aplikácii ** Circles ** sa rozhodujete, kto môže vidieť vaše nálady 🔒\n\nAk sa chcete spojiť s inými inštanciami, môžete svoje kruhy s nimi prepojiť.\nPrepojte svoje kruhy s vzdialenými mrakmi a vaše správy sa budú šíriť po celej sieti! 🚀" 14 | }, 15 | "nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"); 16 | -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nová nálada", 3 | "Share with ..." : "Zdieľať s…", 4 | "Share your mood" : "Podeľte sa o svoju náladu", 5 | "{author} shared a mood with you" : "{author} s vami zdieľa náladu", 6 | "{author} shared a mood with {circles}" : "{author} zdieľa náladu s {circles}", 7 | "You shared a mood with {circles}" : "Náladu ste zdieľali s {circles}", 8 | "A social mood is shared" : "Spoločná nálada je zdieľaná", 9 | "mood" : "nálada", 10 | "Your mood over the clouds" : "Vaša nálada nad oblakmi", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "** Nálada ** Pomocou aplikácií ** Aktivita ** a ** Okruhy ** vytvoríte dokonalý nástroj pre sociálne médiá pre váš Nextcloud.\n\n_Poznámka: ** nálada ** je zastaraná a už nie je udržiavaná. Zvážte prechod na aplikáciu ** Sociálne **.\n\n💬 S ** náladou ** môžete s ostatnými používateľmi vo vašej inštancii okamžite zdieľať krátky text : môže to byť aktualizácia stavu, odkaz, informácia alebo čokoľvek, čo chcete.\nNemusíte zdieľať s každým: vďaka aplikácii ** Circles ** sa rozhodujete, kto môže vidieť vaše nálady 🔒\n\nAk sa chcete spojiť s inými inštanciami, môžete svoje kruhy s nimi prepojiť.\nPrepojte svoje kruhy s vzdialenými mrakmi a vaše správy sa budú šíriť po celej sieti! 🚀" 12 | },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);" 13 | } -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Trenutno počutje", 5 | "Share with ..." : "Omogoči souporabo ...", 6 | "Share your mood" : "Objavite svoje trenutno počutje", 7 | "{author} shared a mood with you" : "{author} vam sporoči svoje trenutno počutje", 8 | "{author} shared a mood with {circles}" : "{author} sporoči svoje trenutno počutje s krogom {circles}", 9 | "You shared a mood with {circles}" : "Objavite svoje trenutno počutje s krogom {circles}", 10 | "A social mood is shared" : "Objavljeno družbeno počutje ", 11 | "mood" : "počutje", 12 | "Your mood over the clouds" : "Vaše trenutno počutje prek oblakov" 13 | }, 14 | "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); 15 | -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Trenutno počutje", 3 | "Share with ..." : "Omogoči souporabo ...", 4 | "Share your mood" : "Objavite svoje trenutno počutje", 5 | "{author} shared a mood with you" : "{author} vam sporoči svoje trenutno počutje", 6 | "{author} shared a mood with {circles}" : "{author} sporoči svoje trenutno počutje s krogom {circles}", 7 | "You shared a mood with {circles}" : "Objavite svoje trenutno počutje s krogom {circles}", 8 | "A social mood is shared" : "Objavljeno družbeno počutje ", 9 | "mood" : "počutje", 10 | "Your mood over the clouds" : "Vaše trenutno počutje prek oblakov" 11 | },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" 12 | } -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Ново расположење", 5 | "Share with ..." : "Подели са...", 6 | "Share your mood" : "Поделите Ваше расположење", 7 | "{author} shared a mood with you" : "{author} је поделио своје расположење са Вама", 8 | "{author} shared a mood with {circles}" : "{author} је поделио своје расположење са кругом {circles}", 9 | "You shared a mood with {circles}" : "Поделили сте расположење са кругом {circles}", 10 | "A social mood is shared" : "Друштвено расположење је подељено", 11 | "mood" : "расположење", 12 | "Your mood over the clouds" : "Ваше расположење у облацима", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**Расположење** користи апликације **Активности** и **Кругови** да направи савршени алат за друштвене медије за Ваш Некстклауд.\n\n_Обавештење: **расположење** је застарела апликација и више се не одржава. Размотрите да је замените са апликацијом **Друштвених мрежа**._\n\n💬 Уз **расположења**, можете у секунди поделити кратак текст са осталим корисницима на Вашом серверу: може бити нова статусна порука, линк, или било шта што желите.\nНе морате ни делити расположење са свима: захваљујући апликацији **Кругова**, Ви одлучите ко може да види Ваше расположење 🔒\n\nАко желите да се повежете са другим серверима, можете здружити Ваше кругове са њима..\nПовежите Ваше _кругове_ са удаљеним серверима и Ваше поруке ће бити емитоване по целој мрежи!🚀" 14 | }, 15 | "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); 16 | -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Ново расположење", 3 | "Share with ..." : "Подели са...", 4 | "Share your mood" : "Поделите Ваше расположење", 5 | "{author} shared a mood with you" : "{author} је поделио своје расположење са Вама", 6 | "{author} shared a mood with {circles}" : "{author} је поделио своје расположење са кругом {circles}", 7 | "You shared a mood with {circles}" : "Поделили сте расположење са кругом {circles}", 8 | "A social mood is shared" : "Друштвено расположење је подељено", 9 | "mood" : "расположење", 10 | "Your mood over the clouds" : "Ваше расположење у облацима", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**Расположење** користи апликације **Активности** и **Кругови** да направи савршени алат за друштвене медије за Ваш Некстклауд.\n\n_Обавештење: **расположење** је застарела апликација и више се не одржава. Размотрите да је замените са апликацијом **Друштвених мрежа**._\n\n💬 Уз **расположења**, можете у секунди поделити кратак текст са осталим корисницима на Вашом серверу: може бити нова статусна порука, линк, или било шта што желите.\nНе морате ни делити расположење са свима: захваљујући апликацији **Кругова**, Ви одлучите ко може да види Ваше расположење 🔒\n\nАко желите да се повежете са другим серверима, можете здружити Ваше кругове са њима..\nПовежите Ваше _кругове_ са удаљеним серверима и Ваше поруке ће бити емитоване по целој мрежи!🚀" 12 | },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" 13 | } -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Nytt humör", 5 | "Share with ..." : "Dela med ...", 6 | "Share your mood" : "Dela ditt humör", 7 | "{author} shared a mood with you" : "{author} delade ett humör med dig", 8 | "{author} shared a mood with {circles}" : "{author} delade ett humör med {circles}", 9 | "You shared a mood with {circles}" : "Du delade ett humör med {circles}", 10 | "A social mood is shared" : "En social stämning delas", 11 | "mood" : "humör", 12 | "Your mood over the clouds" : "Ditt humör över molnen" 13 | }, 14 | "nplurals=2; plural=(n != 1);"); 15 | -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Nytt humör", 3 | "Share with ..." : "Dela med ...", 4 | "Share your mood" : "Dela ditt humör", 5 | "{author} shared a mood with you" : "{author} delade ett humör med dig", 6 | "{author} shared a mood with {circles}" : "{author} delade ett humör med {circles}", 7 | "You shared a mood with {circles}" : "Du delade ett humör med {circles}", 8 | "A social mood is shared" : "En social stämning delas", 9 | "mood" : "humör", 10 | "Your mood over the clouds" : "Ditt humör över molnen" 11 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 12 | } -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "Yeni duygu", 5 | "Share with ..." : "Şunlarla paylaş ...", 6 | "Share your mood" : "Duygunuzu paylaşın", 7 | "{author} shared a mood with you" : "{author} sizinle bir duygusunu paylaştı", 8 | "{author} shared a mood with {circles}" : "{author}, {circles} ile bir duygusunu paylaştı", 9 | "You shared a mood with {circles}" : "{circles} ile bir duygunuzu paylaştınız", 10 | "A social mood is shared" : "Bir sosyal duygu paylaşıldı", 11 | "mood" : "duygu", 12 | "Your mood over the clouds" : "Duygularınız bulutların üzerinde", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**Duygular** özelliği, **İşlemler** ve **Çevreler** uygulamalarını kullanarak Nextcloud için kusursuz bir sosyal ağ uygulaması oluşturur.\n\n_Not: **Duygular** uygulaması kullanımdan kaldırıldı. Onun yerine **Sosyal Ağ** uygulamasını kullanabilirsiniz_\n\n💬 **Duygular** ile diğer kullanıcılar ile anlık kısa iletiler paylaşabilirsiniz: Bu bir durum güncellemesi, bir bağlantı paylaşımı, bir bilgi ya da istediğiniz herhangi bir şey olabilir.\n**Çevreler** uygulaması sayesinde bu paylaşımların herkes tarafından değil yalnız sizin seçtiğiniz kullanıcılar tarafından görülmesini sağlayabilirsiniz 🔒\n\nBaşka sunucular ile bağlantı kurmak isterseniz Çevrelerinizi birleştirebilirsiniz.\n_Çevrelerinizi_ uzak bulutlar ile bağladığınızda iletileriniz tüm ağ üzerine gönderilir!🚀" 14 | }, 15 | "nplurals=2; plural=(n > 1);"); 16 | -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "Yeni duygu", 3 | "Share with ..." : "Şunlarla paylaş ...", 4 | "Share your mood" : "Duygunuzu paylaşın", 5 | "{author} shared a mood with you" : "{author} sizinle bir duygusunu paylaştı", 6 | "{author} shared a mood with {circles}" : "{author}, {circles} ile bir duygusunu paylaştı", 7 | "You shared a mood with {circles}" : "{circles} ile bir duygunuzu paylaştınız", 8 | "A social mood is shared" : "Bir sosyal duygu paylaşıldı", 9 | "mood" : "duygu", 10 | "Your mood over the clouds" : "Duygularınız bulutların üzerinde", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**Duygular** özelliği, **İşlemler** ve **Çevreler** uygulamalarını kullanarak Nextcloud için kusursuz bir sosyal ağ uygulaması oluşturur.\n\n_Not: **Duygular** uygulaması kullanımdan kaldırıldı. Onun yerine **Sosyal Ağ** uygulamasını kullanabilirsiniz_\n\n💬 **Duygular** ile diğer kullanıcılar ile anlık kısa iletiler paylaşabilirsiniz: Bu bir durum güncellemesi, bir bağlantı paylaşımı, bir bilgi ya da istediğiniz herhangi bir şey olabilir.\n**Çevreler** uygulaması sayesinde bu paylaşımların herkes tarafından değil yalnız sizin seçtiğiniz kullanıcılar tarafından görülmesini sağlayabilirsiniz 🔒\n\nBaşka sunucular ile bağlantı kurmak isterseniz Çevrelerinizi birleştirebilirsiniz.\n_Çevrelerinizi_ uzak bulutlar ile bağladığınızda iletileriniz tüm ağ üzerine gönderilir!🚀" 12 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 13 | } -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mood", 3 | { 4 | "New mood" : "新的心情", 5 | "Share with ..." : "分享给 ...", 6 | "Share your mood" : "分享您的心情", 7 | "{author} shared a mood with you" : "{author} 与您分享了一种心情", 8 | "{author} shared a mood with {circles}" : "{author} 分享心情给 {circles}", 9 | "You shared a mood with {circles}" : "您与 {circles} 分享了一个心情", 10 | "A social mood is shared" : "一个社交心情被分享了", 11 | "mood" : "心情", 12 | "Your mood over the clouds" : "您的云上心情", 13 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**心情** 使用 **动态** 和 **圈子** 应用来为您的Nextcloud创造一个完美的社交媒体工具。\n\n_注意:**心情** 已不再开发,请考虑换用 **社交** 应用。_\n\n💬 使用 **心情**,您可以马上在您的实例上与其他用户分享一个短文本:它可以是一个状态更新,一个链接,一则信息或您想分享的任何东西。\n借助 **圈子** 应用,您不必与所有人分享,您可以决定谁能看到您的心情🔒\n\n如果您想连接到其他实例,您可以将您的圈子与它们联合。\n将您的_圈子_与远端的云连接,您的消息将在这些网络中广播!🚀" 14 | }, 15 | "nplurals=1; plural=0;"); 16 | -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "New mood" : "新的心情", 3 | "Share with ..." : "分享给 ...", 4 | "Share your mood" : "分享您的心情", 5 | "{author} shared a mood with you" : "{author} 与您分享了一种心情", 6 | "{author} shared a mood with {circles}" : "{author} 分享心情给 {circles}", 7 | "You shared a mood with {circles}" : "您与 {circles} 分享了一个心情", 8 | "A social mood is shared" : "一个社交心情被分享了", 9 | "mood" : "心情", 10 | "Your mood over the clouds" : "您的云上心情", 11 | "**mood** use the **Activity** and **Circles** apps to make the perfect social media tool for your Nextcloud.\n\n_Note: **mood** is deprecated and not maintained anymore. Please consider switching to the **Social** app._\n\n💬 With **mood**, you can instantly share a short text with other users on your instance: it can be a status update, a link, an information or anything you want.\nYou don't have to share with everyone: thanks to the **Circles** app, you decide who can see your moods 🔒\n\nIf you want to connect with other instances, you can federate your Circles with them.\nLink your _circles_ with remote clouds and your messages will be broadcast all over the mesh!🚀" : "**心情** 使用 **动态** 和 **圈子** 应用来为您的Nextcloud创造一个完美的社交媒体工具。\n\n_注意:**心情** 已不再开发,请考虑换用 **社交** 应用。_\n\n💬 使用 **心情**,您可以马上在您的实例上与其他用户分享一个短文本:它可以是一个状态更新,一个链接,一则信息或您想分享的任何东西。\n借助 **圈子** 应用,您不必与所有人分享,您可以决定谁能看到您的心情🔒\n\n如果您想连接到其他实例,您可以将您的圈子与它们联合。\n将您的_圈子_与远端的云连接,您的消息将在这些网络中广播!🚀" 12 | },"pluralForm" :"nplurals=1; plural=0;" 13 | } -------------------------------------------------------------------------------- /lib/Activity/Filter.php: -------------------------------------------------------------------------------- 1 | l10n = $l10n; 20 | $this->url = $url; 21 | } 22 | 23 | /** 24 | * @return string Lowercase a-z only identifier 25 | * @since 11.0.0 26 | */ 27 | public function getIdentifier() { 28 | return 'mood'; 29 | } 30 | 31 | /** 32 | * @return string A translated string 33 | * @since 11.0.0 34 | */ 35 | public function getName() { 36 | return 'moods'; 37 | } 38 | 39 | /** 40 | * @return int 41 | * @since 11.0.0 42 | */ 43 | public function getPriority() { 44 | return 10; 45 | } 46 | 47 | /** 48 | * @return string Full URL to an icon, empty string when none is given 49 | * @since 11.0.0 50 | */ 51 | public function getIcon() { 52 | return $this->url->getAbsoluteURL($this->url->imagePath('mood', 'mood_black.svg')); 53 | } 54 | 55 | /** 56 | * @param string[] $types 57 | * 58 | * @return string[] An array of allowed apps from which activities should be displayed 59 | * @since 11.0.0 60 | */ 61 | public function filterTypes(array $types) { 62 | return $types; 63 | } 64 | 65 | /** 66 | * @return string[] An array of allowed apps from which activities should be displayed 67 | * @since 11.0.0 68 | */ 69 | public function allowedApps() { 70 | return ['mood']; 71 | } 72 | } 73 | 74 | -------------------------------------------------------------------------------- /lib/Activity/Provider.php: -------------------------------------------------------------------------------- 1 | url = $url; 28 | $this->activityManager = $activityManager; 29 | $this->l10n = $l10n; 30 | } 31 | 32 | 33 | /** 34 | * @param string $lang 35 | * @param IEvent $event 36 | * @param IEvent|null $previousEvent 37 | * 38 | * @return IEvent 39 | * @since 11.0.0 40 | */ 41 | public function parse($lang, IEvent $event, IEvent $previousEvent = null) { 42 | if ($event->getApp() !== 'mood') { 43 | throw new \InvalidArgumentException(); 44 | } 45 | 46 | $event->setIcon( 47 | $this->url->getAbsoluteURL($this->url->imagePath('mood', 'mood_black.svg')) 48 | ); 49 | 50 | switch ($event->getSubject()) { 51 | case 'mood_item': 52 | $this->parseMoodItem($event); 53 | 54 | return $event; 55 | } 56 | 57 | throw new \InvalidArgumentException(); 58 | } 59 | 60 | 61 | /** 62 | * @param IEvent $event 63 | */ 64 | private function parseMoodItem(IEvent &$event) { 65 | $params = $event->getSubjectParameters(); 66 | if (!key_exists('share', $params)) { 67 | throw new \InvalidArgumentException(); 68 | } 69 | 70 | $frame = SharingFrame::fromJSON($params['share']); 71 | if ($frame === null) { 72 | throw new \InvalidArgumentException(); 73 | } 74 | 75 | $this->parseActivityHeader($event, $frame); 76 | $this->parseMoodPayload($event, $frame->getPayload()); 77 | } 78 | 79 | 80 | /** 81 | * @param IEvent $event 82 | * @param $mood 83 | */ 84 | private function parseMoodPayload(IEvent &$event, $mood) { 85 | if (key_exists('website', $mood)) { 86 | $event->setRichMessage( 87 | $mood['text'] . '{opengraph}', 88 | ['opengraph' => $this->generateOpenGraphParameter('_id_', $mood['website'])] 89 | ); 90 | $event->setParsedMessage($mood['text']); 91 | } else { 92 | $event->setRichMessage(htmlspecialchars($mood['text'])); 93 | $event->setParsedMessage(htmlspecialchars($mood['text'])); 94 | } 95 | } 96 | 97 | 98 | /** 99 | * @param IEvent $event 100 | * @param SharingFrame $frame 101 | */ 102 | private function parseActivityHeader(IEvent &$event, SharingFrame $frame) { 103 | 104 | $data = [ 105 | 'author' => Circles::generateUserParameter($frame), 106 | 'circles' => Circles::generateCircleParameter($frame) 107 | ]; 108 | 109 | if ($this->parseActivityHeaderAsAuthor($event, $frame, $data)) { 110 | return; 111 | } 112 | 113 | if ($frame->getCircle() 114 | ->getType() === Circle::CIRCLES_PERSONAL) { 115 | $event->setRichSubject($this->l10n->t('{author} shared a mood with you'), $data); 116 | $event->setParsedSubject($this->l10n->t('{author} shared a mood with you', $data)); 117 | 118 | return; 119 | } 120 | 121 | $event->setRichSubject($this->l10n->t('{author} shared a mood with {circles}'), $data); 122 | $event->setParsedSubject($this->l10n->t('{author} shared a mood with {circles}', $data)); 123 | } 124 | 125 | /** 126 | * @param IEvent $event 127 | * @param SharingFrame $frame 128 | * @param array $data 129 | * 130 | * @return bool 131 | */ 132 | private function parseActivityHeaderAsAuthor(IEvent &$event, SharingFrame $frame, array $data) { 133 | 134 | if ($frame->getAuthor() === $this->activityManager->getCurrentUserId() 135 | && $frame->getCloudId() === null 136 | ) { 137 | $event->setRichSubject($this->l10n->t('You shared a mood with {circles}'), $data); 138 | $event->setParsedSubject($this->l10n->t('You shared a mood with {circles}', $data)); 139 | 140 | return true; 141 | } 142 | 143 | return false; 144 | } 145 | 146 | 147 | /** 148 | * @param $id 149 | * @param $website 150 | * 151 | * @return array 152 | */ 153 | private function generateOpenGraphParameter($id, $website) { 154 | return [ 155 | 'type' => 'open-graph', 156 | 'id' => $id, 157 | 'name' => $website['title'], 158 | 'description' => $website['description'], 159 | 'website' => $website['website'], 160 | 'thumb' => \OC::$server->getURLGenerator() 161 | ->linkToRoute('mood.Tools.binFromExternalImage') . '?url=' 162 | . rawurlencode($website['thumb']), 163 | 'link' => $website['url'] 164 | ]; 165 | } 166 | 167 | 168 | } 169 | -------------------------------------------------------------------------------- /lib/Activity/Setting.php: -------------------------------------------------------------------------------- 1 | l10n = $l10n; 19 | } 20 | 21 | /** 22 | * @return string Lowercase a-z and underscore only identifier 23 | * @since 11.0.0 24 | */ 25 | public function getIdentifier() { 26 | return 'mood'; 27 | } 28 | 29 | /** 30 | * @return string A translated string 31 | * @since 11.0.0 32 | */ 33 | public function getName() { 34 | return $this->l10n->t('A social mood is shared'); 35 | } 36 | 37 | /** 38 | * @return int whether the filter should be rather on the top or bottom of 39 | * the admin section. The filters are arranged in ascending order of the 40 | * priority values. It is required to return a value between 0 and 100. 41 | * @since 11.0.0 42 | */ 43 | public function getPriority() { 44 | return 60; 45 | } 46 | 47 | /** 48 | * @return bool True when the option can be changed for the stream 49 | * @since 11.0.0 50 | */ 51 | public function canChangeStream() { 52 | return true; 53 | } 54 | 55 | /** 56 | * @return bool True when the option can be changed for the stream 57 | * @since 11.0.0 58 | */ 59 | public function isDefaultEnabledStream() { 60 | return true; 61 | } 62 | 63 | /** 64 | * @return bool True when the option can be changed for the mail 65 | * @since 11.0.0 66 | */ 67 | public function canChangeMail() { 68 | return false; 69 | } 70 | 71 | /** 72 | * @return bool True when the option can be changed for the stream 73 | * @since 11.0.0 74 | */ 75 | public function isDefaultEnabledMail() { 76 | return false; 77 | } 78 | } 79 | 80 | -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 10 | * @license GNU AGPL version 3 or any later version 11 | * 12 | * This program is free software: you can redistribute it and/or modify 13 | * it under the terms of the GNU Affero General Public License as 14 | * published by the Free Software Foundation, either version 3 of the 15 | * License, or (at your option) any later version. 16 | * 17 | * This program is distributed in the hope that it will be useful, 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 | * GNU Affero General Public License for more details. 21 | * 22 | * You should have received a copy of the GNU Affero General Public License 23 | * along with this program. If not, see . 24 | * 25 | * 26 | */ 27 | 28 | namespace OCA\Mood\AppInfo; 29 | 30 | use OCA\Circles\Api\v1\Circles; 31 | use OCA\Mood\Controller\MoodController; 32 | use OCA\Mood\Controller\ToolsController; 33 | use OCA\Mood\Service\HttpService; 34 | use OCP\AppFramework\App; 35 | use OCP\AppFramework\IAppContainer; 36 | use OCP\Notification\IApp; 37 | use OCP\Util; 38 | 39 | class Application extends App { 40 | 41 | /** @var string */ 42 | private $appName; 43 | 44 | /** 45 | * @param array $params 46 | */ 47 | public function __construct(array $params = array()) { 48 | parent::__construct('mood', $params); 49 | 50 | $container = $this->getContainer(); 51 | $this->appName = $container->query('AppName'); 52 | 53 | $this->registerCore($container); 54 | $this->registerServices($container); 55 | $this->registerControllers($container); 56 | } 57 | 58 | 59 | /** 60 | * @param IAppContainer $container 61 | */ 62 | public function registerServices(IAppContainer $container) { 63 | 64 | $container->registerService( 65 | 'HttpService', function() { 66 | return new HttpService(); 67 | } 68 | ); 69 | } 70 | 71 | 72 | /** 73 | * @param IAppContainer $container 74 | */ 75 | public function registerControllers(IAppContainer $container) { 76 | 77 | $container->registerService( 78 | 'MoodController', function(IAppContainer $c) { 79 | return new MoodController($c->query('AppName'), $c->query('Request')); 80 | } 81 | ); 82 | 83 | 84 | $container->registerService( 85 | 'ToolsController', function(IAppContainer $c) { 86 | return new ToolsController( 87 | $c->query('AppName'), $c->query('Request'), $c->query('HttpService') 88 | ); 89 | } 90 | ); 91 | 92 | } 93 | 94 | 95 | /** 96 | * @param IAppContainer $container 97 | */ 98 | public function registerCore(IAppContainer $container) { 99 | 100 | $container->registerService( 101 | 'L10N', function(IAppContainer $c) { 102 | return $c->query('ServerContainer') 103 | ->getL10N($c->query('AppName')); 104 | } 105 | ); 106 | 107 | $container->registerService( 108 | 'ActivityManager', function(IAppContainer $c) { 109 | return $c->query('ServerContainer') 110 | ->getActivityManager(); 111 | } 112 | ); 113 | } 114 | 115 | 116 | /** 117 | * 118 | */ 119 | public function registerToActivity() { 120 | if (!\OCP\App::isEnabled('circles')) { 121 | \OC::$server->getLogger() 122 | ->log(2, 'mood needs circles'); 123 | 124 | return; 125 | } 126 | 127 | \OC::$server->getEventDispatcher() 128 | ->addListener( 129 | 'OCA\Activity::loadAdditionalScripts', function() { 130 | Circles::addJavascriptAPI(); 131 | Util::addScript('mood', 'mood'); 132 | Util::addScript('mood', 'mood.app'); 133 | Util::addScript('mood', 'mood.app.elements'); 134 | Util::addScript('mood', 'mood.app.actions'); 135 | Util::addScript('mood', 'mood.app.navigation'); 136 | 137 | Util::addStyle('mood', 'navigate'); 138 | } 139 | ); 140 | } 141 | } 142 | 143 | -------------------------------------------------------------------------------- /lib/Circles/Broadcaster.php: -------------------------------------------------------------------------------- 1 | getContainer(); 23 | 24 | $this->activityManager = $c->query('ActivityManager'); 25 | } 26 | 27 | 28 | /** 29 | * {@inheritdoc} 30 | */ 31 | public function end() { 32 | } 33 | 34 | /** 35 | * {@inheritdoc} 36 | */ 37 | public function createShareToMember(SharingFrame $frame, Member $member) { 38 | switch ($member->getType()) { 39 | case Member::TYPE_USER: 40 | return $this->generateLocalEvent($frame, $member); 41 | 42 | case Member::TYPE_MAIL: 43 | return $this->sendMailEvent(); 44 | } 45 | 46 | return false; 47 | } 48 | 49 | 50 | /** 51 | * generateLocalEvent(); 52 | * 53 | * generate an event using the ActivityManager. 54 | * 55 | * @param SharingFrame $frame 56 | * @param Member $member 57 | * 58 | * @return bool 59 | */ 60 | private function generateLocalEvent(SharingFrame $frame, Member $member) { 61 | 62 | try { 63 | $event = $this->activityManager->generateEvent(); 64 | $event->setApp('mood'); 65 | $event->setType('mood'); 66 | $event->setAffectedUser($member->getUserId()); 67 | $event->setAuthor($frame->getAuthor()); 68 | $event->setSubject('mood_item', ['share' => json_encode($frame)]); 69 | 70 | $this->activityManager->publish($event); 71 | 72 | return true; 73 | } catch (\Exception $e) { 74 | return false; 75 | } 76 | } 77 | 78 | 79 | private function sendMailEvent() { 80 | return false; 81 | } 82 | 83 | /** 84 | * {@inheritdoc} 85 | */ 86 | public function deleteShareToMember(SharingFrame $frame, Member $member) { 87 | return true; 88 | } 89 | 90 | 91 | /** 92 | * {@inheritdoc} 93 | */ 94 | public function editShareToMember(SharingFrame $frame, Member $member) { 95 | return true; 96 | } 97 | 98 | 99 | /** 100 | * {@inheritdoc} 101 | */ 102 | public function createShareToCircle(SharingFrame $frame, Circle $circle) { 103 | return true; 104 | } 105 | 106 | /** 107 | * {@inheritdoc} 108 | */ 109 | public function deleteShareToCircle(SharingFrame $frame, Circle $circle) { 110 | return true; 111 | } 112 | 113 | /** 114 | * {@inheritdoc} 115 | */ 116 | public function editShareToCircle(SharingFrame $frame, Circle $circle) { 117 | return true; 118 | } 119 | } -------------------------------------------------------------------------------- /lib/Controller/MoodController.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 10 | * @license GNU AGPL version 3 or any later version 11 | * 12 | * This program is free software: you can redistribute it and/or modify 13 | * it under the terms of the GNU Affero General Public License as 14 | * published by the Free Software Foundation, either version 3 of the 15 | * License, or (at your option) any later version. 16 | * 17 | * This program is distributed in the hope that it will be useful, 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 | * GNU Affero General Public License for more details. 21 | * 22 | * You should have received a copy of the GNU Affero General Public License 23 | * along with this program. If not, see . 24 | * 25 | * 26 | */ 27 | 28 | namespace OCA\Mood\Controller; 29 | 30 | use OCA\Circles\Api\v1\Circles; 31 | use OCP\AppFramework\Controller; 32 | use OCP\IRequest; 33 | 34 | class MoodController extends Controller { 35 | 36 | public function __construct($appName, IRequest $request) { 37 | parent::__construct($appName, $request); 38 | } 39 | 40 | 41 | /** 42 | * @param $circleId 43 | * @param $item 44 | * 45 | * @NoAdminRequired 46 | */ 47 | public function shareToCircle($circleId, $item) { 48 | Circles::shareToCircle($circleId, 'mood', '', $item, 'OCA\Mood\Circles\Broadcaster'); 49 | } 50 | 51 | 52 | } -------------------------------------------------------------------------------- /lib/Controller/ToolsController.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 10 | * @license GNU AGPL version 3 or any later version 11 | * 12 | * This program is free software: you can redistribute it and/or modify 13 | * it under the terms of the GNU Affero General Public License as 14 | * published by the Free Software Foundation, either version 3 of the 15 | * License, or (at your option) any later version. 16 | * 17 | * This program is distributed in the hope that it will be useful, 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 | * GNU Affero General Public License for more details. 21 | * 22 | * You should have received a copy of the GNU Affero General Public License 23 | * along with this program. If not, see . 24 | * 25 | * 26 | */ 27 | 28 | namespace OCA\Mood\Controller; 29 | 30 | use OC\AppFramework\Http; 31 | use OCA\Mood\Service\HttpService; 32 | use OCP\AppFramework\Controller; 33 | use OCP\AppFramework\Http\DataDisplayResponse; 34 | use OCP\AppFramework\Http\DataResponse; 35 | use OCP\AppFramework\Http\FileDisplayResponse; 36 | use OCP\IRequest; 37 | 38 | class ToolsController extends Controller { 39 | 40 | /** @var HttpService */ 41 | private $httpService; 42 | 43 | public function __construct($appName, IRequest $request, HttpService $httpService) { 44 | parent::__construct($appName, $request); 45 | 46 | $this->httpService = $httpService; 47 | } 48 | 49 | 50 | /** 51 | * @NoAdminRequired 52 | * 53 | * @param $url 54 | * 55 | * @return DataResponse 56 | */ 57 | public function dataFromUrl($url) { 58 | 59 | try { 60 | $data = $this->httpService->getMetaFromWebsite($url); 61 | 62 | return self::success(['url' => $url, 'data' => $data]); 63 | } catch (\Exception $e) { 64 | $error = $e->getMessage(); 65 | } 66 | 67 | return self::fail( 68 | ['url' => $url, 'error' => $error] 69 | ); 70 | } 71 | 72 | 73 | /** 74 | * @NoAdminRequired 75 | * @NoCSRFRequired 76 | * 77 | * @param $url 78 | * 79 | * @return DataDisplayResponse|DataResponse|FileDisplayResponse 80 | */ 81 | public function binFromExternalImage($url) { 82 | try { 83 | 84 | $image = HttpService::file_get_contents_curl($url, true); 85 | $response = 86 | new DataDisplayResponse( 87 | $image, Http::STATUS_OK, ['Content-Type' => 'image/jpeg'] 88 | ); 89 | 90 | return $response; 91 | } catch (\Exception $e) { 92 | return new DataResponse([], Http::STATUS_NOT_FOUND); 93 | } 94 | 95 | 96 | } 97 | 98 | 99 | /** 100 | * @param $data 101 | * 102 | * @return DataResponse 103 | */ 104 | public static function fail($data) { 105 | return new DataResponse( 106 | array_merge($data, array('status' => 0)), 107 | Http::STATUS_NON_AUTHORATIVE_INFORMATION 108 | ); 109 | } 110 | 111 | /** 112 | * @param $data 113 | * 114 | * @return DataResponse 115 | */ 116 | public static function success($data) { 117 | return new DataResponse( 118 | array_merge($data, array('status' => 1)), 119 | Http::STATUS_CREATED 120 | ); 121 | } 122 | } -------------------------------------------------------------------------------- /lib/Exceptions/HttpRequestException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 10 | * @license GNU AGPL version 3 or any later version 11 | * 12 | * This program is free software: you can redistribute it and/or modify 13 | * it under the terms of the GNU Affero General Public License as 14 | * published by the Free Software Foundation, either version 3 of the 15 | * License, or (at your option) any later version. 16 | * 17 | * This program is distributed in the hope that it will be useful, 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 | * GNU Affero General Public License for more details. 21 | * 22 | * You should have received a copy of the GNU Affero General Public License 23 | * along with this program. If not, see . 24 | * 25 | */ 26 | 27 | namespace OCA\Mood\Exceptions; 28 | 29 | class HttpRequestException extends \Exception { 30 | 31 | public function __construct($message = "", $code = 0, \Exception $previous = null) { 32 | } 33 | 34 | } 35 | 36 | -------------------------------------------------------------------------------- /lib/Service/HttpService.php: -------------------------------------------------------------------------------- 1 | 10 | * @copyright 2017 11 | * @license GNU AGPL version 3 or any later version 12 | * 13 | * This program is free software: you can redistribute it and/or modify 14 | * it under the terms of the GNU Affero General Public License as 15 | * published by the Free Software Foundation, either version 3 of the 16 | * License, or (at your option) any later version. 17 | * 18 | * This program is distributed in the hope that it will be useful, 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 21 | * GNU Affero General Public License for more details. 22 | * 23 | * You should have received a copy of the GNU Affero General Public License 24 | * along with this program. If not, see . 25 | * 26 | * 27 | */ 28 | 29 | namespace OCA\Mood\Service; 30 | 31 | use OCA\Mood\Exceptions\HttpRequestException; 32 | 33 | class HttpService { 34 | 35 | 36 | public function __construct() { 37 | } 38 | 39 | 40 | /** 41 | * @param string $url 42 | * 43 | * @return array 44 | * @throws \Exception 45 | */ 46 | public function getMetaFromWebsite($url) { 47 | 48 | try { 49 | $html = self::file_get_contents_curl($url); 50 | $tags = self::getMetaFromHtml($html); 51 | 52 | $meta = self::fillWithOpenGraph($tags); 53 | 54 | $meta['url'] = $url; 55 | } catch (\Exception $e) { 56 | throw $e; 57 | } 58 | 59 | return $meta; 60 | } 61 | 62 | 63 | /** 64 | * @param string $url 65 | * @param bool $bin 66 | * 67 | * @return mixed 68 | * @throws HttpRequestException 69 | */ 70 | public static function file_get_contents_curl($url, $bin = false) { 71 | $ch = curl_init(); 72 | 73 | curl_setopt($ch, CURLOPT_HEADER, 0); 74 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 75 | curl_setopt($ch, CURLOPT_URL, $url); 76 | curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); 77 | 78 | 79 | if ($bin === true) { 80 | curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1); 81 | } 82 | 83 | $data = curl_exec($ch); 84 | curl_close($ch); 85 | 86 | if ($data === false) { 87 | throw new HttpRequestException(); 88 | } 89 | 90 | return $data; 91 | } 92 | 93 | 94 | /** 95 | * @param string $str 96 | * 97 | * @return array 98 | */ 99 | public static function getMetaFromHtml($str) { 100 | $pattern = '~<\s*meta\s 101 | (?=[^>]*? 102 | \b(?:name|property|http-equiv)\s*=\s* 103 | (?|"\s*([^"]*?)\s*"|\'\s*([^\']*?)\s*\'| 104 | ([^"\'>]*?)(?=\s*/?\s*>|\s\w+\s*=)) 105 | ) 106 | 107 | [^>]*?\bcontent\s*=\s* 108 | (?|"\s*([^"]*?)\s*"|\'\s*([^\']*?)\s*\'| 109 | ([^"\'>]*?)(?=\s*/?\s*>|\s\w+\s*=)) 110 | [^>]*> 111 | ~ix'; 112 | 113 | if (preg_match_all($pattern, $str, $out)) { 114 | return array_combine($out[1], $out[2]); 115 | } 116 | 117 | return array(); 118 | } 119 | 120 | 121 | /** 122 | * @param array $tags 123 | * 124 | * @return array 125 | */ 126 | public static function fillWithOpenGraph(array $tags) { 127 | return [ 128 | 'title' => self::fillWithOGTitle($tags), 129 | 'thumb' => self::fillWithOGImage($tags), 130 | 'description' => self::fillWithOGDescription($tags), 131 | 'website' => self::fillWithOGSiteName($tags) 132 | ]; 133 | } 134 | 135 | 136 | /** 137 | * @param array $tags 138 | * 139 | * @return mixed|string 140 | */ 141 | private static function fillWithOGTitle(array $tags) { 142 | return ((key_exists('og:title', $tags)) ? $tags['og:title'] : ''); 143 | } 144 | 145 | 146 | /** 147 | * @param array $tags 148 | * 149 | * @return string 150 | */ 151 | private static function fillWithOGImage(array $tags) { 152 | return ((key_exists('og:image', $tags)) ? $tags['og:image'] : ''); 153 | } 154 | 155 | /** 156 | * @param array $tags 157 | * 158 | * @return string 159 | */ 160 | private static function fillWithOGDescription(array $tags) { 161 | return ((key_exists('og:description', $tags)) ? $tags['og:description'] : ''); 162 | } 163 | 164 | /** 165 | * @param array $tags 166 | * 167 | * @return string 168 | */ 169 | private static function fillWithOGSiteName(array $tags) { 170 | return ((key_exists('og:site_name', $tags)) ? $tags['og:site_name'] : ''); 171 | } 172 | 173 | } -------------------------------------------------------------------------------- /screenshots/0.2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtificialOwl/mood/bde7d04ad40d93f92256f73cdbc26e6f46a07805/screenshots/0.2.0.png --------------------------------------------------------------------------------