├── edit_photos-clear.css ├── language ├── zh_CN │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── zh_HK │ ├── description.txt │ └── plugin.lang.php ├── zh_TW │ ├── description.txt │ └── plugin.lang.php ├── ja_JP │ ├── description.txt │ └── plugin.lang.php ├── en_UK │ ├── description.txt │ └── plugin.lang.php ├── vi_VN │ ├── description.txt │ └── plugin.lang.php ├── af_ZA │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── he_IL │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── sv_SE │ ├── description.txt │ └── plugin.lang.php ├── bg_BG │ ├── description.txt │ └── plugin.lang.php ├── nb_NO │ ├── description.txt │ └── plugin.lang.php ├── sk_SK │ └── description.txt ├── eo_EO │ ├── description.txt │ └── plugin.lang.php ├── gl_ES │ ├── description.txt │ └── plugin.lang.php ├── ar_SA │ ├── description.txt │ └── plugin.lang.php ├── da_DK │ └── description.txt ├── fa_IR │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── hu_HU │ ├── description.txt │ └── plugin.lang.php ├── lt_LT │ ├── description.txt │ └── plugin.lang.php ├── nl_NL │ └── description.txt ├── pt_BR │ ├── description.txt │ └── index.php ├── tr_TR │ ├── description.txt │ └── plugin.lang.php ├── ca_ES │ └── description.txt ├── de_DE │ └── description.txt ├── es_MX │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── fi_FI │ ├── description.txt │ └── index.php ├── is_IS │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── lv_LV │ ├── description.txt │ └── plugin.lang.php ├── nn_NO │ ├── description.txt │ └── plugin.lang.php ├── pt_PT │ └── description.txt ├── es_ES │ └── description.txt ├── et_EE │ ├── description.txt │ └── index.php ├── hy_AM │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── pl_PL │ └── description.txt ├── ro_RO │ ├── description.txt │ └── plugin.lang.php ├── ru_RU │ └── description.txt ├── sh_RS │ ├── description.txt │ └── plugin.lang.php ├── ta_IN │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── br_FR │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── cs_CZ │ ├── description.txt │ └── plugin.lang.php ├── eu_ES │ ├── description.txt │ └── plugin.lang.php ├── sl_SI │ ├── description.txt │ └── plugin.lang.php ├── fr_CA │ ├── description.txt │ └── plugin.lang.php ├── it_IT │ ├── description.txt │ └── index.php ├── km_KH │ └── description.txt ├── fr_FR │ └── description.txt ├── th_TH │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── uk_UA │ └── description.txt ├── sr_RS │ ├── description.txt │ └── index.php └── el_GR │ └── description.txt ├── fontello ├── font │ ├── fontello.eot │ ├── fontello.ttf │ ├── fontello.woff │ └── fontello.woff2 ├── LICENSE.txt ├── css │ ├── animation.css │ └── fontello-codes.css └── README.txt ├── template ├── admin_album.tpl ├── navigation_bar.tpl └── admin_config.tpl ├── admin_permission.css ├── admin.php ├── edit_photos-dark.css ├── admin_config.php └── edit_photos.js /edit_photos-clear.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/zh_CN/description.txt: -------------------------------------------------------------------------------- 1 | 允许非管理员向相册添加图片 -------------------------------------------------------------------------------- /language/zh_HK/description.txt: -------------------------------------------------------------------------------- 1 | 允許非管理員新增相片 -------------------------------------------------------------------------------- /language/zh_TW/description.txt: -------------------------------------------------------------------------------- 1 | 非管理員使用者可新增照片 -------------------------------------------------------------------------------- /language/ja_JP/description.txt: -------------------------------------------------------------------------------- 1 | 管理者以外のユーザは写真を追加できません -------------------------------------------------------------------------------- /language/en_UK/description.txt: -------------------------------------------------------------------------------- 1 | Non admin users can add photos -------------------------------------------------------------------------------- /language/vi_VN/description.txt: -------------------------------------------------------------------------------- 1 | Người dùng thường có thể thêm ảnh -------------------------------------------------------------------------------- /language/af_ZA/description.txt: -------------------------------------------------------------------------------- 1 | Gewone gebruikers kan fotos byvoeg. -------------------------------------------------------------------------------- /language/he_IL/description.txt: -------------------------------------------------------------------------------- 1 | ניהול משתמשים שלא יוכלו להוסיף תמונות -------------------------------------------------------------------------------- /language/sv_SE/description.txt: -------------------------------------------------------------------------------- 1 | Vanliga användare kan ladda upp bilder -------------------------------------------------------------------------------- /language/bg_BG/description.txt: -------------------------------------------------------------------------------- 1 | И потребителите могат да добавят снимки -------------------------------------------------------------------------------- /language/nb_NO/description.txt: -------------------------------------------------------------------------------- 1 | Ikke administratorer kan legge til bilder -------------------------------------------------------------------------------- /language/sk_SK/description.txt: -------------------------------------------------------------------------------- 1 | Možnosť pridávať fotografie pre neadminov -------------------------------------------------------------------------------- /language/eo_EO/description.txt: -------------------------------------------------------------------------------- 1 | Ne-administrantaj uzantoj rajtas aldoni fotojn. -------------------------------------------------------------------------------- /language/gl_ES/description.txt: -------------------------------------------------------------------------------- 1 | Usuarios non administradores poden engadir fotos -------------------------------------------------------------------------------- /language/ar_SA/description.txt: -------------------------------------------------------------------------------- 1 | المستخدمون من غير مجموعات الادارة بمكانهم اضافة صور -------------------------------------------------------------------------------- /language/da_DK/description.txt: -------------------------------------------------------------------------------- 1 | Andre end administratorer kan tilføje fotografier. -------------------------------------------------------------------------------- /language/fa_IR/description.txt: -------------------------------------------------------------------------------- 1 | کاربرانی که مدیر نیستند هم بتوانند عکس آپلود کنند -------------------------------------------------------------------------------- /language/hu_HU/description.txt: -------------------------------------------------------------------------------- 1 | Nem adminisztrátorok is tölthetnek fel képeket 2 | -------------------------------------------------------------------------------- /language/lt_LT/description.txt: -------------------------------------------------------------------------------- 1 | Leidžia įkelti nuotraukas ne administratoriams 2 | -------------------------------------------------------------------------------- /language/nl_NL/description.txt: -------------------------------------------------------------------------------- 1 | Niet-admin gebruikers kunnen nu ook foto's toevoegen -------------------------------------------------------------------------------- /language/pt_BR/description.txt: -------------------------------------------------------------------------------- 1 | Nenhum usuário administrador pode adicionar fotos -------------------------------------------------------------------------------- /language/tr_TR/description.txt: -------------------------------------------------------------------------------- 1 | Yönetici olmayan kullanıcılar fotoğraf ekleyebilir -------------------------------------------------------------------------------- /language/ca_ES/description.txt: -------------------------------------------------------------------------------- 1 | Permet afegir imatges als usuaris no administradors. 2 | -------------------------------------------------------------------------------- /language/de_DE/description.txt: -------------------------------------------------------------------------------- 1 | Benutzer ohne Administrator Status können Fotos hochladen -------------------------------------------------------------------------------- /language/es_MX/description.txt: -------------------------------------------------------------------------------- 1 | Los usuarios no administradores pueden agregar fotos. -------------------------------------------------------------------------------- /language/fi_FI/description.txt: -------------------------------------------------------------------------------- 1 | Salli muidenkin kuin ylläpitäjien ladata kuvia sivustolle. -------------------------------------------------------------------------------- /language/is_IS/description.txt: -------------------------------------------------------------------------------- 1 | Notendur sem ekki eru stjórnendur geta bætt við myndum -------------------------------------------------------------------------------- /language/lv_LV/description.txt: -------------------------------------------------------------------------------- 1 | Ne administratortipa lietotāji var pievienot fotogrāfijas -------------------------------------------------------------------------------- /language/nn_NO/description.txt: -------------------------------------------------------------------------------- 1 | Brukarar som ikkje er administratorar kan legge til bilete -------------------------------------------------------------------------------- /language/pt_PT/description.txt: -------------------------------------------------------------------------------- 1 | Utilizadores não administradores podem adicionar fotos -------------------------------------------------------------------------------- /language/es_ES/description.txt: -------------------------------------------------------------------------------- 1 | Permite que los usuarios añadan fotos sin ser administradores -------------------------------------------------------------------------------- /language/et_EE/description.txt: -------------------------------------------------------------------------------- 1 | Teised kasutajad peale administraatori saavad lisada fotosid -------------------------------------------------------------------------------- /language/hy_AM/description.txt: -------------------------------------------------------------------------------- 1 | Ոչ ադմինիստրատոր օգտատերերը կարող են լուսանկարներ ավելացնել: -------------------------------------------------------------------------------- /language/pl_PL/description.txt: -------------------------------------------------------------------------------- 1 | Użytkownicy nie będący administratorami mogą dodawać zdjęcia -------------------------------------------------------------------------------- /language/ro_RO/description.txt: -------------------------------------------------------------------------------- 1 | Utilizatorii care nu sunt administratori pot adăuga imagini -------------------------------------------------------------------------------- /language/ru_RU/description.txt: -------------------------------------------------------------------------------- 1 | Пользователи без админских прав могут загружать изображения -------------------------------------------------------------------------------- /language/sh_RS/description.txt: -------------------------------------------------------------------------------- 1 | Fotografije mogu dodati i korisnici koji nisu administratori. -------------------------------------------------------------------------------- /language/ta_IN/description.txt: -------------------------------------------------------------------------------- 1 | நிர்வாகி அல்லாத பயனர்கள் 2 | புகைப்படங்களை சேர்க்க முடியும் -------------------------------------------------------------------------------- /language/br_FR/description.txt: -------------------------------------------------------------------------------- 1 | An implijerien a c'hell ouzhpennañ luc'hskeudennoù hep bezañ merour -------------------------------------------------------------------------------- /language/cs_CZ/description.txt: -------------------------------------------------------------------------------- 1 | Přidávat fotografie mohou také uživatelé bez administrátorských práv -------------------------------------------------------------------------------- /language/eu_ES/description.txt: -------------------------------------------------------------------------------- 1 | Administratzaileak ez diren erabiltzaileek argazkiak gehi ditzakete -------------------------------------------------------------------------------- /language/sl_SI/description.txt: -------------------------------------------------------------------------------- 1 | Tudi uporabniki brez skrbniških pravic lahko dodajajo fotografije. -------------------------------------------------------------------------------- /language/fr_CA/description.txt: -------------------------------------------------------------------------------- 1 | Permet aux utilisateurs d'ajouter des photos sans être administrateur -------------------------------------------------------------------------------- /language/it_IT/description.txt: -------------------------------------------------------------------------------- 1 | Permette agli utenti di aggiungere delle foto senza essere amministratori -------------------------------------------------------------------------------- /language/km_KH/description.txt: -------------------------------------------------------------------------------- 1 | អ្នក​ប្រើ​ប្រាស់​ដែល​មិន​មែន​ជា​អ្នក​គ្រប់​គ្រង អាច​បន្ថែម​រូប​ថត​បាន​ -------------------------------------------------------------------------------- /language/fr_FR/description.txt: -------------------------------------------------------------------------------- 1 | Permet aux utilisateurs d'ajouter des photos sans être administrateur 2 | -------------------------------------------------------------------------------- /fontello/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plegall/Piwigo-community/HEAD/fontello/font/fontello.eot -------------------------------------------------------------------------------- /fontello/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plegall/Piwigo-community/HEAD/fontello/font/fontello.ttf -------------------------------------------------------------------------------- /fontello/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plegall/Piwigo-community/HEAD/fontello/font/fontello.woff -------------------------------------------------------------------------------- /fontello/font/fontello.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plegall/Piwigo-community/HEAD/fontello/font/fontello.woff2 -------------------------------------------------------------------------------- /language/nb_NO/plugin.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plegall/Piwigo-community/HEAD/language/nb_NO/plugin.lang.php -------------------------------------------------------------------------------- /language/th_TH/description.txt: -------------------------------------------------------------------------------- 1 | ปลั๊กอินที่อนุญาตให้สมาชิกทั่วไปสามารถอัพโหลดรูปถ่าย และสร้างอัลบั้มของตนเองได้ผ่านทางหน้าเว็บ. -------------------------------------------------------------------------------- /language/uk_UA/description.txt: -------------------------------------------------------------------------------- 1 | Стандартний плаґін за допомогою якого користувачі(не адміністратори) можуть завантажувати фотографії. -------------------------------------------------------------------------------- /language/sr_RS/description.txt: -------------------------------------------------------------------------------- 1 | Овај додатак омогућава корисницима галерије да праве албуме и додају слике - уз опцију контроле од стране администратора -------------------------------------------------------------------------------- /language/af_ZA/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/br_FR/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/et_EE/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/fa_IR/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/fi_FI/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/he_IL/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/pt_BR/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/sr_RS/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/ta_IN/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/th_TH/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/zh_CN/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/el_GR/description.txt: -------------------------------------------------------------------------------- 1 | Μη διαχειρηστές χρήστες μπορούν να προσθέσουν φωτογραφίες -------------------------------------------------------------------------------- /template/admin_album.tpl: -------------------------------------------------------------------------------- 1 | {literal} 2 | 7 | {/literal} 8 | 9 |
10 | 11 |

