├── LICENSE ├── README.md ├── app ├── controllers │ └── timesheets_controller.rb ├── helpers │ └── timesheets_helper.rb ├── models │ ├── timesheet.rb │ └── timesheet_query.rb └── views │ └── timesheets │ ├── _form.html.erb │ ├── _list.html.erb │ └── show.html.erb ├── config ├── locales │ ├── ca.yml │ ├── cs.yml │ ├── da.yml │ ├── de.yml │ ├── en.yml │ ├── es.yml │ ├── fr.yml │ ├── hu.yml │ ├── hy.yml │ ├── it.yml │ ├── ja.yml │ ├── lt.yml │ ├── pl.yml │ ├── pt-br.yml │ ├── ru.yml │ ├── sr.yml │ ├── sv.yml │ ├── uk.yml │ └── zh.yml └── routes.rb ├── init.rb ├── lib └── timesheet_plugin │ └── permission_helper.rb └── test ├── functional └── timesheets_controller_test.rb └── test_helper.rb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/README.md -------------------------------------------------------------------------------- /app/controllers/timesheets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/app/controllers/timesheets_controller.rb -------------------------------------------------------------------------------- /app/helpers/timesheets_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/app/helpers/timesheets_helper.rb -------------------------------------------------------------------------------- /app/models/timesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/app/models/timesheet.rb -------------------------------------------------------------------------------- /app/models/timesheet_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/app/models/timesheet_query.rb -------------------------------------------------------------------------------- /app/views/timesheets/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/app/views/timesheets/_form.html.erb -------------------------------------------------------------------------------- /app/views/timesheets/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/app/views/timesheets/_list.html.erb -------------------------------------------------------------------------------- /app/views/timesheets/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/app/views/timesheets/show.html.erb -------------------------------------------------------------------------------- /config/locales/ca.yml: -------------------------------------------------------------------------------- 1 | ca: 2 | timesheet_title: Full de temps 3 | -------------------------------------------------------------------------------- /config/locales/cs.yml: -------------------------------------------------------------------------------- 1 | cs: 2 | timesheet_title: Souhrnná tabulka stráveného času 3 | -------------------------------------------------------------------------------- /config/locales/da.yml: -------------------------------------------------------------------------------- 1 | da: 2 | timesheet_title: Timeseddel 3 | -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- 1 | es: 2 | timesheet_title: Hoja de tiempos 3 | -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- 1 | fr: 2 | timesheet_title: Feuille de temps 3 | -------------------------------------------------------------------------------- /config/locales/hu.yml: -------------------------------------------------------------------------------- 1 | hu: 2 | timesheet_title: Időlap 3 | -------------------------------------------------------------------------------- /config/locales/hy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/config/locales/hy.yml -------------------------------------------------------------------------------- /config/locales/it.yml: -------------------------------------------------------------------------------- 1 | it: 2 | timesheet_title: Consuntivo tempi 3 | -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- 1 | ja: 2 | timesheet_title: 記録時間表 3 | -------------------------------------------------------------------------------- /config/locales/lt.yml: -------------------------------------------------------------------------------- 1 | lt: 2 | timesheet_title: Sunaudoto laiko suvestinė lentelė 3 | -------------------------------------------------------------------------------- /config/locales/pl.yml: -------------------------------------------------------------------------------- 1 | pl: 2 | timesheet_title: Czas Pracy 3 | -------------------------------------------------------------------------------- /config/locales/pt-br.yml: -------------------------------------------------------------------------------- 1 | pt-BR: 2 | timesheet_title: Relatório de Apontamentos 3 | -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/locales/sr.yml: -------------------------------------------------------------------------------- 1 | "sr": 2 | timesheet_title: Satnica 3 | -------------------------------------------------------------------------------- /config/locales/sv.yml: -------------------------------------------------------------------------------- 1 | sv: 2 | timesheet_title: Tidkort 3 | -------------------------------------------------------------------------------- /config/locales/uk.yml: -------------------------------------------------------------------------------- 1 | uk: 2 | timesheet_title: Таблиця витрат часу 3 | -------------------------------------------------------------------------------- /config/locales/zh.yml: -------------------------------------------------------------------------------- 1 | zh: 2 | timesheet_title: "工时表" 3 | description_visible_columns: "可见列" 4 | -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/config/routes.rb -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/init.rb -------------------------------------------------------------------------------- /lib/timesheet_plugin/permission_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/lib/timesheet_plugin/permission_helper.rb -------------------------------------------------------------------------------- /test/functional/timesheets_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/test/functional/timesheets_controller_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contargo/redmine-timesheet-plugin/HEAD/test/test_helper.rb --------------------------------------------------------------------------------