├── INSTALL.sh ├── LICENSE ├── README.md ├── Screenshots ├── Image_01.png ├── Image_03.png ├── Image_04.png ├── Image_05.png └── Image_06.png ├── locale ├── de │ └── notification-center.po ├── it │ └── notification-center.po ├── ko │ └── notification-center.po ├── nl │ └── notification-center.po └── notification-center.pot ├── notification-center@Selenium-H ├── LICENSE ├── eicon.png ├── extension.js ├── metadata.json ├── prefs.js ├── prefsGtk3.js ├── prefsGtk4.js └── stylesheet.css └── schemas └── org.gnome.shell.extensions.notification-center.gschema.xml /INSTALL.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Version 4 4 | #========= 5 | 6 | 7 | # Default Installation Directory 8 | installDir=~/.local/share/gnome-shell/extensions 9 | 10 | # Extension Name and directory 11 | extensionName=notification-center 12 | extensionDir=$extensionName@Selenium-H 13 | 14 | echo "" 15 | 16 | if [ ! -z $1 ] 17 | then 18 | installDir=$1 19 | fi 20 | 21 | if [ ! -d $installDir ] 22 | then 23 | if [ -z $2 ] 24 | then 25 | echo $installDir" directory does not exist." 26 | echo "Would you like to create the directory (y/n) ? " 27 | read response 28 | else 29 | response=$2 30 | fi 31 | 32 | if [ $response == "y" ] 33 | then 34 | mkdir -p $installDir 35 | if [ $? -eq 0 ] 36 | then 37 | echo " Directory Created " 38 | else 39 | echo " Error ! " 40 | exit 41 | fi 42 | else 43 | echo "Exiting ... ! " 44 | exit 45 | fi 46 | fi 47 | 48 | echo "Installing Extension "$extensionDir 49 | echo "Installation Path "$installDir 50 | echo "" 51 | echo -ne "Removing any Older Version ... " 52 | rm -rf $installDir"/"$extensionDir 53 | echo "Done" 54 | 55 | echo -ne "Copying New Version ... " 56 | cp -rf $extensionDir $installDir 57 | cp -rf schemas $installDir"/"$extensionDir 58 | cp -rf locale $installDir"/"$extensionDir 59 | echo "Done" 60 | 61 | cd $installDir"/"$extensionDir 62 | echo -ne "Compiling Schemas ... " 63 | glib-compile-schemas schemas 64 | echo "Done" 65 | 66 | echo -ne "Creating Translations ... " 67 | cd locale 68 | 69 | status="Done" 70 | 71 | for poFile in */ 72 | do 73 | mkdir ${poFile}/LC_MESSAGES 74 | msgfmt ${poFile}/$extensionName".po" -o ${poFile}/LC_MESSAGES/$extensionName".mo" 75 | if [ $? != 0 ]; then 76 | status="Error" 77 | break 78 | fi 79 | done 80 | 81 | if [ "$status" == "Done" ]; then 82 | echo -e $status 83 | echo "" 84 | echo "All Done !" 85 | else 86 | echo "" 87 | echo "Extension Installed, Translations not done." 88 | fi 89 | 90 | echo "" 91 | echo "Restart GNOME Shell ( Alt + F2 , Press r , Press Enter )." 92 | echo "Enable this extension using GNOME Tweak Tool." 93 | echo "" 94 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 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 General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 |

6 | Notification Center 7 |

8 | 9 |

10 | Version 24.02 11 |

12 | 13 |

14 | A GNOME Shell extension for detaching notification center and customization. 15 |

16 | 17 |

18 | 19 |

20 | 21 |

22 | Customizations 23 |

24 | 25 |

26 | 27 |

28 | 29 |

30 | 31 |

32 | 33 |

34 | 35 |

36 | 37 |

38 | 39 |

40 | 41 |

42 | Installations 43 |

44 | 45 |
46 | 47 | 48 | 51 | 54 | 55 | 56 | 69 | 72 | 73 |
49 |

GitHub

50 |
52 |

GNOME Shell Extension Website

53 |
57 |
Download/clone this repository and extract .zip file.
58 |
Open Terminal in extracted folder and run
59 |
    60 | chmod +x INSTALL.sh && ./INSTALL.sh 61 |
62 |
Restart GNOME Shell.
63 |
    64 |
  • In Xorg, press Alt+F2, press r, press Enter.
  • 65 |
  • In Wayland, log out and log in back.
  • 66 |
67 |
Enable it in GNOME Tweaks or Extensions application.
68 |
70 | Get this extension from here 71 |
74 |
Also, please check the experimental branch of this project for most recently updated version.

75 |
76 | 77 |

78 | Credits 79 |