12 | {'Album of user'|translate} 13 | 17 |
{'a user can own only one album'|translate} 18 |

19 | 20 |

21 | 22 |

23 | 24 |
25 | -------------------------------------------------------------------------------- /template/navigation_bar.tpl: -------------------------------------------------------------------------------- 1 | 29 | -------------------------------------------------------------------------------- /language/es_MX/index.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /language/hy_AM/index.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /language/is_IS/index.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /fontello/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2016 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | 12 | 13 | ## Elusive 14 | 15 | Copyright (C) 2013 by Aristeides Stathopoulos 16 | 17 | Author: Aristeides Stathopoulos 18 | License: SIL (http://scripts.sil.org/OFL) 19 | Homepage: http://aristeides.com/ 20 | 21 | 22 | ## Typicons 23 | 24 | (c) Stephen Hutchings 2012 25 | 26 | Author: Stephen Hutchings 27 | License: SIL (http://scripts.sil.org/OFL) 28 | Homepage: http://typicons.com/ 29 | 30 | 31 | ## Entypo 32 | 33 | Copyright (C) 2012 by Daniel Bruce 34 | 35 | Author: Daniel Bruce 36 | License: SIL (http://scripts.sil.org/OFL) 37 | Homepage: http://www.entypo.com 38 | 39 | 40 | ## MFG Labs 41 | 42 | Copyright (C) 2012 by Daniel Bruce 43 | 44 | Author: MFG Labs 45 | License: SIL (http://scripts.sil.org/OFL) 46 | Homepage: http://www.mfglabs.com/ 47 | 48 | 49 | ## Iconic 50 | 51 | Copyright (C) 2012 by P.J. Onori 52 | 53 | Author: P.J. Onori 54 | License: SIL (http://scripts.sil.org/OFL) 55 | Homepage: http://somerandomdude.com/work/iconic/ 56 | 57 | 58 | ## Fontelico 59 | 60 | Copyright (C) 2012 by Fontello project 61 | 62 | Author: Crowdsourced, for Fontello project 63 | License: SIL (http://scripts.sil.org/OFL) 64 | Homepage: http://fontello.com 65 | 66 | 67 | ## Web Symbols 68 | 69 | Copyright (c) 2011 by Just Be Nice studio. All rights reserved. 70 | 71 | Author: Just Be Nice studio 72 | License: SIL (http://scripts.sil.org/OFL) 73 | Homepage: http://www.justbenicestudio.com/ 74 | 75 | 76 | -------------------------------------------------------------------------------- /language/it_IT/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/admin_config.tpl: -------------------------------------------------------------------------------- 1 | {literal} 2 | 30 | {/literal} 31 | 32 | {literal} 33 | 45 | {/literal} 46 | 47 |
48 | 49 |

