├── .gitignore ├── CHANGES.md ├── LICENSE.txt ├── README.md ├── VERSION ├── app └── views │ └── issues │ └── _close_button.html.erb ├── assets ├── images │ └── close.png ├── javascripts │ └── redmine_close_button.js └── stylesheets │ └── redmine_close_button.css ├── close_button_1.PNG ├── close_button_2.PNG ├── config └── locales │ ├── bg.yml │ ├── cs.yml │ ├── de.yml │ ├── en-GB.yml │ ├── en.yml │ ├── es.yml │ ├── fr.yml │ ├── it.yml │ ├── ko.yml │ ├── pl.yml │ ├── pt.yml │ ├── ru.yml │ ├── sv.yml │ ├── zh-TW.yml │ └── zh.yml ├── init.rb ├── lib └── redmine_close_button │ └── hooks.rb └── test └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.8 -------------------------------------------------------------------------------- /app/views/issues/_close_button.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/app/views/issues/_close_button.html.erb -------------------------------------------------------------------------------- /assets/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/assets/images/close.png -------------------------------------------------------------------------------- /assets/javascripts/redmine_close_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/assets/javascripts/redmine_close_button.js -------------------------------------------------------------------------------- /assets/stylesheets/redmine_close_button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/assets/stylesheets/redmine_close_button.css -------------------------------------------------------------------------------- /close_button_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/close_button_1.PNG -------------------------------------------------------------------------------- /close_button_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/close_button_2.PNG -------------------------------------------------------------------------------- /config/locales/bg.yml: -------------------------------------------------------------------------------- 1 | # Bulgarian strings go here 2 | bg: 3 | button_close: "Затваряне" 4 | 5 | -------------------------------------------------------------------------------- /config/locales/cs.yml: -------------------------------------------------------------------------------- 1 | # Czech strings go here for Rails i18n 2 | cs: 3 | button_close: "Uzavřít" 4 | 5 | -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- 1 | # German strings are here 2 | de: 3 | button_close: "Schließen" 4 | 5 | -------------------------------------------------------------------------------- /config/locales/en-GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/config/locales/en-GB.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- 1 | # Es strings go here for Rails i18n 2 | es: 3 | button_close: "Cerrar" 4 | 5 | -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- 1 | # French strings go here for Rails i18n 2 | fr: 3 | button_close: "Fermer" 4 | 5 | -------------------------------------------------------------------------------- /config/locales/it.yml: -------------------------------------------------------------------------------- 1 | # Italian strings go here for Rails i18n 2 | it: 3 | button_close: "Chiudi" 4 | 5 | -------------------------------------------------------------------------------- /config/locales/ko.yml: -------------------------------------------------------------------------------- 1 | # Korean strings go here for Rails i18n 2 | ko: 3 | button_close: "닫기" 4 | 5 | -------------------------------------------------------------------------------- /config/locales/pl.yml: -------------------------------------------------------------------------------- 1 | pl: 2 | button_close: "Zamknij" 3 | 4 | -------------------------------------------------------------------------------- /config/locales/pt.yml: -------------------------------------------------------------------------------- 1 | # English strings go here for Rails i18n 2 | pt: 3 | button_close: "Fechar" 4 | 5 | -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- 1 | # Russian strings go here for Rails i18n 2 | ru: 3 | button_close: "Закрыть" 4 | 5 | -------------------------------------------------------------------------------- /config/locales/sv.yml: -------------------------------------------------------------------------------- 1 | # Swedish strings go here 2 | sv: 3 | button_close: "Stäng" 4 | 5 | -------------------------------------------------------------------------------- /config/locales/zh-TW.yml: -------------------------------------------------------------------------------- 1 | # Traditional Chinese strings go here for Rails i18n 2 | zh-TW: 3 | button_close: "結束" 4 | -------------------------------------------------------------------------------- /config/locales/zh.yml: -------------------------------------------------------------------------------- 1 | # Simplified Chinese strings go here for Rails i18n 2 | zh: 3 | button_close: "关闭" 4 | -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/init.rb -------------------------------------------------------------------------------- /lib/redmine_close_button/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/lib/redmine_close_button/hooks.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Undev/redmine_close_button/HEAD/test/test_helper.rb --------------------------------------------------------------------------------