80 | 81 | This extension is inspired from 82 | [Extend Panel Menu Extension](https://extensions.gnome.org/extension/1201/extend-panel-menu/) by julio641742, 83 | [Notifications Alert Extension](https://extensions.gnome.org/extension/258/notifications-alert-on-user-menu/) by hackedbellini, 84 | [Files View Extension](https://extensions.gnome.org/extension/1395/files-view/) by abakkk 85 | 86 | Thanks to @amivaleo (Italian translation), @goodwillcoding, @Vistaus (Dutch translation), @GorrillaRibs, @hlechner, @Sa2908, @scottste, @kuroehanako (Korean translation). 87 | -------------------------------------------------------------------------------- /Screenshots/Image_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Notification-Center/ae8ad3ae63ce9417936b41f936aab1cccab589b6/Screenshots/Image_01.png -------------------------------------------------------------------------------- /Screenshots/Image_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Notification-Center/ae8ad3ae63ce9417936b41f936aab1cccab589b6/Screenshots/Image_03.png -------------------------------------------------------------------------------- /Screenshots/Image_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Notification-Center/ae8ad3ae63ce9417936b41f936aab1cccab589b6/Screenshots/Image_04.png -------------------------------------------------------------------------------- /Screenshots/Image_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Notification-Center/ae8ad3ae63ce9417936b41f936aab1cccab589b6/Screenshots/Image_05.png -------------------------------------------------------------------------------- /Screenshots/Image_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Notification-Center/ae8ad3ae63ce9417936b41f936aab1cccab589b6/Screenshots/Image_06.png -------------------------------------------------------------------------------- /locale/de/notification-center.po: -------------------------------------------------------------------------------- 1 | # German translations for PACKAGE package. 2 | # Copyright (C) 2021 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Phil, 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2021-05-31 12:04+0530\n" 11 | "PO-Revision-Date: 2021-10-10 10:03+0200\n" 12 | "Last-Translator: Phil\n" 13 | "Language-Team: German \n" 14 | "Language: de\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "X-Generator: Poedit 3.0\n" 20 | 21 | #: notification-center@Selenium-H/extension.js:100 22 | #: notification-center@Selenium-H/prefsGtk3.js:556 23 | #: notification-center@Selenium-H/prefsGtk4.js:550 24 | msgid "Clear" 25 | msgstr "Leeren" 26 | 27 | #: notification-center@Selenium-H/extension.js:102 28 | msgid "No Notifications" 29 | msgstr "Keine Benachrichtigungen" 30 | 31 | #: notification-center@Selenium-H/extension.js:440 32 | msgid "No Events" 33 | msgstr "Keine Termine" 34 | 35 | #: notification-center@Selenium-H/prefsGtk3.js:68 36 | #: notification-center@Selenium-H/prefsGtk3.js:77 37 | #: notification-center@Selenium-H/prefsGtk4.js:66 38 | #: notification-center@Selenium-H/prefsGtk4.js:78 39 | msgid "Preferences" 40 | msgstr "Einstellungen" 41 | 42 | #: notification-center@Selenium-H/prefsGtk3.js:69 43 | #: notification-center@Selenium-H/prefsGtk3.js:87 44 | #: notification-center@Selenium-H/prefsGtk4.js:67 45 | #: notification-center@Selenium-H/prefsGtk4.js:87 46 | msgid "Help" 47 | msgstr "Hilfe" 48 | 49 | #: notification-center@Selenium-H/prefsGtk3.js:70 50 | #: notification-center@Selenium-H/prefsGtk4.js:68 51 | msgid "About" 52 | msgstr "Über" 53 | 54 | #: notification-center@Selenium-H/prefsGtk3.js:126 55 | #: notification-center@Selenium-H/prefsGtk4.js:121 56 | msgid "Reset Notification Center Extension" 57 | msgstr "Erweiterung zurücksetzen" 58 | 59 | #: notification-center@Selenium-H/prefsGtk3.js:138 60 | #: notification-center@Selenium-H/prefsGtk4.js:133 61 | msgid "Reset Notification Center to defaults?" 62 | msgstr "" 63 | "Soll die Benachrichtigungszentrale auf die Standarteinstellungen zurückgesetzt " 64 | "werden?" 65 | 66 | #: notification-center@Selenium-H/prefsGtk3.js:139 67 | #: notification-center@Selenium-H/prefsGtk4.js:134 68 | msgid "" 69 | "Resetting the extension will discard the current preferences configuration " 70 | "and restore default one." 71 | msgstr "" 72 | "Das Zurücksetzen wird alle aktuellen Einstellungen zurücksetzenund die " 73 | "Standarteinstellungen wiederherstellen." 74 | 75 | #: notification-center@Selenium-H/prefsGtk3.js:214 76 | #: notification-center@Selenium-H/prefsGtk4.js:209 77 | msgid "Update" 78 | msgstr "Update" 79 | 80 | #: notification-center@Selenium-H/prefsGtk3.js:218 81 | #: notification-center@Selenium-H/prefsGtk4.js:213 82 | msgid "Notifications" 83 | msgstr "Benachrichtigungen" 84 | 85 | #: notification-center@Selenium-H/prefsGtk3.js:219 86 | #: notification-center@Selenium-H/prefsGtk4.js:214 87 | msgid "Calendar" 88 | msgstr "Kalender" 89 | 90 | #: notification-center@Selenium-H/prefsGtk3.js:220 91 | #: notification-center@Selenium-H/prefsGtk4.js:215 92 | msgid "Indicator" 93 | msgstr "Indikator" 94 | 95 | #: notification-center@Selenium-H/prefsGtk3.js:221 96 | #: notification-center@Selenium-H/prefsGtk4.js:216 97 | msgid "Profiles" 98 | msgstr "Profile" 99 | 100 | #: notification-center@Selenium-H/prefsGtk3.js:352 101 | #: notification-center@Selenium-H/prefsGtk4.js:346 102 | msgid "Custom script location for" 103 | msgstr "Skript-Speicherort für" 104 | 105 | #: notification-center@Selenium-H/prefsGtk3.js:375 106 | #: notification-center@Selenium-H/prefsGtk4.js:369 107 | msgid "Choose an application" 108 | msgstr "Wähle eine App" 109 | 110 | #: notification-center@Selenium-H/prefsGtk3.js:433 111 | #: notification-center@Selenium-H/prefsGtk4.js:427 112 | msgid "Application List" 113 | msgstr "Appliste" 114 | 115 | #: notification-center@Selenium-H/prefsGtk3.js:532 116 | #: notification-center@Selenium-H/prefsGtk4.js:526 117 | msgid "Choose a Script file" 118 | msgstr "Wähle ein Skript" 119 | 120 | #: notification-center@Selenium-H/prefsGtk3.js:533 121 | #: notification-center@Selenium-H/prefsGtk3.js:555 122 | #: notification-center@Selenium-H/prefsGtk4.js:527 123 | #: notification-center@Selenium-H/prefsGtk4.js:549 124 | msgid "Set" 125 | msgstr "Setzen" 126 | 127 | #: notification-center@Selenium-H/prefsGtk3.js:552 128 | #: notification-center@Selenium-H/prefsGtk4.js:546 129 | msgid " Add " 130 | msgstr " Hinzufügen " 131 | 132 | #: notification-center@Selenium-H/prefsGtk3.js:553 133 | #: notification-center@Selenium-H/prefsGtk4.js:547 134 | msgid " Remove " 135 | msgstr " Entfernen " 136 | 137 | #: notification-center@Selenium-H/prefsGtk3.js:557 138 | #: notification-center@Selenium-H/prefsGtk4.js:551 139 | msgid "Browse" 140 | msgstr "Öffnen" 141 | 142 | #: notification-center@Selenium-H/prefsGtk3.js:564 143 | #: notification-center@Selenium-H/prefsGtk4.js:558 144 | msgid "No application selected" 145 | msgstr "Keine App ausgewählt" 146 | 147 | #: notification-center@Selenium-H/prefsGtk3.js:599 148 | #: notification-center@Selenium-H/prefsGtk4.js:593 149 | msgid "For All Applications on the List" 150 | msgstr "Für Apps in dieser Liste" 151 | 152 | #: notification-center@Selenium-H/prefsGtk3.js:601 153 | #: notification-center@Selenium-H/prefsGtk4.js:595 154 | msgid "Show them" 155 | msgstr "Zeige sie" 156 | 157 | #: notification-center@Selenium-H/prefsGtk3.js:601 158 | #: notification-center@Selenium-H/prefsGtk4.js:595 159 | msgid "Show counts only" 160 | msgstr "Zeige nur Zahl" 161 | 162 | #: notification-center@Selenium-H/prefsGtk3.js:601 163 | #: notification-center@Selenium-H/prefsGtk4.js:595 164 | msgid "Show banner only" 165 | msgstr "Zeige nur Banner" 166 | 167 | #: notification-center@Selenium-H/prefsGtk3.js:601 168 | #: notification-center@Selenium-H/prefsGtk4.js:595 169 | msgid "Ignore them" 170 | msgstr "Ignoriere sie" 171 | 172 | #: notification-center@Selenium-H/prefsGtk3.js:604 173 | #: notification-center@Selenium-H/prefsGtk4.js:598 174 | msgid "For Selected Application" 175 | msgstr "Für ausgewählte Apps" 176 | 177 | #: notification-center@Selenium-H/prefsGtk3.js:645 178 | #: notification-center@Selenium-H/prefsGtk4.js:639 179 | msgid "Only In Notification Center" 180 | msgstr "Nur in der Benachrichtigungszentrale" 181 | 182 | #: notification-center@Selenium-H/prefsGtk3.js:645 183 | #: notification-center@Selenium-H/prefsGtk4.js:639 184 | msgid "Below Calendar" 185 | msgstr "Unter dem Kalender" 186 | 187 | #: notification-center@Selenium-H/prefsGtk3.js:645 188 | #: notification-center@Selenium-H/prefsGtk4.js:639 189 | msgid "Beside Calendar" 190 | msgstr "Neben dem Kalender" 191 | 192 | #: notification-center@Selenium-H/prefsGtk3.js:684 193 | #: notification-center@Selenium-H/prefsGtk3.js:784 194 | #: notification-center@Selenium-H/prefsGtk4.js:677 195 | #: notification-center@Selenium-H/prefsGtk4.js:776 196 | msgid "Left" 197 | msgstr "Links" 198 | 199 | #: notification-center@Selenium-H/prefsGtk3.js:684 200 | #: notification-center@Selenium-H/prefsGtk3.js:784 201 | #: notification-center@Selenium-H/prefsGtk4.js:677 202 | #: notification-center@Selenium-H/prefsGtk4.js:776 203 | msgid "Center" 204 | msgstr "Mitte" 205 | 206 | #: notification-center@Selenium-H/prefsGtk3.js:684 207 | #: notification-center@Selenium-H/prefsGtk3.js:784 208 | #: notification-center@Selenium-H/prefsGtk4.js:677 209 | #: notification-center@Selenium-H/prefsGtk4.js:776 210 | msgid "Right" 211 | msgstr "Rechts" 212 | 213 | #: notification-center@Selenium-H/prefsGtk3.js:688 214 | #: notification-center@Selenium-H/prefsGtk4.js:681 215 | msgid "No" 216 | msgstr "Nein" 217 | 218 | #: notification-center@Selenium-H/prefsGtk3.js:688 219 | #: notification-center@Selenium-H/prefsGtk4.js:681 220 | msgid "Yes" 221 | msgstr "Ja" 222 | 223 | #: notification-center@Selenium-H/prefsGtk3.js:688 224 | #: notification-center@Selenium-H/prefsGtk4.js:681 225 | msgid "If Do Not Disturb is Off" 226 | msgstr "Wenn Nicht stören aus ist" 227 | 228 | #: notification-center@Selenium-H/prefsGtk3.js:689 229 | #: notification-center@Selenium-H/prefsGtk4.js:682 230 | msgid "Show Nothing" 231 | msgstr "Zeige nichts" 232 | 233 | #: notification-center@Selenium-H/prefsGtk3.js:689 234 | #: notification-center@Selenium-H/prefsGtk4.js:682 235 | msgid "Show Dot" 236 | msgstr "Zeige Punkt" 237 | 238 | #: notification-center@Selenium-H/prefsGtk3.js:689 239 | #: notification-center@Selenium-H/prefsGtk4.js:682 240 | msgid "Show Count" 241 | msgstr "Zeige Zahl" 242 | 243 | #: notification-center@Selenium-H/prefsGtk3.js:780 244 | #: notification-center@Selenium-H/prefsGtk3.js:781 245 | #: notification-center@Selenium-H/prefsGtk3.js:782 246 | #: notification-center@Selenium-H/prefsGtk3.js:783 247 | #: notification-center@Selenium-H/prefsGtk3.js:784 248 | #: notification-center@Selenium-H/prefsGtk4.js:772 249 | #: notification-center@Selenium-H/prefsGtk4.js:773 250 | #: notification-center@Selenium-H/prefsGtk4.js:774 251 | #: notification-center@Selenium-H/prefsGtk4.js:775 252 | #: notification-center@Selenium-H/prefsGtk4.js:776 253 | msgid "Don't Show" 254 | msgstr "Nicht zeigen" 255 | 256 | #: notification-center@Selenium-H/prefsGtk3.js:780 257 | #: notification-center@Selenium-H/prefsGtk3.js:781 258 | #: notification-center@Selenium-H/prefsGtk3.js:782 259 | #: notification-center@Selenium-H/prefsGtk4.js:772 260 | #: notification-center@Selenium-H/prefsGtk4.js:773 261 | #: notification-center@Selenium-H/prefsGtk4.js:774 262 | msgid "At The Top" 263 | msgstr "Oben" 264 | 265 | #: notification-center@Selenium-H/prefsGtk3.js:780 266 | #: notification-center@Selenium-H/prefsGtk3.js:781 267 | #: notification-center@Selenium-H/prefsGtk3.js:782 268 | #: notification-center@Selenium-H/prefsGtk4.js:772 269 | #: notification-center@Selenium-H/prefsGtk4.js:773 270 | #: notification-center@Selenium-H/prefsGtk4.js:774 271 | msgid "In The Middle" 272 | msgstr "In der Mitte" 273 | 274 | #: notification-center@Selenium-H/prefsGtk3.js:780 275 | #: notification-center@Selenium-H/prefsGtk3.js:781 276 | #: notification-center@Selenium-H/prefsGtk3.js:782 277 | #: notification-center@Selenium-H/prefsGtk4.js:772 278 | #: notification-center@Selenium-H/prefsGtk4.js:773 279 | #: notification-center@Selenium-H/prefsGtk4.js:774 280 | msgid "At The Bottom" 281 | msgstr "Unten" 282 | 283 | #: notification-center@Selenium-H/prefsGtk3.js:783 284 | #: notification-center@Selenium-H/prefsGtk4.js:775 285 | msgid "On Top" 286 | msgstr "Oben" 287 | 288 | #: notification-center@Selenium-H/prefsGtk3.js:783 289 | #: notification-center@Selenium-H/prefsGtk4.js:775 290 | msgid "At Bottom" 291 | msgstr "Unten" 292 | 293 | #: notification-center@Selenium-H/prefsGtk3.js:786 294 | #: notification-center@Selenium-H/prefsGtk4.js:778 295 | msgid "Alt Key" 296 | msgstr "Alt" 297 | 298 | #: notification-center@Selenium-H/prefsGtk3.js:786 299 | #: notification-center@Selenium-H/prefsGtk4.js:778 300 | msgid "Ctrl Key" 301 | msgstr "Strg" 302 | 303 | #: notification-center@Selenium-H/prefsGtk3.js:786 304 | #: notification-center@Selenium-H/prefsGtk4.js:778 305 | msgid "Shift Key" 306 | msgstr "Shift" 307 | 308 | #: notification-center@Selenium-H/prefsGtk3.js:786 309 | #: notification-center@Selenium-H/prefsGtk4.js:778 310 | msgid "Super Key" 311 | msgstr "Super" 312 | 313 | #: notification-center@Selenium-H/prefsGtk3.js:788 314 | #: notification-center@Selenium-H/prefsGtk4.js:780 315 | msgid "Top Left" 316 | msgstr "Oben links" 317 | 318 | #: notification-center@Selenium-H/prefsGtk3.js:788 319 | #: notification-center@Selenium-H/prefsGtk4.js:780 320 | msgid "Top Center" 321 | msgstr "Oben mittig" 322 | 323 | #: notification-center@Selenium-H/prefsGtk3.js:788 324 | #: notification-center@Selenium-H/prefsGtk4.js:780 325 | msgid "Top Right" 326 | msgstr "Oben rechts" 327 | 328 | #: notification-center@Selenium-H/prefsGtk3.js:788 329 | #: notification-center@Selenium-H/prefsGtk4.js:780 330 | msgid "Middle Left" 331 | msgstr "Mitte links" 332 | 333 | #: notification-center@Selenium-H/prefsGtk3.js:788 334 | #: notification-center@Selenium-H/prefsGtk4.js:780 335 | msgid "Middle Center" 336 | msgstr "Mitte mittig" 337 | 338 | #: notification-center@Selenium-H/prefsGtk3.js:788 339 | #: notification-center@Selenium-H/prefsGtk4.js:780 340 | msgid "Middle Right" 341 | msgstr "Mitte rechts" 342 | 343 | #: notification-center@Selenium-H/prefsGtk3.js:788 344 | #: notification-center@Selenium-H/prefsGtk4.js:780 345 | msgid "Bottom Left" 346 | msgstr "Unten links" 347 | 348 | #: notification-center@Selenium-H/prefsGtk3.js:788 349 | #: notification-center@Selenium-H/prefsGtk4.js:780 350 | msgid "Bottom Center" 351 | msgstr "Unten mittig" 352 | 353 | #: notification-center@Selenium-H/prefsGtk3.js:788 354 | #: notification-center@Selenium-H/prefsGtk4.js:780 355 | msgid "Bottom Right" 356 | msgstr "Unten rechts" 357 | 358 | #: notification-center@Selenium-H/prefsGtk3.js:864 359 | #: notification-center@Selenium-H/prefsGtk4.js:856 360 | msgid "Extension is upgraded to Version " 361 | msgstr "Erweiterung wurde geupdatet auf Version " 362 | 363 | #: notification-center@Selenium-H/prefsGtk3.js:865 364 | #: notification-center@Selenium-H/prefsGtk4.js:857 365 | msgid "" 366 | "A Reset to default preferences is needed for upgrading to this version. " 367 | "Please Reset the extension by clicking the button below." 368 | msgstr "" 369 | "Für das Upgrade auf diese Version ist ein Zurücksetzen auf die " 370 | "Standardeinstellungen erforderlich. Bitte setzen Sie die Erweiterung zurück, " 371 | "indem Sie auf die Schaltfläche unten klicken." 372 | 373 | #: notification-center@Selenium-H/prefsGtk3.js:883 374 | #: notification-center@Selenium-H/prefsGtk4.js:875 375 | msgid "Upgraded Successfully" 376 | msgstr "Update fertig" 377 | 378 | #: notification-center@Selenium-H/prefsGtk3.js:884 379 | #: notification-center@Selenium-H/prefsGtk4.js:876 380 | msgid "Version" 381 | msgstr "Version" 382 | 383 | #: notification-center@Selenium-H/prefsGtk4.js:373 384 | msgid "Add" 385 | msgstr "Hinzufügen" 386 | 387 | #: notification-center@Selenium-H/prefsGtk4.js:530 388 | msgid "Cancel" 389 | msgstr "Abbrechen" 390 | 391 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:57 392 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:58 393 | msgid "Show Media Section on Notification Center" 394 | msgstr "Zeige Medienabschnitt in der Benachrichtigungszentrale" 395 | 396 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:63 397 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:64 398 | msgid "Show Notifications list on Notification Center" 399 | msgstr "Zeige Benachrichtigungen in der Benachrichtigungszentrale" 400 | 401 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:69 402 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:70 403 | msgid "Show Events list on Notification Center" 404 | msgstr "Zeige Termine in der Benachrichtigungszentrale" 405 | 406 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:75 407 | msgid "Also, Show Events List" 408 | msgstr "Zeige auch die Termine" 409 | 410 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:76 411 | msgid "Also, show Events List" 412 | msgstr "Zeige auch die Termine" 413 | 414 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:81 415 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:82 416 | msgid "Hide space beside Calendar if empty" 417 | msgstr "Verstecke Platz neben dem Kalender wenn leer" 418 | 419 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:87 420 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:88 421 | msgid "Show Calendar on Left" 422 | msgstr "Zeige den Kalendar links" 423 | 424 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:93 425 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:94 426 | msgid "Hide Events List If Empty" 427 | msgstr "Verstecke Terminliste wenn leer" 428 | 429 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:99 430 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:100 431 | msgid "Order of sections in Notification Center" 432 | msgstr "Reihenfolge der Abschnitte in der Benachrichtigungszentrale" 433 | 434 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:105 435 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:106 436 | msgid "Do Not Disturb menu position" 437 | msgstr "Position von Nicht stören" 438 | 439 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:111 440 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:112 441 | msgid "Clear All Button position" 442 | msgstr "Position von Leeren" 443 | 444 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:117 445 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:118 446 | msgid "Close Notification Center when focus is switched" 447 | msgstr "Schließe die Benachrichtigungszentrale wenn der Fokus wechselt" 448 | 449 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:125 450 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:126 451 | msgid "Shortcut key combiation to show Notification Center" 452 | msgstr "Tastenkombination um die Benachrichtigungszentrale zu zeigen" 453 | 454 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:131 455 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:132 456 | msgid "Maximum height of Notification Center ( in % )" 457 | msgstr "Maximale Höhe der Benachrichtigungszentrale (in %)" 458 | 459 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:137 460 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:138 461 | msgid "Hide Clock Section" 462 | msgstr "Verstecke Zeitabschnitt" 463 | 464 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:143 465 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:144 466 | msgid "Hide Weather Section" 467 | msgstr "Verstecke Wetterabschnitt" 468 | 469 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:149 470 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:150 471 | msgid "Hide Date Section" 472 | msgstr "Verstecke Datumsabschnitt" 473 | 474 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:155 475 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:156 476 | msgid "Notification Banner position" 477 | msgstr "Position von Benachrichtigungs-Bannern" 478 | 479 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:161 480 | msgid "Notification Center icon position on panel" 481 | msgstr "Icon-Position der Benachrichtigungszentrale im Panel" 482 | 483 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:162 484 | msgid "Notifications Center icon position" 485 | msgstr "Position vom Notification-Center-Icon" 486 | 487 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:167 488 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:168 489 | msgid "Position of notification icon in panel box" 490 | msgstr "Icon-Position der Benachrichtigungszentrale im Panelabschnitt" 491 | 492 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:173 493 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:174 494 | msgid "Show individual icons for each section on panel" 495 | msgstr "Zeige individuelle Icons für jeden Abschnitt im Panel" 496 | 497 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:179 498 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:180 499 | msgid "Change icons depending if there is notification or not" 500 | msgstr "Verändere Icons wenn eine Benachrichtigung da ist oder nicht" 501 | 502 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:185 503 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:186 504 | msgid "AutoHide notification indicator on panel" 505 | msgstr "Verstecke Benachrichtigungs-Icon automatisch im Panel" 506 | 507 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:191 508 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:192 509 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:251 510 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:252 511 | msgid "When new notification arrives" 512 | msgstr "Wenn eine neue Benachrichtigung kommt" 513 | 514 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:197 515 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:198 516 | msgid "Include events in above case" 517 | msgstr "Schließe Termine im oberigen Fall mit ein" 518 | 519 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:203 520 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:204 521 | msgid "Number of times panel icon blinks on new notification" 522 | msgstr "Wie oft das Icon bei einer neuen Benachrichtigung blinkt" 523 | 524 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:209 525 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:210 526 | msgid "Blink Time Interval ( in milliseconds )" 527 | msgstr "Blinkzeitintervall (in Millisekunden)" 528 | 529 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:215 530 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:216 531 | msgid "Animate icon when new notification arrives" 532 | msgstr "Animiere Icon wenn eine neue Benachrichtigung eintrifft" 533 | 534 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:221 535 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:222 536 | msgid "Show Dots or Counts till all notifications are cleared" 537 | msgstr "Zeige Punkte oder Zahl bis alle Benachrichtigungen gelöscht sind" 538 | 539 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:227 540 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:228 541 | msgid "Middle click panel icon to toggle Do Not Disturb" 542 | msgstr "Aktiviere Nicht stören mit einem Mittleklick auf das Icon" 543 | 544 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:233 545 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:234 546 | msgid "List of applications" 547 | msgstr "Appliste" 548 | 549 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:239 550 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:240 551 | msgid "List of Names of application to ignore notifications from" 552 | msgstr "" 553 | "Liste der Namen der Apps von denen Benachrichtigungen ignoriert werden sollen" 554 | 555 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:245 556 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:246 557 | msgid "List of Scripts for applications" 558 | msgstr "Liste der Skripte für Apps" 559 | 560 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:257 561 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:258 562 | msgid "Run scripts on new notification" 563 | msgstr "Starte Skript bei neuer Benachrichtigung" 564 | 565 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:265 566 | msgid "Version of Current Extension" 567 | msgstr "Aktuelle Version" 568 | 569 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:266 570 | msgid "" 571 | "Provided to ensure that extension is stopped incase of autoupdate from " 572 | "previous version to prevent unwanted effects" 573 | msgstr "" 574 | "Vorausgesetzt, um sicherzustellen, dass die Erweiterung gestoppt wird, falls " 575 | "die automatische Aktualisierung der vorherigen Version erfolgt, um " 576 | "unerwünschte Effekte zu vermeiden" 577 | 578 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:271 579 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:272 580 | msgid "Signals the extension to reload" 581 | msgstr "Signalisiert der Erweiterung sich neu zu starten" 582 | 583 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:277 584 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:278 585 | msgid "Signals the extension to reload Application Profiles" 586 | msgstr "Signalisiert der Erweiterung die App-Profile neu zu laden" 587 | 588 | msgid "" 589 | "Detach notification center to top panel and customizations.Please reset the " 590 | "extension after updating.\n" 591 | "The Extension will stop when upgraded to an incompatible version.\n" 592 | "In that case an Update tab is created to easily reset the extension.\n" 593 | "A Reset button is also always present in Preferences option in the Top Right " 594 | "Application menu of the extension preferences window." 595 | msgstr "" 596 | "Trennen Sie die Benachrichtigungszentrale vom oberen Bedienfeld und passen " 597 | "Sie sie an. Bitte setzen Sie die Erweiterung nach der Aktualisierung " 598 | "zurück.\n" 599 | "Die Erweiterung wird beendet, wenn auf eine inkompatible Version " 600 | "aktualisiert wird.\n" 601 | "In diesem Fall wird ein Update-Tab erstellt, um die Erweiterung einfach " 602 | "zurückzusetzen.\n" 603 | "Eine Zurücksetz-Möglichkeit ist auch immer in der Option Einstellungen im " 604 | "oberen rechten Anwendungsmenü des Fensters mit den Erweiterungseinstellungen " 605 | "vorhanden." 606 | 607 | msgid "Detach notification center to top panel and customizations." 608 | msgstr "" 609 | "Trennen Sie die Benachrichtigungszentrale vom oberen Bedienfeld und passen " 610 | "Sie sie an." 611 | 612 | -------------------------------------------------------------------------------- /locale/it/notification-center.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR Free Software Foundation, Inc. 3 | # This file is distributed under the same license as the GNU make package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: notification-center\n" 9 | "POT-Creation-Date: 2016-06-10 19:03-0400\n" 10 | "PO-Revision-Date: 2019-03-03 17:13+0100\n" 11 | "Language-Team: \n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Poedit 2.0.6\n" 16 | "Last-Translator: Jimmy Scionti \n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "Language: it_IT\n" 19 | 20 | #: extension.js:58 21 | msgid "Do Not Disturb" 22 | msgstr "Non disturbare" 23 | 24 | #: prefs.js:36 25 | msgid "Preferences" 26 | msgstr "Preferenze" 27 | 28 | #: prefs.js:37 29 | msgid "About" 30 | msgstr "Info" 31 | 32 | #: prefs.js:52 33 | msgid "AutoHide notification indicator on panel" 34 | msgstr "Autohide dell'indicatore di notifica sul pannello" 35 | 36 | #: prefs.js:53 37 | msgid "Show Dots or Counts till all notifications are cleared" 38 | msgstr "Mostra Punti o Valori fintantoché vi sono notifiche" 39 | 40 | #: prefs.js:54 41 | msgid "Blink bell icon on new notifications " 42 | msgstr "Icona della campanella lampeggiante per le nuove notifiche" 43 | 44 | #: prefs.js:55 45 | msgid "Show Do Not Disturb menu entry " 46 | msgstr "Mostra il pulsante Non disturbare" 47 | 48 | #: prefs.js:55 49 | msgid "Don't Show" 50 | msgstr "Non mostrare" 51 | 52 | #: prefs.js:55 53 | msgid "On Top" 54 | msgstr "In alto" 55 | 56 | #: prefs.js:55 57 | msgid "At Bottom" 58 | msgstr "In basso" 59 | 60 | #: prefs.js:56 61 | msgid "Notification Banner Position" 62 | msgstr "Posizione del banner delle notifiche" 63 | 64 | #: prefs.js:56 prefs.js:57 65 | msgid "Left" 66 | msgstr "Sinistra" 67 | 68 | #: prefs.js:56 prefs.js:57 69 | msgid "Center" 70 | msgstr "Centro" 71 | 72 | #: prefs.js:56 prefs.js:57 73 | msgid "Right" 74 | msgstr "Destra" 75 | 76 | #: prefs.js:57 77 | msgid "Notification Center indicator position" 78 | msgstr "Posizione dell'indicatore del Centro notifiche" 79 | 80 | #: prefs.js:58 81 | msgid "When new notification arrives" 82 | msgstr "Quando arriva una nuova notifica" 83 | 84 | #: prefs.js:58 85 | msgid "Show Nothing" 86 | msgstr "Lascia inalterato" 87 | 88 | #: prefs.js:58 89 | msgid "Show Dot" 90 | msgstr "Mostra punti" 91 | 92 | #: prefs.js:58 93 | msgid "Show Count" 94 | msgstr "Mostra valori" 95 | 96 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:26 97 | msgid "Indicator position" 98 | msgstr "Posizione dell'indicatore" 99 | 100 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:27 101 | msgid "Notification Center Indicator position." 102 | msgstr "Posizione dell'indicatore del Centro notifiche." 103 | 104 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:31 105 | msgid "Notification Banner position" 106 | msgstr "Posizione del banner delle notifiche" 107 | 108 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:32 109 | msgid "Changes Position of Notification Banner Position." 110 | msgstr "Cambia la posizione del banner delle notifiche." 111 | 112 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:36 113 | msgid "On new notification" 114 | msgstr "Con una nuova notifica" 115 | 116 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:37 117 | msgid "When new notification Arrives." 118 | msgstr "Quando arriva una nuova notifica." 119 | 120 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:41 121 | msgid "Do Not Disturb Menu Position" 122 | msgstr "Posizione del pulsante Non disturbare" 123 | 124 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:42 125 | msgid "Do Not Disturb Menu Position." 126 | msgstr "Posizione del pulsante Non disturbare." 127 | 128 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:46 129 | msgid "Always Shows Label" 130 | msgstr "Mostra sempre" 131 | 132 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:47 133 | msgid "Always shows Count or Dots" 134 | msgstr "Mostra sempre Valore o Punti" 135 | 136 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:51 137 | msgid "Autohide Indicator" 138 | msgstr "Autohide dell'indicatore" 139 | 140 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:52 141 | msgid "Enables of disables autohide of indicator" 142 | msgstr "Abilita o disabilita l'autohide dell'indicatore" 143 | 144 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:56 145 | msgid "Blink Bell Icon on Notification" 146 | msgstr "Lampeggio su notifica" 147 | 148 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:57 149 | msgid "Blink Notification Bell icon on recieving new notification" 150 | msgstr "Icona campanella lampeggia alla ricezione di una nuova notifica" 151 | -------------------------------------------------------------------------------- /locale/ko/notification-center.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2021-05-31 12:04+0530\n" 11 | "PO-Revision-Date: 2021-08-31 10:08+0900\n" 12 | "Language-Team: \n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "X-Generator: Poedit 3.0\n" 17 | "Last-Translator: \n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | "Language: ko\n" 20 | 21 | #: notification-center@Selenium-H/extension.js:100 22 | #: notification-center@Selenium-H/prefsGtk3.js:556 23 | #: notification-center@Selenium-H/prefsGtk4.js:550 24 | msgid "Clear" 25 | msgstr "모두 지우기" 26 | 27 | #: notification-center@Selenium-H/extension.js:102 28 | msgid "No Notifications" 29 | msgstr "알림 없음" 30 | 31 | #: notification-center@Selenium-H/extension.js:440 32 | msgid "No Events" 33 | msgstr "행사 없음" 34 | 35 | #: notification-center@Selenium-H/prefsGtk3.js:68 36 | #: notification-center@Selenium-H/prefsGtk3.js:77 37 | #: notification-center@Selenium-H/prefsGtk4.js:66 38 | #: notification-center@Selenium-H/prefsGtk4.js:78 39 | msgid "Preferences" 40 | msgstr "설정" 41 | 42 | #: notification-center@Selenium-H/prefsGtk3.js:69 43 | #: notification-center@Selenium-H/prefsGtk3.js:87 44 | #: notification-center@Selenium-H/prefsGtk4.js:67 45 | #: notification-center@Selenium-H/prefsGtk4.js:87 46 | msgid "Help" 47 | msgstr "도움말" 48 | 49 | #: notification-center@Selenium-H/prefsGtk3.js:70 50 | #: notification-center@Selenium-H/prefsGtk4.js:68 51 | msgid "About" 52 | msgstr "정보" 53 | 54 | #: notification-center@Selenium-H/prefsGtk3.js:126 55 | #: notification-center@Selenium-H/prefsGtk4.js:121 56 | msgid "Reset Notification Center Extension" 57 | msgstr "알림 센터 확장 초기화" 58 | 59 | #: notification-center@Selenium-H/prefsGtk3.js:138 60 | #: notification-center@Selenium-H/prefsGtk4.js:133 61 | msgid "Reset Notification Center to defaults?" 62 | msgstr "기본값으로 초기화하시겠습니까?" 63 | 64 | #: notification-center@Selenium-H/prefsGtk3.js:139 65 | #: notification-center@Selenium-H/prefsGtk4.js:134 66 | msgid "" 67 | "Resetting the extension will discard the current preferences configuration " 68 | "and restore default one." 69 | msgstr "확장을 초기화하면 모든 설정값이 기본으로 돌아갑니다." 70 | 71 | #: notification-center@Selenium-H/prefsGtk3.js:214 72 | #: notification-center@Selenium-H/prefsGtk4.js:209 73 | msgid "Update" 74 | msgstr "업데이트" 75 | 76 | #: notification-center@Selenium-H/prefsGtk3.js:218 77 | #: notification-center@Selenium-H/prefsGtk4.js:213 78 | msgid "Notifications" 79 | msgstr "알림" 80 | 81 | #: notification-center@Selenium-H/prefsGtk3.js:219 82 | #: notification-center@Selenium-H/prefsGtk4.js:214 83 | msgid "Calendar" 84 | msgstr "달력" 85 | 86 | #: notification-center@Selenium-H/prefsGtk3.js:220 87 | #: notification-center@Selenium-H/prefsGtk4.js:215 88 | msgid "Indicator" 89 | msgstr "표시기" 90 | 91 | #: notification-center@Selenium-H/prefsGtk3.js:221 92 | #: notification-center@Selenium-H/prefsGtk4.js:216 93 | msgid "Profiles" 94 | msgstr "프로필" 95 | 96 | #: notification-center@Selenium-H/prefsGtk3.js:352 97 | #: notification-center@Selenium-H/prefsGtk4.js:346 98 | msgid "Custom script location for" 99 | msgstr "커스텀 스크립트 위치" 100 | 101 | #: notification-center@Selenium-H/prefsGtk3.js:375 102 | #: notification-center@Selenium-H/prefsGtk4.js:369 103 | msgid "Choose an application" 104 | msgstr "프로그램 선택" 105 | 106 | #: notification-center@Selenium-H/prefsGtk3.js:433 107 | #: notification-center@Selenium-H/prefsGtk4.js:427 108 | msgid "Application List" 109 | msgstr "프로그램 목록" 110 | 111 | #: notification-center@Selenium-H/prefsGtk3.js:532 112 | #: notification-center@Selenium-H/prefsGtk4.js:526 113 | msgid "Choose a Script file" 114 | msgstr "스크립트 파일 선택" 115 | 116 | #: notification-center@Selenium-H/prefsGtk3.js:533 117 | #: notification-center@Selenium-H/prefsGtk3.js:555 118 | #: notification-center@Selenium-H/prefsGtk4.js:527 119 | #: notification-center@Selenium-H/prefsGtk4.js:549 120 | msgid "Set" 121 | msgstr "설정" 122 | 123 | #: notification-center@Selenium-H/prefsGtk3.js:552 124 | #: notification-center@Selenium-H/prefsGtk4.js:546 125 | msgid " Add " 126 | msgstr " 추가 " 127 | 128 | #: notification-center@Selenium-H/prefsGtk3.js:553 129 | #: notification-center@Selenium-H/prefsGtk4.js:547 130 | msgid " Remove " 131 | msgstr " 삭제 " 132 | 133 | #: notification-center@Selenium-H/prefsGtk3.js:557 134 | #: notification-center@Selenium-H/prefsGtk4.js:551 135 | msgid "Browse" 136 | msgstr "찾기" 137 | 138 | #: notification-center@Selenium-H/prefsGtk3.js:564 139 | #: notification-center@Selenium-H/prefsGtk4.js:558 140 | msgid "No application selected" 141 | msgstr "선택된 프로그램 없음" 142 | 143 | #: notification-center@Selenium-H/prefsGtk3.js:599 144 | #: notification-center@Selenium-H/prefsGtk4.js:593 145 | msgid "For All Applications on the List" 146 | msgstr "" 147 | 148 | #: notification-center@Selenium-H/prefsGtk3.js:601 149 | #: notification-center@Selenium-H/prefsGtk4.js:595 150 | msgid "Show them" 151 | msgstr "" 152 | 153 | #: notification-center@Selenium-H/prefsGtk3.js:601 154 | #: notification-center@Selenium-H/prefsGtk4.js:595 155 | msgid "Show counts only" 156 | msgstr "숫자만" 157 | 158 | #: notification-center@Selenium-H/prefsGtk3.js:601 159 | #: notification-center@Selenium-H/prefsGtk4.js:595 160 | msgid "Show banner only" 161 | msgstr "알림 배너만" 162 | 163 | #: notification-center@Selenium-H/prefsGtk3.js:601 164 | #: notification-center@Selenium-H/prefsGtk4.js:595 165 | msgid "Ignore them" 166 | msgstr "무시하기" 167 | 168 | #: notification-center@Selenium-H/prefsGtk3.js:604 169 | #: notification-center@Selenium-H/prefsGtk4.js:598 170 | msgid "For Selected Application" 171 | msgstr "선택된 프로그램" 172 | 173 | #: notification-center@Selenium-H/prefsGtk3.js:645 174 | #: notification-center@Selenium-H/prefsGtk4.js:639 175 | msgid "Only In Notification Center" 176 | msgstr "알림 센터에서만" 177 | 178 | #: notification-center@Selenium-H/prefsGtk3.js:645 179 | #: notification-center@Selenium-H/prefsGtk4.js:639 180 | msgid "Below Calendar" 181 | msgstr "달력 밑" 182 | 183 | #: notification-center@Selenium-H/prefsGtk3.js:645 184 | #: notification-center@Selenium-H/prefsGtk4.js:639 185 | msgid "Beside Calendar" 186 | msgstr "달력 옆" 187 | 188 | #: notification-center@Selenium-H/prefsGtk3.js:684 189 | #: notification-center@Selenium-H/prefsGtk3.js:784 190 | #: notification-center@Selenium-H/prefsGtk4.js:677 191 | #: notification-center@Selenium-H/prefsGtk4.js:776 192 | msgid "Left" 193 | msgstr "왼쪽" 194 | 195 | #: notification-center@Selenium-H/prefsGtk3.js:684 196 | #: notification-center@Selenium-H/prefsGtk3.js:784 197 | #: notification-center@Selenium-H/prefsGtk4.js:677 198 | #: notification-center@Selenium-H/prefsGtk4.js:776 199 | msgid "Center" 200 | msgstr "가운데" 201 | 202 | #: notification-center@Selenium-H/prefsGtk3.js:684 203 | #: notification-center@Selenium-H/prefsGtk3.js:784 204 | #: notification-center@Selenium-H/prefsGtk4.js:677 205 | #: notification-center@Selenium-H/prefsGtk4.js:776 206 | msgid "Right" 207 | msgstr "오른쪽" 208 | 209 | #: notification-center@Selenium-H/prefsGtk3.js:688 210 | #: notification-center@Selenium-H/prefsGtk4.js:681 211 | msgid "No" 212 | msgstr "아니오" 213 | 214 | #: notification-center@Selenium-H/prefsGtk3.js:688 215 | #: notification-center@Selenium-H/prefsGtk4.js:681 216 | msgid "Yes" 217 | msgstr "예" 218 | 219 | #: notification-center@Selenium-H/prefsGtk3.js:688 220 | #: notification-center@Selenium-H/prefsGtk4.js:681 221 | msgid "If Do Not Disturb is Off" 222 | msgstr "방해 금지가 꺼져 있을 때만" 223 | 224 | #: notification-center@Selenium-H/prefsGtk3.js:689 225 | #: notification-center@Selenium-H/prefsGtk4.js:682 226 | msgid "Show Nothing" 227 | msgstr "표시 안 함" 228 | 229 | #: notification-center@Selenium-H/prefsGtk3.js:689 230 | #: notification-center@Selenium-H/prefsGtk4.js:682 231 | msgid "Show Dot" 232 | msgstr "점 표시" 233 | 234 | #: notification-center@Selenium-H/prefsGtk3.js:689 235 | #: notification-center@Selenium-H/prefsGtk4.js:682 236 | msgid "Show Count" 237 | msgstr "숫자 표시" 238 | 239 | #: notification-center@Selenium-H/prefsGtk3.js:780 240 | #: notification-center@Selenium-H/prefsGtk3.js:781 241 | #: notification-center@Selenium-H/prefsGtk3.js:782 242 | #: notification-center@Selenium-H/prefsGtk3.js:783 243 | #: notification-center@Selenium-H/prefsGtk3.js:784 244 | #: notification-center@Selenium-H/prefsGtk4.js:772 245 | #: notification-center@Selenium-H/prefsGtk4.js:773 246 | #: notification-center@Selenium-H/prefsGtk4.js:774 247 | #: notification-center@Selenium-H/prefsGtk4.js:775 248 | #: notification-center@Selenium-H/prefsGtk4.js:776 249 | msgid "Don't Show" 250 | msgstr "숨기기" 251 | 252 | #: notification-center@Selenium-H/prefsGtk3.js:780 253 | #: notification-center@Selenium-H/prefsGtk3.js:781 254 | #: notification-center@Selenium-H/prefsGtk3.js:782 255 | #: notification-center@Selenium-H/prefsGtk4.js:772 256 | #: notification-center@Selenium-H/prefsGtk4.js:773 257 | #: notification-center@Selenium-H/prefsGtk4.js:774 258 | msgid "At The Top" 259 | msgstr "위에 표시" 260 | 261 | #: notification-center@Selenium-H/prefsGtk3.js:780 262 | #: notification-center@Selenium-H/prefsGtk3.js:781 263 | #: notification-center@Selenium-H/prefsGtk3.js:782 264 | #: notification-center@Selenium-H/prefsGtk4.js:772 265 | #: notification-center@Selenium-H/prefsGtk4.js:773 266 | #: notification-center@Selenium-H/prefsGtk4.js:774 267 | msgid "In The Middle" 268 | msgstr "가운데" 269 | 270 | #: notification-center@Selenium-H/prefsGtk3.js:780 271 | #: notification-center@Selenium-H/prefsGtk3.js:781 272 | #: notification-center@Selenium-H/prefsGtk3.js:782 273 | #: notification-center@Selenium-H/prefsGtk4.js:772 274 | #: notification-center@Selenium-H/prefsGtk4.js:773 275 | #: notification-center@Selenium-H/prefsGtk4.js:774 276 | msgid "At The Bottom" 277 | msgstr "밑에 표시" 278 | 279 | #: notification-center@Selenium-H/prefsGtk3.js:783 280 | #: notification-center@Selenium-H/prefsGtk4.js:775 281 | msgid "On Top" 282 | msgstr "위" 283 | 284 | #: notification-center@Selenium-H/prefsGtk3.js:783 285 | #: notification-center@Selenium-H/prefsGtk4.js:775 286 | msgid "At Bottom" 287 | msgstr "아래" 288 | 289 | #: notification-center@Selenium-H/prefsGtk3.js:786 290 | #: notification-center@Selenium-H/prefsGtk4.js:778 291 | msgid "Alt Key" 292 | msgstr "Alt 키" 293 | 294 | #: notification-center@Selenium-H/prefsGtk3.js:786 295 | #: notification-center@Selenium-H/prefsGtk4.js:778 296 | msgid "Ctrl Key" 297 | msgstr "Ctrl 키" 298 | 299 | #: notification-center@Selenium-H/prefsGtk3.js:786 300 | #: notification-center@Selenium-H/prefsGtk4.js:778 301 | msgid "Shift Key" 302 | msgstr "Shift 키" 303 | 304 | #: notification-center@Selenium-H/prefsGtk3.js:786 305 | #: notification-center@Selenium-H/prefsGtk4.js:778 306 | msgid "Super Key" 307 | msgstr "Super 키" 308 | 309 | #: notification-center@Selenium-H/prefsGtk3.js:788 310 | #: notification-center@Selenium-H/prefsGtk4.js:780 311 | msgid "Top Left" 312 | msgstr "상단 왼쪽 모서리" 313 | 314 | #: notification-center@Selenium-H/prefsGtk3.js:788 315 | #: notification-center@Selenium-H/prefsGtk4.js:780 316 | msgid "Top Center" 317 | msgstr "기본" 318 | 319 | #: notification-center@Selenium-H/prefsGtk3.js:788 320 | #: notification-center@Selenium-H/prefsGtk4.js:780 321 | msgid "Top Right" 322 | msgstr "상단 오른쪽 모서리" 323 | 324 | #: notification-center@Selenium-H/prefsGtk3.js:788 325 | #: notification-center@Selenium-H/prefsGtk4.js:780 326 | msgid "Middle Left" 327 | msgstr "왼쪽" 328 | 329 | #: notification-center@Selenium-H/prefsGtk3.js:788 330 | #: notification-center@Selenium-H/prefsGtk4.js:780 331 | msgid "Middle Center" 332 | msgstr "가운데" 333 | 334 | #: notification-center@Selenium-H/prefsGtk3.js:788 335 | #: notification-center@Selenium-H/prefsGtk4.js:780 336 | msgid "Middle Right" 337 | msgstr "오른쪽" 338 | 339 | #: notification-center@Selenium-H/prefsGtk3.js:788 340 | #: notification-center@Selenium-H/prefsGtk4.js:780 341 | msgid "Bottom Left" 342 | msgstr "하단 왼쪽 모서리" 343 | 344 | #: notification-center@Selenium-H/prefsGtk3.js:788 345 | #: notification-center@Selenium-H/prefsGtk4.js:780 346 | msgid "Bottom Center" 347 | msgstr "하단 가운데" 348 | 349 | #: notification-center@Selenium-H/prefsGtk3.js:788 350 | #: notification-center@Selenium-H/prefsGtk4.js:780 351 | msgid "Bottom Right" 352 | msgstr "하단 오른쪽 모서리" 353 | 354 | #: notification-center@Selenium-H/prefsGtk3.js:864 355 | #: notification-center@Selenium-H/prefsGtk4.js:856 356 | msgid "Extension is upgraded to Version " 357 | msgstr "Extension is upgraded to Version " 358 | 359 | #: notification-center@Selenium-H/prefsGtk3.js:865 360 | #: notification-center@Selenium-H/prefsGtk4.js:857 361 | msgid "" 362 | "A Reset to default preferences is needed for upgrading to this version. " 363 | "Please Reset the extension by clicking the button below." 364 | msgstr "" 365 | "확장 업데이트 시 설정 초기화가 필요합니다. 아래에 있는 버튼을 눌러 확장을 초" 366 | "기화하십시오." 367 | 368 | #: notification-center@Selenium-H/prefsGtk3.js:883 369 | #: notification-center@Selenium-H/prefsGtk4.js:875 370 | msgid "Upgraded Successfully" 371 | msgstr "업데이트를 완료했습니다" 372 | 373 | #: notification-center@Selenium-H/prefsGtk3.js:884 374 | #: notification-center@Selenium-H/prefsGtk4.js:876 375 | msgid "Version" 376 | msgstr "버전" 377 | 378 | #: notification-center@Selenium-H/prefsGtk4.js:373 379 | msgid "Add" 380 | msgstr "추가" 381 | 382 | #: notification-center@Selenium-H/prefsGtk4.js:530 383 | msgid "Cancel" 384 | msgstr "취소" 385 | 386 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:57 387 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:58 388 | msgid "Show Media Section on Notification Center" 389 | msgstr "알림 센터에 미디어 영역 표시" 390 | 391 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:63 392 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:64 393 | msgid "Show Notifications list on Notification Center" 394 | msgstr "알림 센터에 알림 목록 표시" 395 | 396 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:69 397 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:70 398 | msgid "Show Events list on Notification Center" 399 | msgstr "알림 센터에 행사 목록 표시" 400 | 401 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:75 402 | msgid "Also, Show Events List" 403 | msgstr "" 404 | 405 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:76 406 | msgid "Also, show Events List" 407 | msgstr "" 408 | 409 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:81 410 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:82 411 | msgid "Hide space beside Calendar if empty" 412 | msgstr "" 413 | 414 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:87 415 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:88 416 | msgid "Show Calendar on Left" 417 | msgstr "왼쪽에 달력 표시" 418 | 419 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:93 420 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:94 421 | msgid "Hide Events List If Empty" 422 | msgstr "행사가 없을 때 행사 목록 숨기기" 423 | 424 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:99 425 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:100 426 | msgid "Order of sections in Notification Center" 427 | msgstr "" 428 | 429 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:105 430 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:106 431 | msgid "Do Not Disturb menu position" 432 | msgstr "방해 금지 메뉴 위치" 433 | 434 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:111 435 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:112 436 | msgid "Clear All Button position" 437 | msgstr "모두 지우기 버튼 위치" 438 | 439 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:117 440 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:118 441 | msgid "Close Notification Center when focus is switched" 442 | msgstr "" 443 | 444 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:125 445 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:126 446 | msgid "Shortcut key combiation to show Notification Center" 447 | msgstr "알림 센터를 표시할 바로가기 키 조합" 448 | 449 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:131 450 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:132 451 | msgid "Maximum height of Notification Center ( in % )" 452 | msgstr "알림 센터 높이 (%)" 453 | 454 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:137 455 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:138 456 | msgid "Hide Clock Section" 457 | msgstr "시계 숨기기" 458 | 459 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:143 460 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:144 461 | msgid "Hide Weather Section" 462 | msgstr "날씨 숨기기" 463 | 464 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:149 465 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:150 466 | msgid "Hide Date Section" 467 | msgstr "날짜 숨기기" 468 | 469 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:155 470 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:156 471 | msgid "Notification Banner position" 472 | msgstr "알림 배너 위치" 473 | 474 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:161 475 | msgid "Notification Center icon position on panel" 476 | msgstr "패널 내 알림 센터 아이콘 위치" 477 | 478 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:162 479 | msgid "Notifications Center icon position" 480 | msgstr "알림 센터 아이콘 위치" 481 | 482 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:167 483 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:168 484 | msgid "Position of notification icon in panel box" 485 | msgstr "패널 박스 내 알림 센터 아이콘 위치" 486 | 487 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:173 488 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:174 489 | msgid "Show individual icons for each section on panel" 490 | msgstr "일정, 알림 아이콘 따로 표시" 491 | 492 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:179 493 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:180 494 | msgid "Change icons depending if there is notification or not" 495 | msgstr "" 496 | 497 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:185 498 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:186 499 | msgid "AutoHide notification indicator on panel" 500 | msgstr "패널에서 알림 표시 자동으로 숨기기" 501 | 502 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:191 503 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:192 504 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:251 505 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:252 506 | msgid "When new notification arrives" 507 | msgstr "새 알림이 도착할 때" 508 | 509 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:197 510 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:198 511 | msgid "Include events in above case" 512 | msgstr "" 513 | 514 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:203 515 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:204 516 | msgid "Number of times panel icon blinks on new notification" 517 | msgstr "" 518 | 519 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:209 520 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:210 521 | msgid "Blink Time Interval ( in milliseconds )" 522 | msgstr "깜박이는 시간 설정 (밀리초)" 523 | 524 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:215 525 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:216 526 | msgid "Animate icon when new notification arrives" 527 | msgstr "새 알림이 있을 시 아이콘에 애니메이션 효과 주기" 528 | 529 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:221 530 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:222 531 | msgid "Show Dots or Counts till all notifications are cleared" 532 | msgstr "모든 알림을 지울 때까지 점이나 숫자 표시" 533 | 534 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:227 535 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:228 536 | msgid "Middle click panel icon to toggle Do Not Disturb" 537 | msgstr "아이콘을 가운데 클릭하여 방해 금지 모드 활성화" 538 | 539 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:233 540 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:234 541 | msgid "List of applications" 542 | msgstr "프로그램 목록" 543 | 544 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:239 545 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:240 546 | msgid "List of Names of application to ignore notifications from" 547 | msgstr "" 548 | 549 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:245 550 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:246 551 | msgid "List of Scripts for applications" 552 | msgstr "프로그램용 스크립트 목록" 553 | 554 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:257 555 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:258 556 | msgid "Run scripts on new notification" 557 | msgstr "새 알림 도착 시 스크립트 실행" 558 | 559 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:265 560 | msgid "Version of Current Extension" 561 | msgstr "현재 버전" 562 | 563 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:266 564 | msgid "" 565 | "Provided to ensure that extension is stopped incase of autoupdate from " 566 | "previous version to prevent unwanted effects" 567 | msgstr "" 568 | 569 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:271 570 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:272 571 | msgid "Signals the extension to reload" 572 | msgstr "" 573 | 574 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:277 575 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:278 576 | msgid "Signals the extension to reload Application Profiles" 577 | msgstr "" 578 | 579 | msgid "" 580 | "Detach notification center to top panel and customizations.Please reset the " 581 | "extension after updating.\n" 582 | "The Extension will stop when upgraded to an incompatible version.\n" 583 | "In that case an Update tab is created to easily reset the extension.\n" 584 | "A Reset button is also always present in Preferences option in the Top Right " 585 | "Application menu of the extension preferences window." 586 | msgstr "" 587 | 588 | msgid "Detach notification center to top panel and customizations." 589 | msgstr "" 590 | -------------------------------------------------------------------------------- /locale/nl/notification-center.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR Free Software Foundation, Inc. 3 | # This file is distributed under the same license as the GNU make package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: notification-center-16.0\n" 9 | "POT-Creation-Date: 2016-06-10 19:03-0400\n" 10 | "PO-Revision-Date: 2019-08-05 20:31+0200\n" 11 | "Language-Team: \n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Poedit 2.2.3\n" 16 | "Last-Translator: Heimen Stoffels \n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "Language: nl\n" 19 | 20 | #: extension.js:72 21 | msgid "Clear All" 22 | msgstr "Alles wissen" 23 | 24 | #: extension.js:74 25 | msgid "Do Not Disturb" 26 | msgstr "Niet storen" 27 | 28 | #: prefs.js:42 29 | msgid "Notifications" 30 | msgstr "Meldingen" 31 | 32 | #: prefs.js:43 33 | msgid "Indicator" 34 | msgstr "Indicator" 35 | 36 | #: prefs.js:44 37 | msgid "List" 38 | msgstr "Lijst" 39 | 40 | #: prefs.js:45 41 | msgid "About" 42 | msgstr "Over" 43 | 44 | #: prefs.js:61 prefs.js:62 45 | msgid "Don't Show" 46 | msgstr "Niet tonen" 47 | 48 | #: prefs.js:61 49 | msgid "On Top" 50 | msgstr "Bovenaan" 51 | 52 | #: prefs.js:61 53 | msgid "At Bottom" 54 | msgstr "Onderaan" 55 | 56 | #: prefs.js:62 prefs.js:65 prefs.js:68 57 | msgid "Left" 58 | msgstr "Links" 59 | 60 | #: prefs.js:62 prefs.js:65 prefs.js:68 61 | msgid "Center" 62 | msgstr "Gecentreerd" 63 | 64 | #: prefs.js:62 prefs.js:65 prefs.js:68 65 | msgid "Right" 66 | msgstr "Rechts" 67 | 68 | #: prefs.js:71 69 | msgid "Alt Key" 70 | msgstr "Alt-toets" 71 | 72 | #: prefs.js:71 73 | msgid "Ctrl Key" 74 | msgstr "Ctrl-toets" 75 | 76 | #: prefs.js:71 77 | msgid "Shift Key" 78 | msgstr "Shift-toets" 79 | 80 | #: prefs.js:71 81 | msgid "Super Key" 82 | msgstr "Super-toets" 83 | 84 | #: prefs.js:72 85 | msgid "Show Nothing" 86 | msgstr "Niets tonen" 87 | 88 | #: prefs.js:72 89 | msgid "Show Dot" 90 | msgstr "Stip tonen" 91 | 92 | #: prefs.js:72 93 | msgid "Show Count" 94 | msgstr "Aantal tonen" 95 | 96 | #: prefs.js:182 97 | msgid "Choose an application" 98 | msgstr "Kies een toepassing" 99 | 100 | #: prefs.js:226 101 | msgid "Application List" 102 | msgstr "Lijst met toepassingen" 103 | 104 | #: prefs.js:292 105 | msgid "Show them" 106 | msgstr "Tonen" 107 | 108 | #: prefs.js:292 109 | msgid "Show counts only" 110 | msgstr "Alleen het aantal tonen" 111 | 112 | #: prefs.js:292 113 | msgid "Show banner only" 114 | msgstr "Alleen een meldingsballon tonen" 115 | 116 | #: prefs.js:292 117 | msgid "Ignore them" 118 | msgstr "Negeren" 119 | 120 | #: prefs.js:293 121 | msgid " Add " 122 | msgstr " Toevoegen " 123 | 124 | #: prefs.js:297 125 | msgid " Remove " 126 | msgstr " Verwijderen " 127 | 128 | #: prefs.js:322 129 | msgid "Reset To Default Preferences" 130 | msgstr "Standaardwaarden herstellen" 131 | 132 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:38 133 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:39 134 | msgid "Show Media Section on Notification Center" 135 | msgstr "Mediasectie tonen in meldingscentrum" 136 | 137 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:43 138 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:44 139 | msgid "Show Notifications list on Notification Center" 140 | msgstr "Meldingslijst tonen in meldingscentrum" 141 | 142 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:48 143 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:49 144 | msgid "Show Events list on Notification Center" 145 | msgstr "Gebeurtenislijst tonen in meldingscentrum" 146 | 147 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:53 148 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:54 149 | msgid "Keep events besides Calendar Menu" 150 | msgstr "Gebeurtenissen naast agendamenu tonen" 151 | 152 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:58 153 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:59 154 | msgid "Do Not Disturb menu position" 155 | msgstr "Locatie van 'Niet storen'-optie" 156 | 157 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:63 158 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:64 159 | msgid "Clear All Button position" 160 | msgstr "Locatie van 'Alles wissen'-optie" 161 | 162 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:68 163 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:69 164 | msgid "Close Notification Center when focus is switched" 165 | msgstr "Meldingscentrum sluiten zodra het zijn focus verliest" 166 | 167 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:73 168 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:74 169 | msgid "Maximum height of Notification Center ( in % )" 170 | msgstr "Maximale hoogte van meldingscentrum" 171 | 172 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:78 173 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:79 174 | msgid "Notification Banner position" 175 | msgstr "Locatie van meldingsballonnen" 176 | 177 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:83 178 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:84 179 | msgid "Notification Center indicator position" 180 | msgstr "Locatie van indicator" 181 | 182 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:88 183 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:89 184 | msgid "Show individual icons for each section on panel" 185 | msgstr "Individuele sectiepictogrammen tonen op het paneel" 186 | 187 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:93 188 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:94 189 | msgid "AutoHide notification indicator on panel" 190 | msgstr "Indicator automatisch verbergen" 191 | 192 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:100 193 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:101 194 | msgid "Shortcut key combiation to show indicator" 195 | msgstr "Sneltoets om indicator te tonen" 196 | 197 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:105 198 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:106 199 | msgid "When new notification arrives" 200 | msgstr "Als er een melding binnenkomt" 201 | 202 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:110 203 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:111 204 | msgid "Include events in above case" 205 | msgstr "Gebeurtenissen opnemen" 206 | 207 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:115 208 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:116 209 | msgid "Number of times panel icon blinks on new notification" 210 | msgstr "Aantal keren dat het pictogram moet knipperen bij nieuwe meldingen" 211 | 212 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:120 213 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:121 214 | msgid "Blink Time Interval ( in milliseconds )" 215 | msgstr "Knipperinterval (in milliseconden)" 216 | 217 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:125 218 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:126 219 | msgid "Show Dots or Counts till all notifications are cleared" 220 | msgstr "Stippen of aantallen tonen totdat alle meldingen zijn gewist" 221 | 222 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:130 223 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:131 224 | msgid "Middle click panel icon to toggle Do Not Disturb" 225 | msgstr "Middelklikken op pictogram om 'Niet storen' aan/uit te zetten" 226 | 227 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:135 228 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:136 229 | msgid "List of applications to ignore notifications from" 230 | msgstr "Lijst met toepassingen waarvan meldingen moeten worden genegeerd" 231 | 232 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:140 233 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:141 234 | msgid "List of Names of application to ignore notifications from" 235 | msgstr "Lijst met namen van toepassingen waarvan meldingen moeten worden genegeerd" 236 | 237 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:145 238 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:146 239 | msgid "If new notification arrives for apps on this list" 240 | msgstr "Als er een melding binnenkomt van toepassingen op deze lijst" 241 | 242 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:150 243 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:151 244 | msgid "Signals the extension to reload" 245 | msgstr "Laat de uitbreiding herstarten" 246 | -------------------------------------------------------------------------------- /locale/notification-center.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2021-05-31 12:04+0530\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: notification-center@Selenium-H/extension.js:100 21 | #: notification-center@Selenium-H/prefsGtk3.js:556 22 | #: notification-center@Selenium-H/prefsGtk4.js:550 23 | msgid "Clear" 24 | msgstr "" 25 | 26 | #: notification-center@Selenium-H/extension.js:102 27 | msgid "No Notifications" 28 | msgstr "" 29 | 30 | #: notification-center@Selenium-H/extension.js:440 31 | msgid "No Events" 32 | msgstr "" 33 | 34 | #: notification-center@Selenium-H/prefsGtk3.js:68 35 | #: notification-center@Selenium-H/prefsGtk3.js:77 36 | #: notification-center@Selenium-H/prefsGtk4.js:66 37 | #: notification-center@Selenium-H/prefsGtk4.js:78 38 | msgid "Preferences" 39 | msgstr "" 40 | 41 | #: notification-center@Selenium-H/prefsGtk3.js:69 42 | #: notification-center@Selenium-H/prefsGtk3.js:87 43 | #: notification-center@Selenium-H/prefsGtk4.js:67 44 | #: notification-center@Selenium-H/prefsGtk4.js:87 45 | msgid "Help" 46 | msgstr "" 47 | 48 | #: notification-center@Selenium-H/prefsGtk3.js:70 49 | #: notification-center@Selenium-H/prefsGtk4.js:68 50 | msgid "About" 51 | msgstr "" 52 | 53 | #: notification-center@Selenium-H/prefsGtk3.js:126 54 | #: notification-center@Selenium-H/prefsGtk4.js:121 55 | msgid "Reset Notification Center Extension" 56 | msgstr "" 57 | 58 | #: notification-center@Selenium-H/prefsGtk3.js:138 59 | #: notification-center@Selenium-H/prefsGtk4.js:133 60 | msgid "Reset Notification Center to defaults?" 61 | msgstr "" 62 | 63 | #: notification-center@Selenium-H/prefsGtk3.js:139 64 | #: notification-center@Selenium-H/prefsGtk4.js:134 65 | msgid "" 66 | "Resetting the extension will discard the current preferences configuration " 67 | "and restore default one." 68 | msgstr "" 69 | 70 | #: notification-center@Selenium-H/prefsGtk3.js:214 71 | #: notification-center@Selenium-H/prefsGtk4.js:209 72 | msgid "Update" 73 | msgstr "" 74 | 75 | #: notification-center@Selenium-H/prefsGtk3.js:218 76 | #: notification-center@Selenium-H/prefsGtk4.js:213 77 | msgid "Notifications" 78 | msgstr "" 79 | 80 | #: notification-center@Selenium-H/prefsGtk3.js:219 81 | #: notification-center@Selenium-H/prefsGtk4.js:214 82 | msgid "Calendar" 83 | msgstr "" 84 | 85 | #: notification-center@Selenium-H/prefsGtk3.js:220 86 | #: notification-center@Selenium-H/prefsGtk4.js:215 87 | msgid "Indicator" 88 | msgstr "" 89 | 90 | #: notification-center@Selenium-H/prefsGtk3.js:221 91 | #: notification-center@Selenium-H/prefsGtk4.js:216 92 | msgid "Profiles" 93 | msgstr "" 94 | 95 | #: notification-center@Selenium-H/prefsGtk3.js:352 96 | #: notification-center@Selenium-H/prefsGtk4.js:346 97 | msgid "Custom script location for" 98 | msgstr "" 99 | 100 | #: notification-center@Selenium-H/prefsGtk3.js:375 101 | #: notification-center@Selenium-H/prefsGtk4.js:369 102 | msgid "Choose an application" 103 | msgstr "" 104 | 105 | #: notification-center@Selenium-H/prefsGtk3.js:433 106 | #: notification-center@Selenium-H/prefsGtk4.js:427 107 | msgid "Application List" 108 | msgstr "" 109 | 110 | #: notification-center@Selenium-H/prefsGtk3.js:532 111 | #: notification-center@Selenium-H/prefsGtk4.js:526 112 | msgid "Choose a Script file" 113 | msgstr "" 114 | 115 | #: notification-center@Selenium-H/prefsGtk3.js:533 116 | #: notification-center@Selenium-H/prefsGtk3.js:555 117 | #: notification-center@Selenium-H/prefsGtk4.js:527 118 | #: notification-center@Selenium-H/prefsGtk4.js:549 119 | msgid "Set" 120 | msgstr "" 121 | 122 | #: notification-center@Selenium-H/prefsGtk3.js:552 123 | #: notification-center@Selenium-H/prefsGtk4.js:546 124 | msgid " Add " 125 | msgstr "" 126 | 127 | #: notification-center@Selenium-H/prefsGtk3.js:553 128 | #: notification-center@Selenium-H/prefsGtk4.js:547 129 | msgid " Remove " 130 | msgstr "" 131 | 132 | #: notification-center@Selenium-H/prefsGtk3.js:557 133 | #: notification-center@Selenium-H/prefsGtk4.js:551 134 | msgid "Browse" 135 | msgstr "" 136 | 137 | #: notification-center@Selenium-H/prefsGtk3.js:564 138 | #: notification-center@Selenium-H/prefsGtk4.js:558 139 | msgid "No application selected" 140 | msgstr "" 141 | 142 | #: notification-center@Selenium-H/prefsGtk3.js:599 143 | #: notification-center@Selenium-H/prefsGtk4.js:593 144 | msgid "For All Applications on the List" 145 | msgstr "" 146 | 147 | #: notification-center@Selenium-H/prefsGtk3.js:601 148 | #: notification-center@Selenium-H/prefsGtk4.js:595 149 | msgid "Show them" 150 | msgstr "" 151 | 152 | #: notification-center@Selenium-H/prefsGtk3.js:601 153 | #: notification-center@Selenium-H/prefsGtk4.js:595 154 | msgid "Show counts only" 155 | msgstr "" 156 | 157 | #: notification-center@Selenium-H/prefsGtk3.js:601 158 | #: notification-center@Selenium-H/prefsGtk4.js:595 159 | msgid "Show banner only" 160 | msgstr "" 161 | 162 | #: notification-center@Selenium-H/prefsGtk3.js:601 163 | #: notification-center@Selenium-H/prefsGtk4.js:595 164 | msgid "Ignore them" 165 | msgstr "" 166 | 167 | #: notification-center@Selenium-H/prefsGtk3.js:604 168 | #: notification-center@Selenium-H/prefsGtk4.js:598 169 | msgid "For Selected Application" 170 | msgstr "" 171 | 172 | #: notification-center@Selenium-H/prefsGtk3.js:645 173 | #: notification-center@Selenium-H/prefsGtk4.js:639 174 | msgid "Only In Notification Center" 175 | msgstr "" 176 | 177 | #: notification-center@Selenium-H/prefsGtk3.js:645 178 | #: notification-center@Selenium-H/prefsGtk4.js:639 179 | msgid "Below Calendar" 180 | msgstr "" 181 | 182 | #: notification-center@Selenium-H/prefsGtk3.js:645 183 | #: notification-center@Selenium-H/prefsGtk4.js:639 184 | msgid "Beside Calendar" 185 | msgstr "" 186 | 187 | #: notification-center@Selenium-H/prefsGtk3.js:684 188 | #: notification-center@Selenium-H/prefsGtk3.js:784 189 | #: notification-center@Selenium-H/prefsGtk4.js:677 190 | #: notification-center@Selenium-H/prefsGtk4.js:776 191 | msgid "Left" 192 | msgstr "" 193 | 194 | #: notification-center@Selenium-H/prefsGtk3.js:684 195 | #: notification-center@Selenium-H/prefsGtk3.js:784 196 | #: notification-center@Selenium-H/prefsGtk4.js:677 197 | #: notification-center@Selenium-H/prefsGtk4.js:776 198 | msgid "Center" 199 | msgstr "" 200 | 201 | #: notification-center@Selenium-H/prefsGtk3.js:684 202 | #: notification-center@Selenium-H/prefsGtk3.js:784 203 | #: notification-center@Selenium-H/prefsGtk4.js:677 204 | #: notification-center@Selenium-H/prefsGtk4.js:776 205 | msgid "Right" 206 | msgstr "" 207 | 208 | #: notification-center@Selenium-H/prefsGtk3.js:688 209 | #: notification-center@Selenium-H/prefsGtk4.js:681 210 | msgid "No" 211 | msgstr "" 212 | 213 | #: notification-center@Selenium-H/prefsGtk3.js:688 214 | #: notification-center@Selenium-H/prefsGtk4.js:681 215 | msgid "Yes" 216 | msgstr "" 217 | 218 | #: notification-center@Selenium-H/prefsGtk3.js:688 219 | #: notification-center@Selenium-H/prefsGtk4.js:681 220 | msgid "If Do Not Disturb is Off" 221 | msgstr "" 222 | 223 | #: notification-center@Selenium-H/prefsGtk3.js:689 224 | #: notification-center@Selenium-H/prefsGtk4.js:682 225 | msgid "Show Nothing" 226 | msgstr "" 227 | 228 | #: notification-center@Selenium-H/prefsGtk3.js:689 229 | #: notification-center@Selenium-H/prefsGtk4.js:682 230 | msgid "Show Dot" 231 | msgstr "" 232 | 233 | #: notification-center@Selenium-H/prefsGtk3.js:689 234 | #: notification-center@Selenium-H/prefsGtk4.js:682 235 | msgid "Show Count" 236 | msgstr "" 237 | 238 | #: notification-center@Selenium-H/prefsGtk3.js:780 239 | #: notification-center@Selenium-H/prefsGtk3.js:781 240 | #: notification-center@Selenium-H/prefsGtk3.js:782 241 | #: notification-center@Selenium-H/prefsGtk3.js:783 242 | #: notification-center@Selenium-H/prefsGtk3.js:784 243 | #: notification-center@Selenium-H/prefsGtk4.js:772 244 | #: notification-center@Selenium-H/prefsGtk4.js:773 245 | #: notification-center@Selenium-H/prefsGtk4.js:774 246 | #: notification-center@Selenium-H/prefsGtk4.js:775 247 | #: notification-center@Selenium-H/prefsGtk4.js:776 248 | msgid "Don't Show" 249 | msgstr "" 250 | 251 | #: notification-center@Selenium-H/prefsGtk3.js:780 252 | #: notification-center@Selenium-H/prefsGtk3.js:781 253 | #: notification-center@Selenium-H/prefsGtk3.js:782 254 | #: notification-center@Selenium-H/prefsGtk4.js:772 255 | #: notification-center@Selenium-H/prefsGtk4.js:773 256 | #: notification-center@Selenium-H/prefsGtk4.js:774 257 | msgid "At The Top" 258 | msgstr "" 259 | 260 | #: notification-center@Selenium-H/prefsGtk3.js:780 261 | #: notification-center@Selenium-H/prefsGtk3.js:781 262 | #: notification-center@Selenium-H/prefsGtk3.js:782 263 | #: notification-center@Selenium-H/prefsGtk4.js:772 264 | #: notification-center@Selenium-H/prefsGtk4.js:773 265 | #: notification-center@Selenium-H/prefsGtk4.js:774 266 | msgid "In The Middle" 267 | msgstr "" 268 | 269 | #: notification-center@Selenium-H/prefsGtk3.js:780 270 | #: notification-center@Selenium-H/prefsGtk3.js:781 271 | #: notification-center@Selenium-H/prefsGtk3.js:782 272 | #: notification-center@Selenium-H/prefsGtk4.js:772 273 | #: notification-center@Selenium-H/prefsGtk4.js:773 274 | #: notification-center@Selenium-H/prefsGtk4.js:774 275 | msgid "At The Bottom" 276 | msgstr "" 277 | 278 | #: notification-center@Selenium-H/prefsGtk3.js:783 279 | #: notification-center@Selenium-H/prefsGtk4.js:775 280 | msgid "On Top" 281 | msgstr "" 282 | 283 | #: notification-center@Selenium-H/prefsGtk3.js:783 284 | #: notification-center@Selenium-H/prefsGtk4.js:775 285 | msgid "At Bottom" 286 | msgstr "" 287 | 288 | #: notification-center@Selenium-H/prefsGtk3.js:786 289 | #: notification-center@Selenium-H/prefsGtk4.js:778 290 | msgid "Alt Key" 291 | msgstr "" 292 | 293 | #: notification-center@Selenium-H/prefsGtk3.js:786 294 | #: notification-center@Selenium-H/prefsGtk4.js:778 295 | msgid "Ctrl Key" 296 | msgstr "" 297 | 298 | #: notification-center@Selenium-H/prefsGtk3.js:786 299 | #: notification-center@Selenium-H/prefsGtk4.js:778 300 | msgid "Shift Key" 301 | msgstr "" 302 | 303 | #: notification-center@Selenium-H/prefsGtk3.js:786 304 | #: notification-center@Selenium-H/prefsGtk4.js:778 305 | msgid "Super Key" 306 | msgstr "" 307 | 308 | #: notification-center@Selenium-H/prefsGtk3.js:788 309 | #: notification-center@Selenium-H/prefsGtk4.js:780 310 | msgid "Top Left" 311 | msgstr "" 312 | 313 | #: notification-center@Selenium-H/prefsGtk3.js:788 314 | #: notification-center@Selenium-H/prefsGtk4.js:780 315 | msgid "Top Center" 316 | msgstr "" 317 | 318 | #: notification-center@Selenium-H/prefsGtk3.js:788 319 | #: notification-center@Selenium-H/prefsGtk4.js:780 320 | msgid "Top Right" 321 | msgstr "" 322 | 323 | #: notification-center@Selenium-H/prefsGtk3.js:788 324 | #: notification-center@Selenium-H/prefsGtk4.js:780 325 | msgid "Middle Left" 326 | msgstr "" 327 | 328 | #: notification-center@Selenium-H/prefsGtk3.js:788 329 | #: notification-center@Selenium-H/prefsGtk4.js:780 330 | msgid "Middle Center" 331 | msgstr "" 332 | 333 | #: notification-center@Selenium-H/prefsGtk3.js:788 334 | #: notification-center@Selenium-H/prefsGtk4.js:780 335 | msgid "Middle Right" 336 | msgstr "" 337 | 338 | #: notification-center@Selenium-H/prefsGtk3.js:788 339 | #: notification-center@Selenium-H/prefsGtk4.js:780 340 | msgid "Bottom Left" 341 | msgstr "" 342 | 343 | #: notification-center@Selenium-H/prefsGtk3.js:788 344 | #: notification-center@Selenium-H/prefsGtk4.js:780 345 | msgid "Bottom Center" 346 | msgstr "" 347 | 348 | #: notification-center@Selenium-H/prefsGtk3.js:788 349 | #: notification-center@Selenium-H/prefsGtk4.js:780 350 | msgid "Bottom Right" 351 | msgstr "" 352 | 353 | #: notification-center@Selenium-H/prefsGtk3.js:864 354 | #: notification-center@Selenium-H/prefsGtk4.js:856 355 | msgid "Extension is upgraded to Version " 356 | msgstr "" 357 | 358 | #: notification-center@Selenium-H/prefsGtk3.js:865 359 | #: notification-center@Selenium-H/prefsGtk4.js:857 360 | msgid "" 361 | "A Reset to default preferences is needed for upgrading to this version. " 362 | "Please Reset the extension by clicking the button below." 363 | msgstr "" 364 | 365 | #: notification-center@Selenium-H/prefsGtk3.js:883 366 | #: notification-center@Selenium-H/prefsGtk4.js:875 367 | msgid "Upgraded Successfully" 368 | msgstr "" 369 | 370 | #: notification-center@Selenium-H/prefsGtk3.js:884 371 | #: notification-center@Selenium-H/prefsGtk4.js:876 372 | msgid "Version" 373 | msgstr "" 374 | 375 | #: notification-center@Selenium-H/prefsGtk4.js:373 376 | msgid "Add" 377 | msgstr "" 378 | 379 | #: notification-center@Selenium-H/prefsGtk4.js:530 380 | msgid "Cancel" 381 | msgstr "" 382 | 383 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:57 384 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:58 385 | msgid "Show Media Section on Notification Center" 386 | msgstr "" 387 | 388 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:63 389 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:64 390 | msgid "Show Notifications list on Notification Center" 391 | msgstr "" 392 | 393 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:69 394 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:70 395 | msgid "Show Events list on Notification Center" 396 | msgstr "" 397 | 398 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:75 399 | msgid "Also, Show Events List" 400 | msgstr "" 401 | 402 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:76 403 | msgid "Also, show Events List" 404 | msgstr "" 405 | 406 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:81 407 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:82 408 | msgid "Hide space beside Calendar if empty" 409 | msgstr "" 410 | 411 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:87 412 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:88 413 | msgid "Show Calendar on Left" 414 | msgstr "" 415 | 416 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:93 417 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:94 418 | msgid "Hide Events List If Empty" 419 | msgstr "" 420 | 421 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:99 422 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:100 423 | msgid "Order of sections in Notification Center" 424 | msgstr "" 425 | 426 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:105 427 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:106 428 | msgid "Do Not Disturb menu position" 429 | msgstr "" 430 | 431 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:111 432 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:112 433 | msgid "Clear All Button position" 434 | msgstr "" 435 | 436 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:117 437 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:118 438 | msgid "Close Notification Center when focus is switched" 439 | msgstr "" 440 | 441 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:125 442 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:126 443 | msgid "Shortcut key combiation to show Notification Center" 444 | msgstr "" 445 | 446 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:131 447 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:132 448 | msgid "Maximum height of Notification Center ( in % )" 449 | msgstr "" 450 | 451 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:137 452 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:138 453 | msgid "Hide Clock Section" 454 | msgstr "" 455 | 456 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:143 457 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:144 458 | msgid "Hide Weather Section" 459 | msgstr "" 460 | 461 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:149 462 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:150 463 | msgid "Hide Date Section" 464 | msgstr "" 465 | 466 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:155 467 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:156 468 | msgid "Notification Banner position" 469 | msgstr "" 470 | 471 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:161 472 | msgid "Notification Center icon position on panel" 473 | msgstr "" 474 | 475 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:162 476 | msgid "Notifications Center icon position" 477 | msgstr "" 478 | 479 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:167 480 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:168 481 | msgid "Position of notification icon in panel box" 482 | msgstr "" 483 | 484 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:173 485 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:174 486 | msgid "Show individual icons for each section on panel" 487 | msgstr "" 488 | 489 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:179 490 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:180 491 | msgid "Change icons depending if there is notification or not" 492 | msgstr "" 493 | 494 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:185 495 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:186 496 | msgid "AutoHide notification indicator on panel" 497 | msgstr "" 498 | 499 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:191 500 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:192 501 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:251 502 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:252 503 | msgid "When new notification arrives" 504 | msgstr "" 505 | 506 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:197 507 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:198 508 | msgid "Include events in above case" 509 | msgstr "" 510 | 511 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:203 512 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:204 513 | msgid "Number of times panel icon blinks on new notification" 514 | msgstr "" 515 | 516 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:209 517 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:210 518 | msgid "Blink Time Interval ( in milliseconds )" 519 | msgstr "" 520 | 521 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:215 522 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:216 523 | msgid "Animate icon when new notification arrives" 524 | msgstr "" 525 | 526 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:221 527 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:222 528 | msgid "Show Dots or Counts till all notifications are cleared" 529 | msgstr "" 530 | 531 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:227 532 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:228 533 | msgid "Middle click panel icon to toggle Do Not Disturb" 534 | msgstr "" 535 | 536 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:233 537 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:234 538 | msgid "List of applications" 539 | msgstr "" 540 | 541 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:239 542 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:240 543 | msgid "List of Names of application to ignore notifications from" 544 | msgstr "" 545 | 546 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:245 547 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:246 548 | msgid "List of Scripts for applications" 549 | msgstr "" 550 | 551 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:257 552 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:258 553 | msgid "Run scripts on new notification" 554 | msgstr "" 555 | 556 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:265 557 | msgid "Version of Current Extension" 558 | msgstr "" 559 | 560 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:266 561 | msgid "" 562 | "Provided to ensure that extension is stopped incase of autoupdate from " 563 | "previous version to prevent unwanted effects" 564 | msgstr "" 565 | 566 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:271 567 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:272 568 | msgid "Signals the extension to reload" 569 | msgstr "" 570 | 571 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:277 572 | #: schemas/org.gnome.shell.extensions.notification-center.gschema.xml:278 573 | msgid "Signals the extension to reload Application Profiles" 574 | msgstr "" 575 | 576 | msgid "Detach notification center to top panel and customizations.Please reset the extension after updating.\nThe Extension will stop when upgraded to an incompatible version.\nIn that case an Update tab is created to easily reset the extension.\nA Reset button is also always present in Preferences option in the Top Right Application menu of the extension preferences window." 577 | msgstr "" 578 | 579 | msgid "Detach notification center to top panel and customizations." 580 | msgstr "" 581 | -------------------------------------------------------------------------------- /notification-center@Selenium-H/LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 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 General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /notification-center@Selenium-H/eicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selenium-H/Notification-Center/ae8ad3ae63ce9417936b41f936aab1cccab589b6/notification-center@Selenium-H/eicon.png -------------------------------------------------------------------------------- /notification-center@Selenium-H/extension.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | Version 24.02 4 | ============= 5 | 6 | */ 7 | 8 | const ExtensionUtils = imports.misc.extensionUtils; 9 | const Gtk = imports.gi.Gtk; 10 | const LangClass = imports.lang.Class; 11 | const Main = imports.ui.main; 12 | const MetaKeyBindingFlags = imports.gi.Meta.KeyBindingFlags; 13 | const PanelMenuButton = imports.ui.panelMenu.Button; 14 | const PopupMenu = imports.ui.popupMenu; 15 | const ShellActionMode = imports.gi.Shell.ActionMode; 16 | const St = imports.gi.St; 17 | const utilSpawn = imports.misc.util.spawn; 18 | const _ = imports.gettext.domain("notification-center").gettext; 19 | 20 | let notificationCenter = null; 21 | 22 | function enable() { 23 | 24 | notificationCenter = new NotificationCenter(); 25 | notificationCenter.startNotificationCenter(); 26 | reloadExtensionOnPrefsChange(); 27 | reloadApplicationProfilesOnPrefsChange(); 28 | 29 | } 30 | 31 | function disable() { 32 | 33 | notificationCenter.undoChanges(); 34 | notificationCenter.destroy(); 35 | 36 | } 37 | 38 | function reloadApplicationProfilesOnPrefsChange() { 39 | 40 | // Reloads Application Profiles when preferences are changed. 41 | notificationCenter.reloadProfilesSignal = notificationCenter.prefs.connect("changed::reload-profiles-signal", () => notificationCenter.loadPreferences()); 42 | 43 | } 44 | 45 | function reloadExtensionOnPrefsChange() { 46 | 47 | // Reloads the Extension when preferences are changed. 48 | notificationCenter.reloadSignal = notificationCenter.prefs.connect("changed::reload-signal", () => { 49 | disable(); 50 | enable(); 51 | }); 52 | 53 | } 54 | 55 | const NotificationCenter = new LangClass({ 56 | 57 | Name: "NotificationCenter", 58 | Extends: PanelMenuButton, 59 | 60 | _init: function () { 61 | 62 | ExtensionUtils.initTranslations("notification-center"); 63 | this.prefs = ExtensionUtils.getSettings("org.gnome.shell.extensions.notification-center"); 64 | this.parent(1-0.5*this.prefs.get_enum('indicator-pos'), "NotificationCenter"); 65 | this._messageList = Main.panel.statusArea.dateMenu._messageList; 66 | this._messageListParent = this._messageList.get_parent(); 67 | this.mediaSection = this._messageList._mediaSection; 68 | this.notificationSection = this._messageList._notificationSection; 69 | this.eventsSection = Main.panel.statusArea.dateMenu._eventsItem; 70 | this.newEventsSectionParent = this.eventsSection.get_parent(); 71 | this.originalEventsSectionParent = this.newEventsSectionParent; 72 | this.dateMenuVbox = this._messageListParent.get_children()[1]; 73 | 74 | this.loadPreferences(); 75 | this.connectedSignals = []; 76 | this.dmsig = null; 77 | this.cmsig = null; 78 | this.dndSig = null; 79 | this.reloadSignal = null; 80 | this.reloadProfilesSignal = null; 81 | 82 | this.textureCache = St.TextureCache.get_default(); 83 | this.iconThemeChangeSig = null; 84 | this.notificationIconName = null; 85 | 86 | this.notificationCount = 0; 87 | this.eventsCount = 0; 88 | this.mediaCount = 0; 89 | this.seenEvents = false; 90 | this.isDndOff = true; 91 | this.dndpref = Main.panel.statusArea.dateMenu._indicator._settings; 92 | 93 | this.eventsIcon = new St.Icon({style_class:'system-status-icon', visible:false, icon_name: "x-office-calendar-symbolic"}); 94 | this.mediaIcon = new St.Icon({style_class:'system-status-icon', visible:false, icon_name: "audio-x-generic-symbolic" }); 95 | this.notificationIcon = new St.Icon({style_class:'system-status-icon', visible:false }); 96 | this.eventsLabel = new St.Label({text: "•", visible:false, style_class:"notification-center-events-label"}); 97 | this.notificationLabel = new St.Label({text: "•", visible:false, style_class:"notification-center-notification-label"}); 98 | this._indicator = new St.BoxLayout({style_class: 'panel-status-menu-box'}); 99 | this.box = new St.BoxLayout({style_class: "notification-center-message-list", vertical: true}); 100 | this.clearButton = new St.Button({style_class: "notification-center-clear-button button", label: _("Clear"),can_focus: true,visible:false}); 101 | this.dndItem = new PopupMenu.PopupSwitchMenuItem(this._messageList._dndButton.label_actor.text,true,{}); 102 | this.noNotificationLabel = new St.Label({text: _("No Notifications"), x_align:2, y_align:3, style:"margin-top: 96px"}); 103 | 104 | let scaleFactor = St.ThemeContext.get_for_stage(global.stage).scale_factor; 105 | this.scrollView = new St.ScrollView({hscrollbar_policy:2, style:"min-width:"+(this._messageList.width/scaleFactor)+"px;max-height: "+0.01*this.prefs.get_int("max-height")*Main.layoutManager.monitors[0].height+"px; max-width: "+(this._messageList.width/scaleFactor)+"px; padding: 0px;"}) 106 | Main.panel.statusArea.dateMenu.menu.box.style = "max-height: "+(0.01*this.prefs.get_int("max-height")*Main.layoutManager.monitors[0].height)+"px;"; 107 | 108 | this.add_style_class_name('notification-center-panel-button'); 109 | this.notificationIcon.set_pivot_point(0.5, 0); 110 | 111 | }, 112 | 113 | _onOpenStateChanged: function(menu,open) { 114 | 115 | if(!open) { 116 | this.resetIndicator(); 117 | this.remove_style_pseudo_class('active'); 118 | return ; 119 | } 120 | Main.panel.statusArea.dateMenu._calendar.setDate(new Date()); 121 | this.add_style_pseudo_class('active'); 122 | this.manageEvents(0); 123 | [ this.mediaSection.visible, this.notificationSection.visible ] = [ this.mediaSection._shouldShow(), this.notificationSection._list.get_children().length ]; 124 | this.blinkIconStopIfBlinking(); 125 | 126 | if(!this.showLabel) { 127 | this.notificationCount=0; 128 | this.eventsCount=0; 129 | } 130 | this.seenEvents = true; 131 | this.resetIndicator(); 132 | 133 | }, 134 | 135 | animateOnNewNotification: function( times, op=254, angle=3 ) { 136 | 137 | [ this.visible, this.notificationIcon.visible ] = [ true, true ]; 138 | if(times == 0 || this.notAnimateIcon) { 139 | this.notificationIcon.ease({ 140 | duration: 150, 141 | scale_x: 1.0, 142 | scale_y: 1.0, 143 | translation_y: 0, 144 | opacity: 255, 145 | rotation_angle_z: 0, 146 | onComplete: ()=> this.blinkIcon(!this.menu.isOpen*this.blinkCount, this.blinkTime, 100) 147 | }); 148 | return; 149 | } 150 | 151 | this.notificationIcon.ease({ 152 | duration: 150, 153 | scale_x: 1.2, 154 | scale_y: 1.2, 155 | translation_y: -4, 156 | opacity: op, 157 | rotation_angle_z: angle, 158 | onComplete: ()=> this.animateOnNewNotification(--times, op-1, -angle) 159 | }); 160 | 161 | }, 162 | 163 | blinkIcon: function( blinkTimes, interval, opacity ) { 164 | 165 | this.manageAutohide(); 166 | if(blinkTimes > 0) { 167 | this.notificationIcon.ease({ 168 | duration: interval, 169 | opacity: opacity, 170 | onComplete: ()=> this.blinkIcon(--blinkTimes,interval,(opacity==255)?100:255) 171 | }); 172 | } 173 | 174 | }, 175 | 176 | blinkIconStopIfBlinking: function() { 177 | 178 | this.notificationIcon.remove_all_transitions(); 179 | this.notificationIcon.set_opacity(255); 180 | 181 | }, 182 | 183 | dndToggle: function() { 184 | 185 | this.dndpref.set_boolean('show-banners',!this.dndpref.get_boolean('show-banners')); 186 | 187 | }, 188 | 189 | loadDndStatus: function () { 190 | 191 | this.isDndOff = this.dndpref.get_boolean("show-banners"); 192 | this.dndItem.setToggleState(!this.isDndOff); 193 | 194 | this.blinkIconStopIfBlinking(); 195 | this.manageAutohide(); 196 | 197 | this.notificationIcon.icon_name = this.notificationIconName; 198 | 199 | if(this.isDndOff) { 200 | this.notificationIcon.set_opacity(255); 201 | this.manageLabel(); 202 | return false; 203 | } 204 | 205 | if(Gtk.IconTheme.get_default()) { 206 | if(Gtk.IconTheme.get_default().has_icon("notifications-disabled-symbolic")) { 207 | this.notificationIcon.icon_name = "notifications-disabled-symbolic"; 208 | } 209 | } 210 | else { 211 | this.notificationIcon.set_opacity(150); 212 | } 213 | 214 | [ this.notificationLabel.visible, this.eventsLabel.visible] = [ false, false ]; 215 | 216 | return true; 217 | 218 | }, 219 | 220 | loadPreferences: function() { 221 | 222 | this.autohide = this.prefs.get_int("autohide"); 223 | this.mediaSectionToBeShown = (this.prefs.get_int("show-media")>0)?true:false; 224 | this.notificationSectionToBeShown = (this.prefs.get_int("show-notification")>0)?true:false; 225 | this.eventsSectionToBeShown = (this.prefs.get_int("show-events")>0)?true:false; 226 | this.eventsSectionPosition = this.prefs.get_enum("events-position"); // 0 = below, 1 = dont show, 2 = beside 227 | this.hideEmptySpace = this.prefs.get_boolean("autohide-space-beside-calendar"); 228 | this.showEventsInCalendarAlso = (this.eventsSectionToBeShown && this.eventsSectionPosition != 1) ? true: false; 229 | this.showEventsSectionIfEmpty = this.prefs.get_boolean("show-events-section-if-empty"); 230 | this.showThreeIcons = this.prefs.get_boolean("individual-icons"); 231 | this.includeEventsCount = this.prefs.get_boolean("include-events-count"); 232 | this.newNotificationAction = this.prefs.get_enum("new-notification"); 233 | this.eventsSectionhere = this.showEventsInCalendarAlso; 234 | this.showingSections = this.prefs.get_strv("sections-order"); 235 | this.appBlackList = this.prefs.get_strv("name-list"); 236 | this.scriptList = this.prefs.get_strv("script-list"); 237 | this.allowRunningScript = this.prefs.get_boolean("run-script"); 238 | this.blackListAction = this.prefs.get_enum("for-list"); 239 | this.notAnimateIcon = !this.prefs.get_boolean("animate-icon"); 240 | this.blinkTime = this.prefs.get_int("blink-time"); 241 | this.blinkCount = this.prefs.get_int("blink-icon")*2; 242 | this.showLabel = this.prefs.get_boolean("show-label"); 243 | this.changeIcons = this.prefs.get_boolean("change-icons"); 244 | 245 | }, 246 | 247 | manageAutohide: function() { 248 | 249 | if(!this.menu.isOpen) { 250 | this.mediaIcon.visible = this.mediaSection._shouldShow() && this.showThreeIcons && this.mediaSectionToBeShown; 251 | this.eventsIcon.visible = (this.shouldShowEventsSection()) && this.showThreeIcons && this.eventsSectionToBeShown; 252 | this.notificationIcon.visible = (this.notificationSection._list.get_children().length && this.notificationSectionToBeShown) || 253 | (this.mediaSection._shouldShow() && this.mediaSectionToBeShown && !this.showThreeIcons) || 254 | ((this.shouldShowEventsSection()) && this.eventsSectionToBeShown && !this.showThreeIcons) || 255 | ((!this.isDndOff)*this.autohide > 1); 256 | if(this.mediaIcon.visible || this.eventsIcon.visible || this.notificationIcon.visible || !this.autohide) { 257 | this.visible = true; 258 | this.notificationIcon.visible = (this.mediaIcon.visible || this.eventsIcon.visible) ? this.notificationIcon.visible : true; 259 | return; 260 | } 261 | this.visible = false; 262 | } 263 | else { 264 | this.noNotificationLabel.visible = !((this.mediaSection._shouldShow() && this.mediaSectionToBeShown) || (this.notificationSection._list.get_children().length && this.notificationSectionToBeShown) || ((this.shouldShowEventsSection() || this.showEventsSectionIfEmpty) && this.eventsSectionToBeShown)) 265 | this.box.style_class = (this.noNotificationLabel.visible) ? "notification-center-message-list-empty" : "notification-center-message-list"; 266 | } 267 | 268 | }, 269 | 270 | manageEvents: function(action) { 271 | 272 | this.eventsSection.visible = this.showEventsSectionIfEmpty || this.shouldShowEventsSection() ; 273 | if(this.showEventsInCalendarAlso == true) { 274 | switch(action) { 275 | case 0: 276 | if(this.eventsSectionhere == true) { 277 | return; 278 | } 279 | this.removeSection(this.eventsSection); 280 | this.box.insert_child_at_index(this.eventsSection,this.showingSections.indexOf("events")); 281 | this.eventsSectionhere = true; 282 | return; 283 | case 1: 284 | if(this.eventsSectionhere == false) { 285 | return; 286 | } 287 | this.box.remove_child(this.box.get_children()[this.showingSections.indexOf("events")]); 288 | this.newEventsSectionParent.insert_child_at_index(this.eventsSection, this.eventsSectionPosition); 289 | this.eventsSectionhere = false; 290 | return; 291 | } 292 | } 293 | }, 294 | 295 | manageLabel:function(nCount,eCount) { 296 | 297 | this.notificationLabel.visible = nCount*this.newNotificationAction; 298 | this.eventsLabel.visible = eCount*this.newNotificationAction && (this.shouldShowEventsSection() > 0); 299 | 300 | if (this.changeIcons) { 301 | this.manageIconChange(nCount > 0 || eCount > 0); 302 | } 303 | 304 | if(this.newNotificationAction == 2) { 305 | if(nCount>0) { 306 | this.notificationLabel.text=nCount.toString(); 307 | } 308 | if(eCount > 0 ) { 309 | this.eventsLabel.text=eCount.toString(); 310 | } 311 | } 312 | 313 | }, 314 | 315 | manageIconChange: function(statusIcon) { 316 | 317 | let iconName = statusIcon ? "notification-center-full" : "notification-center-empty"; 318 | this.notificationIcon.icon_name = iconName; 319 | 320 | }, 321 | 322 | middleClickDndToggle: function (actor, event) { 323 | 324 | switch(event.get_button()) { 325 | 326 | case 2: // if middle click 327 | 328 | // close the menu, since it gets open on any click 329 | if (this.menu.isOpen) { 330 | this.menu.actor.visible = false; 331 | } 332 | // toggle DND state 333 | this.dndToggle(); 334 | // reload dnd status 335 | this.loadDndStatus(); 336 | 337 | return; 338 | 339 | } 340 | 341 | }, 342 | 343 | newNotif: function(messageType) { 344 | 345 | switch(messageType) { 346 | case "media": 347 | this.mediaCount++; 348 | break; 349 | case "notification" : 350 | this.notificationCount = this.notificationCount+ !this.menu.isOpen; 351 | //this.filterNotifications(); 352 | let source = Main.messageTray.getSources(); 353 | let applicationIndex = this.appBlackList.indexOf(source[source.length-1].title); 354 | if(this.allowRunningScript && applicationIndex > 0 && this.scriptList[applicationIndex]!="") { 355 | utilspawn(["sh", this.scriptList[applicationIndex]]); 356 | } 357 | if(this.isDndOff) { 358 | if(applicationIndex > -1) { 359 | switch(this.blackListAction) { 360 | case 3: 361 | case 2: 362 | this.notificationCount--; 363 | } 364 | } 365 | this.animateOnNewNotification(5); 366 | } 367 | break; 368 | case "events" : 369 | [ this.seenEvents, this.eventsCount ] = [ (Main.panel.statusArea.dateMenu.menu.isOpen)? this.seenEvents: false, this.shouldShowEventsSection()*(!this.menu.isOpen) ]; 370 | break; 371 | } 372 | this.resetIndicator(); 373 | 374 | }, 375 | 376 | remNotif: function(messageType) { 377 | 378 | switch(messageType) { 379 | case "media" : 380 | this.mediaCount--; 381 | break; 382 | case "notification" : 383 | (this.notificationCount>0)? this.notificationCount-- : 0; 384 | break; 385 | case "events" : 386 | this.eventsCount = this.shouldShowEventsSection(); 387 | break; 388 | } 389 | this.resetIndicator(); 390 | 391 | }, 392 | 393 | removeSection(section) { 394 | 395 | if(section == this.eventsSection) { 396 | this.newEventsSectionParent.remove_actor(this.eventsSection); 397 | return ; 398 | } 399 | 400 | this._messageList._sectionList.remove_actor(section); 401 | this._messageList._sync(); 402 | 403 | }, 404 | 405 | resetIndicator: function() { 406 | 407 | this.manageAutohide(); 408 | this.clearButton.visible = this.notificationSection._canClear && this.notificationSectionToBeShown; 409 | this.eventsCount = this.eventsCount*this.includeEventsCount; 410 | if(this.isDndOff ) { 411 | this.manageLabel((this.notificationCount + (!this.showThreeIcons)*this.eventsCount) ,(this.showThreeIcons)*this.eventsCount); 412 | } 413 | 414 | }, 415 | 416 | setNotificationIconName: function () { 417 | 418 | if(Gtk.IconTheme.get_default()) { 419 | this.notificationIconName = Gtk.IconTheme.get_default().has_icon("notification-symbolic")?"notification-symbolic":"preferences-system-notifications-symbolic"; 420 | } 421 | else { 422 | this.notificationIconName = "preferences-system-notifications-symbolic"; 423 | } 424 | 425 | }, 426 | 427 | iconThemeChanged: function() { 428 | 429 | this.setNotificationIconName(); 430 | this.loadDndStatus(); 431 | 432 | }, 433 | 434 | shouldShowEventsSection: function() { 435 | 436 | switch(this.eventsSection._eventsList.get_children().length) { 437 | case 0: 438 | return 0; 439 | default: 440 | return (this.eventsSection._eventsList.get_children()[0].style_class == 'event-placeholder') ? 0: this.eventsSection._eventsList.get_children().length; 441 | } 442 | 443 | }, 444 | 445 | startNotificationCenter: function() { 446 | 447 | if(this.prefs.get_double("current-version") < 23.03) { 448 | Main.notify("Notification Center","Extension is updated. Please Complete the update process in the extension preferences."); 449 | return; 450 | } 451 | 452 | this._indicator.add_child(this.eventsIcon); 453 | this._indicator.add_child(this.eventsLabel); 454 | this._indicator.add_child(this.mediaIcon); 455 | this._indicator.add_child(this.notificationIcon); 456 | this._indicator.add_child(this.notificationLabel); 457 | 458 | this.setNotificationIconName(); 459 | this.iconThemeChangeSig = this.textureCache.connect('icon-theme-changed', this.iconThemeChanged.bind(this)); 460 | 461 | this.add_child(this._indicator); 462 | Main.panel.addToStatusArea("NotificationCenter", this, this.prefs.get_int('indicator-index'), this.prefs.get_string('indicator-pos')); 463 | 464 | this.eventsSection.allowed = true; // Compatibility with this._messageList 465 | if(this.eventsSectionPosition == 2) { // Shows Events Section beside Calendar 466 | this.newEventsSectionParent.remove_actor(this.eventsSection); 467 | this.newEventsSectionParent = this._messageList._sectionList; 468 | this.newEventsSectionParent.insert_child_at_index(this.eventsSection, 2); 469 | } 470 | //this.rebuildMessageList(); 471 | if(this.showingSections.length == 3 && !this.showEventsInCalendarAlso) { 472 | this.dateMenuVbox.style = "border-width: 0px"; 473 | } 474 | this._messageListParent.remove_actor(this._messageList); 475 | if(this.prefs.get_boolean("calendar-on-left")) { 476 | this._messageListParent.insert_child_at_index(this._messageList, 1) 477 | this.dateMenuVbox.add_style_class_name("notification-center-datemenu-vbox"); 478 | } 479 | else { 480 | this._messageListParent.insert_child_at_index(this._messageList, 0); 481 | } 482 | for(let i=0;i this.newNotif(this.showingSections[i]) )); 487 | this.connectedSignals.push(this.eventsSection._eventsList.connect('actor-removed' ,()=> this.remNotif(this.showingSections[i]) )); 488 | this.eventsSection.setDate(new Date()); 489 | } 490 | else { 491 | this.removeSection(this[this.showingSections[i]+"Section"]); 492 | this.box.add(this[this.showingSections[i]+"Section"]); 493 | this.connectedSignals.push(this[this.showingSections[i]+"Section"]._list.connect('actor-added' ,()=> this.newNotif(this.showingSections[i]) )); 494 | this.connectedSignals.push(this[this.showingSections[i]+"Section"]._list.connect('actor-removed' ,()=> this.remNotif(this.showingSections[i]) )); 495 | this[this.showingSections[i]+"Section"].add_style_class_name('notification-center-message-list-section'); 496 | } 497 | } 498 | 499 | //this.arrangeItems(); 500 | this.scrollView._delegate = this; 501 | this.scrollView.add_actor(this.box); 502 | this.box.add_child(this.noNotificationLabel); 503 | this.menu.box.add_child(this.scrollView); 504 | //this.addClearButton() 505 | let clearButtonPos = this.prefs.get_enum("clear-button-alignment"); 506 | if(clearButtonPos!=3){ 507 | this.clearButton.connect('clicked', ()=> { 508 | this.notificationSection.clear(); 509 | }); 510 | this.clearButton.set_x_align(1+clearButtonPos); 511 | this.menu.box.add_child(this.clearButton); 512 | } 513 | this._messageList._clearButton.opacity = 255*(!this.notificationSectionToBeShown); 514 | 515 | switch(this.prefs.get_enum("dnd-position")) { 516 | case 1: 517 | this.dndItem._delegate = this; 518 | this.dndItem.connect("toggled", ()=>this.dndToggle()); 519 | this._messageList._dndSwitch.visible = false; 520 | this._messageList._dndButton.label_actor.visible = false; 521 | this.menu.box.insert_child_at_index(new PopupMenu.PopupSeparatorMenuItem(), 0); 522 | this.menu.box.insert_child_at_index(this.dndItem, 0); 523 | break; 524 | case 2: 525 | this.dndItem.connect("toggled", ()=>this.dndToggle()); 526 | this._messageList._dndSwitch.visible = false 527 | this._messageList._dndButton.label_actor.visible = false 528 | this.menu.box.add_child(new PopupMenu.PopupSeparatorMenuItem()); 529 | this.menu.box.add_child(this.dndItem); 530 | } 531 | 532 | this.loadDndStatus(); 533 | this.resetIndicator(); 534 | 535 | let bannerPos = this.prefs.get_string('banner-pos'); 536 | Main.messageTray._bannerBin.set_y_align(bannerPos[0]); 537 | Main.messageTray.bannerAlignment = bannerPos[1]; 538 | //this.removeDotAndBorderFromDateMenu(); 539 | Main.panel.statusArea.dateMenu.get_children()[0].remove_actor(Main.panel.statusArea.dateMenu._indicator) 540 | this.dtActors=Main.panel.statusArea.dateMenu.get_children()[0].get_children(); 541 | Main.panel.statusArea.dateMenu.get_children()[0].remove_actor(this.dtActors[0]); 542 | //this.indicatorViewShortcut(); 543 | Main.wm.addKeybinding( 544 | 'indicator-shortcut', 545 | this.prefs, 546 | MetaKeyBindingFlags.NONE, 547 | ShellActionMode.NORMAL | ShellActionMode.OVERVIEW | ShellActionMode.POPUP, 548 | () => { 549 | this.notificationIcon.visible = !(this.mediaIcon.visible || this.eventsIcon.visible); 550 | this.visible = true; 551 | this.menu.toggle(); 552 | } 553 | ); 554 | 555 | this.dndSig = this.dndpref.connect("changed::show-banners", () => { 556 | this.loadDndStatus(); 557 | }); 558 | 559 | if(this.prefs.get_boolean("middle-click-dnd")) { 560 | this.connect("button-press-event", (actor, event)=>this.middleClickDndToggle(actor, event)); 561 | } 562 | 563 | this.unFreezeSig = Main.panel.statusArea.dateMenu._calendar.connect('selected-date-changed', (calendar, datetime) => { 564 | this._messageList.get_parent().get_parent().layout_manager.frozen = false; 565 | switch(this.eventsSectionPosition) { 566 | case 2: 567 | [ this.eventsSection.visible, this.dateMenuVbox.style ] = [ ( this.showEventsSectionIfEmpty || this.shouldShowEventsSection()), "" ]; 568 | this._messageList._sync(); 569 | return; 570 | case 0: 571 | this.eventsSection.visible = (this.showEventsSectionIfEmpty || this.shouldShowEventsSection()); 572 | } 573 | }); 574 | 575 | this.dmSig = Main.panel.statusArea.dateMenu.menu.connect("open-state-changed",()=> { 576 | if (Main.panel.statusArea.dateMenu.menu.isOpen) { 577 | if(this.eventsSectionPosition != 1) { // Also show Events Section in Calendar menu 578 | this.manageEvents(1); 579 | if(this.showLabel==false) { 580 | this.eventsCount=0; 581 | } 582 | this.resetIndicator(); 583 | } 584 | this._messageList._sync(); 585 | if(this.hideEmptySpace) { // Autohide Empty Space beside Calendar 586 | this._messageList.visible = !this._messageList._placeholder.visible; 587 | } 588 | this.dateMenuVbox.style = (this._messageList.visible) ? "" : "border-width: 0px"; 589 | } 590 | else { 591 | Main.panel.statusArea.dateMenu._calendar.setDate(new Date()); 592 | this.eventsCount = (this.seenEvents) ? 0 : this.eventsCount; 593 | this.resetIndicator(); 594 | } 595 | }); 596 | 597 | if(this.prefs.get_boolean("autoclose-menu")) { 598 | this.cmsig = global.display.connect('notify::focus-window', () => { 599 | if(global.display.focus_window!= null && this.menu.isOpen) { 600 | this.menu.close(1); 601 | } 602 | }); 603 | } 604 | 605 | Main.panel.statusArea.dateMenu._date.visible = !this.prefs.get_boolean("hide-date-section"); 606 | if(this.prefs.get_boolean("hide-weather-section")) { 607 | this.originalEventsSectionParent.remove_actor(Main.panel.statusArea.dateMenu._weatherItem); 608 | } 609 | if(this.prefs.get_boolean("hide-clock-section")) { 610 | this.originalEventsSectionParent.remove_actor(Main.panel.statusArea.dateMenu._clocksItem); 611 | } 612 | 613 | }, 614 | 615 | undoChanges: function () { 616 | 617 | if(this._indicator.get_children().length == 0) { 618 | return; 619 | } 620 | 621 | this.blinkIconStopIfBlinking(); 622 | this._messageListParent.remove_actor(this._messageList); 623 | this._messageListParent.insert_child_at_index(this._messageList,0); 624 | this.dateMenuVbox.style=""; 625 | this.dateMenuVbox.remove_style_class_name("notification-center-datemenu-vbox"); 626 | [ this._messageList._dndSwitch.visible, this._messageList._dndButton.label_actor.visible ] = [ true, true ]; 627 | 628 | this.manageEvents(0); 629 | //this.removeAndDisconnectSections(); 630 | let len=this.showingSections.length; 631 | while(len!=0) { 632 | 633 | if(this.showingSections[len-1] == "events") { 634 | this[this.showingSections[len-1]+"Section"]._eventsList.disconnect(this.connectedSignals[2*len-1]); 635 | this[this.showingSections[len-1]+"Section"]._eventsList.disconnect(this.connectedSignals[2*len-2]); 636 | 637 | this.box.remove_child(this.box.get_children()[len-1]); 638 | this.newEventsSectionParent.add_actor(this.eventsSection); 639 | } 640 | else { 641 | this[this.showingSections[len-1]+"Section"]._list.disconnect(this.connectedSignals[2*len-1]); 642 | this[this.showingSections[len-1]+"Section"]._list.disconnect(this.connectedSignals[2*len-2]); 643 | 644 | this.box.remove_child(this.box.get_children()[len-1]); 645 | this._messageList._addSection(this[this.showingSections[len-1]+"Section"]); 646 | } 647 | this[this.showingSections[len-1]+"Section"].remove_style_class_name('notification-center-message-list-section'); 648 | this.connectedSignals.pop(); 649 | this.connectedSignals.pop(); 650 | len--; 651 | } 652 | 653 | this.eventsSection.allowed = false; 654 | [ this.mediaSection.visible, this.notificationSection.visible, this.eventsSection.visible ] = [ true, true, true ]; 655 | this.removeSection(this.mediaSection); 656 | this.removeSection(this.notificationSection); 657 | this.removeSection(this.eventsSection); 658 | 659 | this._messageList._addSection(this.mediaSection); 660 | this._messageList._addSection(this.notificationSection); 661 | this.originalEventsSectionParent.insert_child_at_index(this.eventsSection,0); // Using this.originalEventsSectionParent since original this.newEventsSectionParent may be changed due to this.eventsSectionPosition. 662 | this._messageList._clearButton.opacity = 255; 663 | Main.messageTray.bannerAlignment = 2; 664 | Main.messageTray._bannerBin.set_y_align(1); 665 | 666 | Main.panel.statusArea.dateMenu.menu.disconnect(this.dmSig); 667 | Main.panel.statusArea.dateMenu._calendar.disconnect(this.unFreezeSig); 668 | 669 | if(this.cmsig != null) { 670 | global.display.disconnect(this.cmsig); 671 | } 672 | 673 | if(this.dndSig != null){ 674 | this.dndpref.disconnect(this.dndSig); 675 | this.dndItem.destroy(); 676 | } 677 | 678 | if(this.iconThemeChangeSig!=null){ 679 | this.textureCache.disconnect(this.iconThemeChangeSig); 680 | } 681 | 682 | Main.panel.statusArea.dateMenu.get_children()[0].insert_child_at_index(this.dtActors[0],0); 683 | Main.panel.statusArea.dateMenu.get_children()[0].insert_child_at_index(Main.panel.statusArea.dateMenu._indicator, 2); 684 | 685 | if(Main.panel.statusArea.dateMenu._clocksItem.get_parent() == null) { 686 | this.originalEventsSectionParent.insert_child_at_index(Main.panel.statusArea.dateMenu._clocksItem, 1); 687 | } 688 | if(Main.panel.statusArea.dateMenu._weatherItem.get_parent() == null) { 689 | this.originalEventsSectionParent.insert_child_at_index(Main.panel.statusArea.dateMenu._weatherItem, 2); 690 | } 691 | Main.panel.statusArea.dateMenu._date.visible = true; 692 | Main.wm.removeKeybinding('indicator-shortcut'); 693 | 694 | this.eventsIcon.destroy(); 695 | this.eventsLabel.destroy(); 696 | this.mediaIcon.destroy(); 697 | this.notificationIcon.destroy(); 698 | this.notificationLabel.destroy(); 699 | this._indicator.destroy(); 700 | 701 | this.clearButton.destroy(); 702 | this.box.destroy(); 703 | this.scrollView.destroy(); 704 | 705 | this.prefs.disconnect(this.reloadSignal); 706 | this.prefs.disconnect(this.reloadProfilesSignal); 707 | 708 | }, 709 | 710 | }); 711 | 712 | 713 | -------------------------------------------------------------------------------- /notification-center@Selenium-H/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Notification Center", 3 | "description": "Detach notification center to top panel and customizations.Please reset the extension after updating.\nThe Extension will stop when upgraded to an incompatible version.\nIn that case an Update tab is created to easily reset the extension.\nA Reset button is also always present in Preferences option in the Top Right Application menu of the extension preferences window.", 4 | "comment": "Detach notification center to top panel and customizations.", 5 | "uuid": "notification-center@Selenium-H", 6 | "settings-schema": "org.gnome.shell.extensions.notification-center", 7 | "shell-version": [ 8 | "3.38", 9 | "40", 10 | "41" 11 | ], 12 | "status" : "", 13 | "url": "https://github.com/Selenium-H/Notification-Center", 14 | "version": 24.02 15 | } 16 | -------------------------------------------------------------------------------- /notification-center@Selenium-H/prefs.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Version 24.00 4 | ============= 5 | 6 | */ 7 | 8 | const Config = imports.misc.config; 9 | const Extension = imports.misc.extensionUtils.getCurrentExtension(); 10 | const GLib = imports.gi.GLib; 11 | 12 | function init() { 13 | } 14 | 15 | function buildPrefsWidget() { 16 | 17 | let gtkVersion = (Config.PACKAGE_VERSION >= "40") ? Extension.imports.prefsGtk4 : Extension.imports.prefsGtk3; 18 | gtkVersion.init(); 19 | let widget = new gtkVersion.Prefs_NotificationCenterExtension(); 20 | GLib.timeout_add(GLib.PRIORITY_DEFAULT, 0, ()=> { 21 | new gtkVersion.ExtensionPreferencesWindow_NotificationCenterExtension( widget ); 22 | return false; 23 | }); 24 | 25 | (Config.PACKAGE_VERSION >= "40") ? null : widget.show_all(); 26 | return widget; 27 | 28 | } 29 | 30 | -------------------------------------------------------------------------------- /notification-center@Selenium-H/stylesheet.css: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | Version 23.04 4 | ============= 5 | 6 | */ 7 | 8 | .notification-center-message-list { 9 | padding: 8px 8px 10px 20px; 10 | spacing: 6px; 11 | } 12 | 13 | .notification-center-message-list-empty { 14 | padding: 8px 8px 0 20px; 15 | min-height: 128px; 16 | margin-bottom: 20px; 17 | background-image: url("resource:///org/gnome/shell/theme/no-notifications.svg"); 18 | background-size: 48px; 19 | } 20 | 21 | .notification-center-clear-button { 22 | margin: 0px 26px 10px 26px; 23 | } 24 | 25 | .notification-center-message-list-section { 26 | padding-bottom: 0px; 27 | padding-top: 0px; 28 | } 29 | 30 | .notification-center-events-label, 31 | .notification-center-notification-label { 32 | padding: 0px 6px 0 0; 33 | } 34 | 35 | .notification-center-datemenu-vbox { 36 | border-left-width : 0px; 37 | border-right-width : 1px; 38 | } 39 | 40 | 41 | -------------------------------------------------------------------------------- /schemas/org.gnome.shell.extensions.notification-center.gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 1 57 | Show Media Section on Notification Center 58 | Show Media Section on Notification Center 59 | 60 | 61 | 62 | 2 63 | Show Notifications list on Notification Center 64 | Show Notifications list on Notification Center 65 | 66 | 67 | 68 | 3 69 | Show Events list on Notification Center 70 | Show Events list on Notification Center 71 | 72 | 73 | 74 | 'below' 75 | Also, Show Events List 76 | Also, show Events List 77 | 78 | 79 | 80 | false 81 | Hide space beside Calendar if empty 82 | Hide space beside Calendar if empty 83 | 84 | 85 | 86 | false 87 | Show Calendar on Left 88 | Show Calendar on Left 89 | 90 | 91 | 92 | true 93 | Hide Events List If Empty 94 | Hide Events List If Empty 95 | 96 | 97 | 98 | ['media','notification','events'] 99 | Order of sections in Notification Center 100 | Order of sections in Notification Center 101 | 102 | 103 | 104 | 'bottom' 105 | Do Not Disturb menu position 106 | Do Not Disturb menu position 107 | 108 | 109 | 110 | 'right' 111 | Clear All Button position 112 | Clear All Button position 113 | 114 | 115 | 116 | false 117 | Close Notification Center when focus is switched 118 | Close Notification Center when focus is switched 119 | 120 | 121 | 122 | 123 | c']]]> 124 | 125 | Shortcut key combiation to show Notification Center 126 | Shortcut key combiation to show Notification Center 127 | 128 | 129 | 130 | 80 131 | Maximum height of Notification Center ( in % ) 132 | Maximum height of Notification Center ( in % ) 133 | 134 | 135 | 136 | false 137 | Hide Clock Section 138 | Hide Clock Section 139 | 140 | 141 | 142 | false 143 | Hide Weather Section 144 | Hide Weather Section 145 | 146 | 147 | 148 | false 149 | Hide Date Section 150 | Hide Date Section 151 | 152 | 153 | 154 | "13" 155 | Notification Banner position 156 | Notification Banner position 157 | 158 | 159 | 160 | 'right' 161 | Notification Center icon position on panel 162 | Notifications Center icon position 163 | 164 | 165 | 166 | 2 167 | Position of notification icon in panel box 168 | Position of notification icon in panel box 169 | 170 | 171 | 172 | false 173 | Show individual icons for each section on panel 174 | Show individual icons for each section on panel 175 | 176 | 177 | 178 | false 179 | Change icons depending if there is notification or not 180 | Change icons depending if there is notification or not 181 | 182 | 183 | 184 | 1 185 | AutoHide notification indicator on panel 186 | AutoHide notification indicator on panel 187 | 188 | 189 | 190 | 'dot' 191 | When new notification arrives 192 | When new notification arrives 193 | 194 | 195 | 196 | false 197 | Include events in above case 198 | Include events in above case 199 | 200 | 201 | 202 | 0 203 | Number of times panel icon blinks on new notification 204 | Number of times panel icon blinks on new notification 205 | 206 | 207 | 208 | 500 209 | Blink Time Interval ( in milliseconds ) 210 | Blink Time Interval ( in milliseconds ) 211 | 212 | 213 | 214 | false 215 | Animate icon when new notification arrives 216 | Animate icon when new notification arrives 217 | 218 | 219 | 220 | false 221 | Show Dots or Counts till all notifications are cleared 222 | Show Dots or Counts till all notifications are cleared 223 | 224 | 225 | 226 | true 227 | Middle click panel icon to toggle Do Not Disturb 228 | Middle click panel icon to toggle Do Not Disturb 229 | 230 | 231 | 232 | [] 233 | List of applications 234 | List of applications 235 | 236 | 237 | 238 | [] 239 | List of Names of application to ignore notifications from 240 | List of Names of application to ignore notifications from 241 | 242 | 243 | 244 | [] 245 | List of Scripts for applications 246 | List of Scripts for applications 247 | 248 | 249 | 250 | 'none' 251 | When new notification arrives 252 | When new notification arrives 253 | 254 | 255 | 256 | false 257 | Run scripts on new notification 258 | Run scripts on new notification 259 | 260 | 261 | 262 | 263 | 264 | 23.00 265 | Version of Current Extension 266 | Provided to ensure that extension is stopped incase of autoupdate from previous version to prevent unwanted effects 267 | 268 | 269 | 270 | false 271 | Signals the extension to reload 272 | Signals the extension to reload 273 | 274 | 275 | 276 | false 277 | Signals the extension to reload Application Profiles 278 | Signals the extension to reload Application Profiles 279 | 280 | 281 | 282 | 283 | 284 | --------------------------------------------------------------------------------