50 | 51 |
55 | 60 |
61 |

62 | 63 |

64 | 65 |

66 | 67 |
68 | -------------------------------------------------------------------------------- /fontello/css/animation.css: -------------------------------------------------------------------------------- 1 | /* 2 | Animation example, for spinners 3 | */ 4 | .animate-spin { 5 | -moz-animation: spin 2s infinite linear; 6 | -o-animation: spin 2s infinite linear; 7 | -webkit-animation: spin 2s infinite linear; 8 | animation: spin 2s infinite linear; 9 | display: inline-block; 10 | } 11 | @-moz-keyframes spin { 12 | 0% { 13 | -moz-transform: rotate(0deg); 14 | -o-transform: rotate(0deg); 15 | -webkit-transform: rotate(0deg); 16 | transform: rotate(0deg); 17 | } 18 | 19 | 100% { 20 | -moz-transform: rotate(359deg); 21 | -o-transform: rotate(359deg); 22 | -webkit-transform: rotate(359deg); 23 | transform: rotate(359deg); 24 | } 25 | } 26 | @-webkit-keyframes spin { 27 | 0% { 28 | -moz-transform: rotate(0deg); 29 | -o-transform: rotate(0deg); 30 | -webkit-transform: rotate(0deg); 31 | transform: rotate(0deg); 32 | } 33 | 34 | 100% { 35 | -moz-transform: rotate(359deg); 36 | -o-transform: rotate(359deg); 37 | -webkit-transform: rotate(359deg); 38 | transform: rotate(359deg); 39 | } 40 | } 41 | @-o-keyframes spin { 42 | 0% { 43 | -moz-transform: rotate(0deg); 44 | -o-transform: rotate(0deg); 45 | -webkit-transform: rotate(0deg); 46 | transform: rotate(0deg); 47 | } 48 | 49 | 100% { 50 | -moz-transform: rotate(359deg); 51 | -o-transform: rotate(359deg); 52 | -webkit-transform: rotate(359deg); 53 | transform: rotate(359deg); 54 | } 55 | } 56 | @-ms-keyframes spin { 57 | 0% { 58 | -moz-transform: rotate(0deg); 59 | -o-transform: rotate(0deg); 60 | -webkit-transform: rotate(0deg); 61 | transform: rotate(0deg); 62 | } 63 | 64 | 100% { 65 | -moz-transform: rotate(359deg); 66 | -o-transform: rotate(359deg); 67 | -webkit-transform: rotate(359deg); 68 | transform: rotate(359deg); 69 | } 70 | } 71 | @keyframes spin { 72 | 0% { 73 | -moz-transform: rotate(0deg); 74 | -o-transform: rotate(0deg); 75 | -webkit-transform: rotate(0deg); 76 | transform: rotate(0deg); 77 | } 78 | 79 | 100% { 80 | -moz-transform: rotate(359deg); 81 | -o-transform: rotate(359deg); 82 | -webkit-transform: rotate(359deg); 83 | transform: rotate(359deg); 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /admin_permission.css: -------------------------------------------------------------------------------- 1 | form fieldset p { 2 | text-align:left;margin:0 0 1.5em 0;line-height:20px; 3 | } 4 | 5 | .permissionActions { 6 | text-align:right !important; 7 | } 8 | 9 | .permissionActions a:hover { 10 | border:none 11 | } 12 | 13 | .permissionActions img { 14 | margin-bottom:-2px 15 | } 16 | 17 | #community_nb_photos, 18 | #community_storage { 19 | width:400px; 20 | display:inline-block; 21 | margin-right:10px; 22 | } 23 | 24 | /* Permission Table */ 25 | #permission-table { 26 | position: relative; 27 | font-family: "Open Sans", "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif; 28 | } 29 | 30 | #permission-table-content { 31 | width:97%; 32 | border:0; 33 | border-collapse:separate; 34 | border-spacing: 0 1em; 35 | } 36 | 37 | #permission-table-content th, 38 | #permission-table-content td{ 39 | text-align:left; 40 | padding:5px; 41 | font-size:12px; 42 | } 43 | 44 | table, 45 | #permission-table-content thead tr{ 46 | text-align: left; 47 | font-size: 1.1em; 48 | font-weight: bold; 49 | color: #9e9e9e; 50 | background-color:transparent!important; 51 | box-shadow:none; 52 | 53 | } 54 | 55 | #permission-table-content tr{ 56 | box-shadow: 0 2px 2px #00000024; 57 | background-color: #F3F3F3; 58 | color: #555; 59 | height: 50px; 60 | border-radius: 10px; 61 | } 62 | 63 | #permission-table-content td:first-child{ 64 | border-top-left-radius:10px; 65 | border-bottom-left-radius: 10px; 66 | } 67 | 68 | #permission-table-content td:last-child{ 69 | border-top-right-radius: 10px; 70 | border-bottom-right-radius: 10px; 71 | } 72 | 73 | .permission-header-id{ 74 | width: 5%; 75 | } 76 | 77 | .permission-header-who{ 78 | width: 20%; 79 | max-width: 195px; 80 | } 81 | 82 | .permission-header-where{ 83 | width: 15%; 84 | max-width: 195px; 85 | } 86 | 87 | .permission-header-trust{ 88 | width: 15%; 89 | max-width: 195px; 90 | } 91 | 92 | .permission-header-options{ 93 | width: 35%; 94 | max-width: 195px; 95 | } 96 | 97 | .permission-header-actions{ 98 | width: 20%; 99 | max-width: 195px; 100 | display: none; 101 | } 102 | 103 | .permission-col { 104 | text-align: left; 105 | padding: 0; 106 | } 107 | 108 | .permission-header-button { 109 | position:relative; 110 | padding:5px; 111 | } 112 | 113 | .lineView .user-container .tmp-edit { 114 | display: flex; 115 | } -------------------------------------------------------------------------------- /fontello/README.txt: -------------------------------------------------------------------------------- 1 | This webfont is generated by http://fontello.com open source project. 2 | 3 | 4 | ================================================================================ 5 | Please, note, that you should obey original font licenses, used to make this 6 | webfont pack. Details available in LICENSE.txt file. 7 | 8 | - Usually, it's enough to publish content of LICENSE.txt file somewhere on your 9 | site in "About" section. 10 | 11 | - If your project is open-source, usually, it will be ok to make LICENSE.txt 12 | file publicly available in your repository. 13 | 14 | - Fonts, used in Fontello, don't require a clickable link on your site. 15 | But any kind of additional authors crediting is welcome. 16 | ================================================================================ 17 | 18 | 19 | Comments on archive content 20 | --------------------------- 21 | 22 | - /font/* - fonts in different formats 23 | 24 | - /css/* - different kinds of css, for all situations. Should be ok with 25 | twitter bootstrap. Also, you can skip style and assign icon classes 26 | directly to text elements, if you don't mind about IE7. 27 | 28 | - demo.html - demo file, to show your webfont content 29 | 30 | - LICENSE.txt - license info about source fonts, used to build your one. 31 | 32 | - config.json - keeps your settings. You can import it back into fontello 33 | anytime, to continue your work 34 | 35 | 36 | Why so many CSS files ? 37 | ----------------------- 38 | 39 | Because we like to fit all your needs :) 40 | 41 | - basic file, .css - is usually enough, it contains @font-face 42 | and character code definitions 43 | 44 | - *-ie7.css - if you need IE7 support, but still don't wish to put char codes 45 | directly into html 46 | 47 | - *-codes.css and *-ie7-codes.css - if you like to use your own @font-face 48 | rules, but still wish to benefit from css generation. That can be very 49 | convenient for automated asset build systems. When you need to update font - 50 | no need to manually edit files, just override old version with archive 51 | content. See fontello source code for examples. 52 | 53 | - *-embedded.css - basic css file, but with embedded WOFF font, to avoid 54 | CORS issues in Firefox and IE9+, when fonts are hosted on the separate domain. 55 | We strongly recommend to resolve this issue by `Access-Control-Allow-Origin` 56 | server headers. But if you ok with dirty hack - this file is for you. Note, 57 | that data url moved to separate @font-face to avoid problems with add('permissions', l10n('Upload Permissions'), COMMUNITY_BASE_URL.'-permissions'); 54 | $tabsheet->add('pendings', l10n('Pending Photos').($page['community_nb_pendings'] > 0 ? ' ('.$page['community_nb_pendings'].')' : ''), COMMUNITY_BASE_URL.'-pendings'); 55 | $tabsheet->add('config', l10n('Configuration'), COMMUNITY_BASE_URL.'-config'); 56 | $tabsheet->select($page['tab']); 57 | $tabsheet->assign(); 58 | 59 | $template->assign( 60 | array( 61 | 'ADMIN_PAGE_TITLE' => 'Community', 62 | ) 63 | ); 64 | 65 | include(COMMUNITY_PATH.'admin_'.$page['tab'].'.php'); 66 | } 67 | ?> -------------------------------------------------------------------------------- /language/sh_RS/plugin.lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/th_TH/plugin.lang.php: -------------------------------------------------------------------------------- 1 | div { 97 | color:#555; 98 | font-weight: bold; 99 | } 100 | 101 | .selectize-control.plugin-remove_button [data-value] .remove { 102 | border-left-color: #555; 103 | } -------------------------------------------------------------------------------- /language/zh_HK/plugin.lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/ja_JP/plugin.lang.php: -------------------------------------------------------------------------------- 1 | !empty($_POST['user_albums']), 51 | 'user_albums_parent' => $_POST['user_albums_parent'], 52 | ); 53 | 54 | conf_update_param('community', serialize($conf['community'])); 55 | 56 | array_push($page['infos'], l10n('Information data registered in database')); 57 | } 58 | 59 | // +-----------------------------------------------------------------------+ 60 | // | template init | 61 | // +-----------------------------------------------------------------------+ 62 | 63 | $template->set_filename('plugin_admin_content', dirname(__FILE__).'/template/admin_config.tpl'); 64 | 65 | // +-----------------------------------------------------------------------+ 66 | // | form options | 67 | // +-----------------------------------------------------------------------+ 68 | 69 | $template->assign('user_albums', $conf['community']['user_albums']); 70 | 71 | if (isset($conf['community']['user_albums_parent'])) 72 | { 73 | $category_options_selected = $conf['community']['user_albums_parent']; 74 | } 75 | else 76 | { 77 | // is there a "Community" album? 78 | $query = ' 79 | SELECT 80 | id 81 | FROM '.CATEGORIES_TABLE.' 82 | WHERE name = \'Community\' 83 | ;'; 84 | $result = pwg_query($query); 85 | while ($row = pwg_db_fetch_assoc($result)) 86 | { 87 | $category_options_selected = $row['id']; 88 | break; 89 | } 90 | } 91 | 92 | // list of albums 93 | $query = ' 94 | SELECT id,name,uppercats,global_rank 95 | FROM '.CATEGORIES_TABLE.' 96 | ;'; 97 | 98 | display_select_cat_wrapper( 99 | $query, 100 | isset($category_options_selected) ? $category_options_selected : array(), 101 | 'category_options' 102 | ); 103 | 104 | // image level options 105 | $selected_level = isset($_POST['level']) ? $_POST['level'] : 0; 106 | $template->assign( 107 | array( 108 | 'level_options'=> get_privacy_level_options(), 109 | 'level_options_selected' => array($selected_level) 110 | ) 111 | ); 112 | 113 | 114 | // +-----------------------------------------------------------------------+ 115 | // | sending html code | 116 | // +-----------------------------------------------------------------------+ 117 | 118 | $template->assign_var_from_handle('ADMIN_CONTENT', 'plugin_admin_content'); 119 | ?> -------------------------------------------------------------------------------- /language/ar_SA/plugin.lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/es_MX/plugin.lang.php: -------------------------------------------------------------------------------- 1 | 84 | -------------------------------------------------------------------------------- /language/zh_CN/plugin.lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/zh_TW/plugin.lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/lv_LV/plugin.lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/nn_NO/plugin.lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/sl_SI/plugin.lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/eu_ES/plugin.lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/vi_VN/plugin.lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fontello/css/fontello-codes.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | 4 | .icon-star:before { content: '\2605'; } /* '★' */ 5 | .icon-star-empty:before { content: '\2606'; } /* '☆' */ 6 | .icon-cog:before { content: '\2699'; } /* '⚙' */ 7 | .icon-cog-alt:before { content: '\26ef'; } /* '⛯' */ 8 | .icon-mail:before { content: '\2709'; } /* '✉' */ 9 | .icon-pencil:before { content: '\270e'; } /* '✎' */ 10 | .icon-plus-circled:before { content: '\2795'; } /* '➕' */ 11 | .icon-asl:before { content: '\e0ad'; } /* '' */ 12 | .icon-eye:before { content: '\e70a'; } /* '' */ 13 | .icon-tags:before { content: '\e70d'; } /* '' */ 14 | .icon-chat:before { content: '\e720'; } /* '' */ 15 | .icon-trash:before { content: '\e729'; } /* '' */ 16 | .icon-basket:before { content: '\e73d'; } /* '' */ 17 | .icon-puzzle:before { content: '\e7b6'; } /* '' */ 18 | .icon-language:before { content: '\e800'; } /* '' */ 19 | .icon-signal:before { content: '\e801'; } /* '' */ 20 | .icon-users:before { content: '\e802'; } /* '' */ 21 | .icon-tools:before { content: '\e803'; } /* '' */ 22 | .icon-arrows-cw:before { content: '\e804'; } /* '' */ 23 | .icon-exchange:before { content: '\e805'; } /* '' */ 24 | .icon-folder-open:before { content: '\e806'; } /* '' */ 25 | .icon-brush:before { content: '\e807'; } /* '' */ 26 | .icon-flow-branch:before { content: '\e808'; } /* '' */ 27 | .icon-menu:before { content: '\e809'; } /* '' */ 28 | .icon-code:before { content: '\e80a'; } /* '' */ 29 | .icon-user-add:before { content: '\e80b'; } /* '' */ 30 | .icon-cw:before { content: '\e80c'; } /* '' */ 31 | .icon-group:before { content: '\e80d'; } /* '' */ 32 | .icon-home:before { content: '\e80e'; } /* '' */ 33 | .icon-equalizer:before { content: '\e80f'; } /* '' */ 34 | .icon-mail-1:before { content: '\e810'; } /* '' */ 35 | .icon-search:before { content: '\e811'; } /* '' */ 36 | .icon-move:before { content: '\e812'; } /* '' */ 37 | .icon-upload:before { content: '\e813'; } /* '' */ 38 | .icon-upload-cloud:before { content: '\e814'; } /* '' */ 39 | .icon-key:before { content: '\e815'; } /* '' */ 40 | .icon-network:before { content: '\e816'; } /* '' */ 41 | .icon-info-circled-1:before { content: '\e817'; } /* '' */ 42 | .icon-calendar:before { content: '\e818'; } /* '' */ 43 | .icon-ok:before { content: '\e819'; } /* '' */ 44 | .icon-help-circled:before { content: '\e81a'; } /* '' */ 45 | .icon-logout:before { content: '\e81b'; } /* '' */ 46 | .icon-flag:before { content: '\e81c'; } /* '' */ 47 | .icon-spin6:before { content: '\e81d'; } /* '' */ 48 | .icon-hourglass:before { content: '\e81e'; } /* '' */ 49 | .icon-check:before { content: '\e81f'; } /* '' */ 50 | .icon-check-empty:before { content: '\e820'; } /* '' */ 51 | .icon-cancel-circled:before { content: '\e821'; } /* '' */ 52 | .icon-cancel:before { content: '\e822'; } /* '' */ 53 | .icon-plus:before { content: '\e823'; } /* '' */ 54 | .icon-ok-circled:before { content: '\e824'; } /* '' */ 55 | .icon-heart-broken:before { content: '\e825'; } /* '' */ 56 | .icon-download:before { content: '\e826'; } /* '' */ 57 | .icon-zoom-in:before { content: '\e827'; } /* '' */ 58 | .icon-zoom-out:before { content: '\e828'; } /* '' */ 59 | .icon-attention:before { content: '\e829'; } /* '' */ 60 | .icon-back-in-time:before { content: '\e82a'; } /* '' */ 61 | .icon-ccw:before { content: '\e82b'; } /* '' */ 62 | .icon-eye-off:before { content: '\e82c'; } /* '' */ 63 | .icon-user:before { content: '\e82d'; } /* '' */ 64 | .icon-moon-inv:before { content: '\e82e'; } /* '' */ 65 | .icon-sun-inv:before { content: '\e82f'; } /* '' */ 66 | .icon-book:before { content: '\e830'; } /* '' */ 67 | .icon-chart-bar:before { content: '\e831'; } /* '' */ 68 | .icon-floppy:before { content: '\e832'; } /* '' */ 69 | .icon-th:before { content: '\e833'; } /* '' */ 70 | .icon-th-list:before { content: '\e834'; } /* '' */ 71 | .icon-down-open:before { content: '\e835'; } /* '' */ 72 | .icon-left-open:before { content: '\e836'; } /* '' */ 73 | .icon-arrow-combo:before { content: '\e837'; } /* '' */ 74 | .icon-th-1:before { content: '\e838'; } /* '' */ 75 | .icon-flow-tree:before { content: '\e839'; } /* '' */ 76 | .icon-link-1:before { content: '\e83a'; } /* '' */ 77 | .icon-calendar-clock:before { content: '\e83b'; } /* '' */ 78 | .icon-zoom-square:before { content: '\e83c'; } /* '' */ 79 | .icon-trash-1:before { content: '\e83d'; } /* '' */ 80 | .icon-hdd:before { content: '\f0a0'; } /* '' */ 81 | .icon-tasks:before { content: '\f0ae'; } /* '' */ 82 | .icon-filter:before { content: '\f0b0'; } /* '' */ 83 | .icon-mail-alt:before { content: '\f0e0'; } /* '' */ 84 | .icon-sitemap:before { content: '\f0e8'; } /* '' */ 85 | .icon-circle-empty:before { content: '\f10c'; } /* '' */ 86 | .icon-crop:before { content: '\f125'; } /* '' */ 87 | .icon-sort-name-up:before { content: '\f15d'; } /* '' */ 88 | .icon-sort-alt-up:before { content: '\f160'; } /* '' */ 89 | .icon-sort-alt-down:before { content: '\f161'; } /* '' */ 90 | .icon-sort-number-up:before { content: '\f162'; } /* '' */ 91 | .icon-right:before { content: '\f178'; } /* '' */ 92 | .icon-dot-circled:before { content: '\f192'; } /* '' */ 93 | .icon-lifebuoy:before { content: '\f1cd'; } /* '' */ 94 | .icon-television:before { content: '\f26c'; } /* '' */ 95 | .icon-picture:before { content: '🌄'; } /* '\1f304' */ 96 | .icon-shuffle:before { content: '🔀'; } /* '\1f500' */ 97 | .icon-lock:before { content: '🔒'; } /* '\1f512' */ 98 | .icon-link:before { content: '🔗'; } /* '\1f517' */ 99 | .icon-wrench:before { content: '🔧'; } /* '\1f527' */ 100 | .icon-clock:before { content: '🕔'; } /* '\1f554' */ 101 | .icon-block:before { content: '🚫'; } /* '\1f6ab' */ -------------------------------------------------------------------------------- /language/ta_IN/plugin.lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/fr_CA/plugin.lang.php: -------------------------------------------------------------------------------- 1 | last) { 20 | first=pos; 21 | last=last_clicked; 22 | } 23 | 24 | for (var i=first; i<=last;i++) { 25 | input = $(inputs[i]); 26 | $(input).prop('checked', last_clickedstatus).trigger("change"); 27 | if (last_clickedstatus) 28 | { 29 | $(input).closest("li").addClass("thumbSelected"); 30 | } 31 | else 32 | { 33 | $(input).closest("li").removeClass("thumbSelected"); 34 | } 35 | } 36 | } 37 | else { 38 | last_clicked = pos; 39 | last_clickedstatus = this.checked; 40 | } 41 | return true; 42 | }); 43 | $(this).click(function(event) { $(this).triggerHandler("shclick",event)}); 44 | }); 45 | } 46 | $('ul.thumbnails').enableShiftClick(); 47 | }); 48 | 49 | jQuery("a.preview-box").colorbox( {photo: true} ); 50 | 51 | /* 52 | jQuery('.thumbnails img').tipTip({ 53 | 'delay' : 0, 54 | 'fadeIn' : 200, 55 | 'fadeOut' : 200 56 | }); 57 | */ 58 | 59 | /* ********** Actions*/ 60 | 61 | function progress(success) { 62 | jQuery('#progressBar').progressBar(derivatives.done, { 63 | max: derivatives.total, 64 | textFormat: 'fraction', 65 | boxImage: 'themes/default/images/progressbar.gif', 66 | barImage: 'themes/default/images/progressbg_orange.gif' 67 | }); 68 | if (success !== undefined) { 69 | var type = success ? 'regenerateSuccess': 'regenerateError', 70 | s = jQuery('[name="'+type+'"]').val(); 71 | jQuery('[name="'+type+'"]').val(++s); 72 | } 73 | 74 | if (derivatives.finished()) { 75 | jQuery('#applyAction').click(); 76 | } 77 | } 78 | 79 | /* sync metadatas or delete photos by blocks, with progress bar */ 80 | jQuery('#applyAction').click(function(e) { 81 | if (typeof(elements) != "undefined") { 82 | return true; 83 | } 84 | 85 | if (jQuery('[name="selectAction"]').val() == 'delete') { 86 | if (!jQuery("#action_delete input[name=confirm_deletion]").is(':checked')) { 87 | jQuery("#action_delete span.errors").show(); 88 | return false; 89 | } 90 | e.stopPropagation(); 91 | } 92 | else { 93 | return true; 94 | } 95 | 96 | jQuery('.bulkAction').hide(); 97 | jQuery('#regenerationText').html(lang.deleteProgressMessage); 98 | var maxRequests=1; 99 | 100 | var queuedManager = jQuery.manageAjax.create('queued', { 101 | queue: true, 102 | cacheResponse: false, 103 | maxRequests: maxRequests 104 | }); 105 | 106 | elements = Array(); 107 | 108 | if (jQuery('input[name=setSelected]').is(':checked')) { 109 | elements = all_elements; 110 | } 111 | else { 112 | jQuery('input[name="selection[]"]').filter(':checked').each(function() { 113 | elements.push(jQuery(this).val()); 114 | }); 115 | } 116 | 117 | progressBar_max = elements.length; 118 | var todo = 0; 119 | var deleteBlockSize = Math.min( 120 | Number((elements.length/2).toFixed()), 121 | 1000 122 | ); 123 | var image_ids = Array(); 124 | 125 | jQuery('#applyActionBlock').hide(); 126 | jQuery('select[name="selectAction"]').hide(); 127 | jQuery('#regenerationMsg').show(); 128 | jQuery('#progressBar').progressBar(0, { 129 | max: progressBar_max, 130 | textFormat: 'fraction', 131 | boxImage: 'themes/default/images/progressbar.gif', 132 | barImage: 'themes/default/images/progressbg_orange.gif' 133 | }); 134 | 135 | for (i=0;i'); 173 | 174 | return false; 175 | }); 176 | 177 | function progressionBar(val, max, success) { 178 | jQuery('#progressBar').progressBar(val, { 179 | max: max, 180 | textFormat: 'fraction', 181 | boxImage: 'themes/default/images/progressbar.gif', 182 | barImage: 'themes/default/images/progressbg_orange.gif' 183 | }); 184 | 185 | if (val == max) { 186 | jQuery('#applyAction').click(); 187 | } 188 | } 189 | 190 | jQuery("#action_delete input[name=confirm_deletion]").change(function() { 191 | jQuery("#action_delete span.errors").hide(); 192 | }); 193 | -------------------------------------------------------------------------------- /language/sv_SE/plugin.lang.php: -------------------------------------------------------------------------------- 1 | 104 | -------------------------------------------------------------------------------- /language/cs_CZ/plugin.lang.php: -------------------------------------------------------------------------------- 1 |