Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add localization to Brazilian Portuguese #6

Open
wants to merge 54 commits into
base: master
Choose a base branch
from

Commits on Dec 30, 2012

  1. Move files to root directory

    This makes sure the plugin plays nice with other plugins
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Dec 30, 2012
    Configuration menu
    Copy the full SHA
    9bbd549 View commit details
    Browse the repository at this point in the history
  2. Remove unneeded or duplicate files

    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Dec 30, 2012
    Configuration menu
    Copy the full SHA
    4609562 View commit details
    Browse the repository at this point in the history
  3. Use the plugin name for controllers, views, helpers, etc.

    Rename everything to 'meeting_room_calendar_xxx' or 'MeetingRoomCalendarXxx'
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Dec 30, 2012
    Configuration menu
    Copy the full SHA
    cdf7754 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2012

  1. Update to Redmine >= 2.0 and add localization

    This updates the views to Rails >= 3 and adds
    localizations for all texts/dates in English
    and German.
    
    Additionally this removes unneeded fields in
    the 'create new' and 'update' meeting formular.
    
    Fixed:
    Loading more than 50 meetings.
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Dec 31, 2012
    Configuration menu
    Copy the full SHA
    5fcd41a View commit details
    Browse the repository at this point in the history
  2. Add plugin settings instead of hardcoding IDs

    This adds plugin settings for
     - Project ID
     - Tracker ID
     - CustomFields IDs
     - Show project menu (yes/no)
    
    These can be changed in admin -> plugins ->
    redmine_meeting_room configuration.
    
    If nothing is configured a warning is displayed
    instead of a 'Internal error 500' message.
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Dec 31, 2012
    Configuration menu
    Copy the full SHA
    9681a4b View commit details
    Browse the repository at this point in the history
  3. Update README and bump version to 2.0.0

    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Dec 31, 2012
    Configuration menu
    Copy the full SHA
    3c1bc29 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2013

  1. Fix screenshot URL in README

    dro123 committed Jan 1, 2013
    Configuration menu
    Copy the full SHA
    365ad19 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2013

  1. Configuration menu
    Copy the full SHA
    2d49901 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2013

  1. Add localization for Simplified Chinese

    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    archonwang authored and dro123 committed Jan 5, 2013
    Configuration menu
    Copy the full SHA
    6e38dbf View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2013

  1. Use API key for AJAX request for non-public projects

    This requires that REST webservice authentication is
    enabled:
      Administration -> Settings -> Authentication
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Jan 8, 2013
    Configuration menu
    Copy the full SHA
    86f1d9b View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2013

  1. Use configured custom field ID for issue queries

    Fixes an error that occurs if the custom field ID
    of the room is not 5.
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Jan 16, 2013
    Configuration menu
    Copy the full SHA
    64dca91 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2013

  1. Update README for cases where authentication is needed

    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Jan 17, 2013
    Configuration menu
    Copy the full SHA
    d852780 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2014

  1. Allow project managers to change all meetings

    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Apr 19, 2014
    Configuration menu
    Copy the full SHA
    3ca9c8f View commit details
    Browse the repository at this point in the history
  2. Don't send notification mails on create/update

    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Apr 19, 2014
    Configuration menu
    Copy the full SHA
    a38ceb3 View commit details
    Browse the repository at this point in the history
  3. Add an option to select categories for meetings

    There's a new option in the plugin settings which enables the
    category selection list for meetings. This also enables different
    css styles for entries with different categories.
    
    To define which category should be displayed you have to edit
    assets/stylesheets/meeting_calendar.css
    and add a entry like
    .fc-agenda .category_<cid> .fc-event-time, .category_<cid> .fc-event-inner, .category_<cid> a
    {
      background-color: #<color>;
    }
    for every category.
    
    <cid> is the category id which can be obtained by editing the
    category. The URL contains the category id.
    (e.g. http://[...]/issue_categories/1/edit means <cid>=1)
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Apr 19, 2014
    Configuration menu
    Copy the full SHA
    7df764e View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2014

  1. Minor cleanups

    - Replace double with single quotes
    - Remove unneeded parenthesis
    - Replace 'if !x' with 'unless x'
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Apr 20, 2014
    Configuration menu
    Copy the full SHA
    6f06248 View commit details
    Browse the repository at this point in the history
  2. Add an option to support multiple projects

    In the plugins settings there's now a possibility to select multiple projects.
    Additionally there are two new options to hide the project selection list and
    the room selection list from the meeting_room calendar page.
    
    What's not perfect here is that the rooms are the same for all projects.
    
    There's also a new route added to routes.rb so that
    http://[...]/meeting_room_calendar/<project_id>
    links directly to the project with id <project_id>.
    E.g. http://[..]/meeting_room_calendar/2 will directly fill the calendar
    with issues from project '2'.
    dro123 committed Apr 20, 2014
    Configuration menu
    Copy the full SHA
    1c52da1 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2014

  1. Add a default issue status to plugin settings

    The issue status for new meetings can now be set in the plugin configuration.
    If you for example have some reminder for open issues, you could set the default
    issue status to closed so that they will not produce mails for past meetings
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Apr 23, 2014
    Configuration menu
    Copy the full SHA
    01f0440 View commit details
    Browse the repository at this point in the history
  2. URL encode meeting room and date filter in AJAX requests

    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Apr 23, 2014
    Configuration menu
    Copy the full SHA
    52fa5a3 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2014

  1. Add an option to allow changing of bookings in the past

    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed May 15, 2014
    Configuration menu
    Copy the full SHA
    d50bcff View commit details
    Browse the repository at this point in the history
  2. Add possibility to edit events directly with the mouse

    This adds two options, one to allow drag and drop
    and a second one to allow resizing of bookings
    with the mouse.
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed May 15, 2014
    Configuration menu
    Copy the full SHA
    01cfa32 View commit details
    Browse the repository at this point in the history
  3. Limit access to projects based on the user rights and add per project…

    … rooms
    
    The calendar now respects the user roles and permissions and only shows the projects
    the user has access to.
    Be aware, that now each user that wants to create, update and delete bookings has
    to have these rights for the project! (Administration->Roles and permissions).
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed May 15, 2014
    Configuration menu
    Copy the full SHA
    f2c61ef View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2014

  1. Add tracker status CSS class names

    This adds class names to each calendar entry to change the format based on the status
    of the ticket.
    The CSS classes are called tracker_status_<id> where <id> is the id of the current status.
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Nov 11, 2014
    Configuration menu
    Copy the full SHA
    987a36a View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2014

  1. Add turkish localization file

    Thanks to @1dot44mb for this.
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Nov 12, 2014
    Configuration menu
    Copy the full SHA
    162825f View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2015

  1. Add compatibility with rails >= 4

    Rails 4 disallows 'match' in routes.rb without specifying the http method.
    Replace all 'match' with 'get'.
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Apr 22, 2015
    Configuration menu
    Copy the full SHA
    79b2255 View commit details
    Browse the repository at this point in the history
  2. Mark redmine 3.x as supported in the docs

    Tested with redmine 3.0.1, works without problems.
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Apr 22, 2015
    Configuration menu
    Copy the full SHA
    5795b6c View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2015

  1. Fix compatibility with rails >= 4

    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Apr 23, 2015
    Configuration menu
    Copy the full SHA
    126681b View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2015

  1. Create pt-br.yml

    Translated Portuguese Brazil
    aceccarelli committed Jun 15, 2015
    Configuration menu
    Copy the full SHA
    3c4fe45 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #20 from aceccarelli/master

    Create pt-br.yml
    dro123 committed Jun 15, 2015
    Configuration menu
    Copy the full SHA
    46990f4 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2015

  1. New libraries, documentation and new features

    This commit does several things:
    * Update documentation
    * Update FullCalendar, jQuery.qtip and jQuery.alerts libraries
    * Make the plugin work again with the new libraries
    * Rework localization (see documentation)
    * Add an option to allow bookings spanning multiple days
    * Add an option to show the ticket ID and a link to the ticket
    * Disallow adding/editing/deleting while loading
    * JS cleanups
    
    INFO: Due to the new libraries the CSS changed as well!
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Sep 26, 2015
    Configuration menu
    Copy the full SHA
    d1813fb View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2015

  1. Fix db migrate file ending

    During reefactoring the file lost it file ending and the plugin installation
    is not working this way.
    
    Add back .rb file ending to the db migrate script.
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Oct 28, 2015
    Configuration menu
    Copy the full SHA
    9e153e9 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2015

  1. Russian translation

    ddk85 committed Oct 29, 2015
    Configuration menu
    Copy the full SHA
    0ecb33b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #23 from ddk85/master

    Russian translation
    dro123 committed Oct 29, 2015
    Configuration menu
    Copy the full SHA
    bfb1542 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2015

  1. Configuration menu
    Copy the full SHA
    43740cc View commit details
    Browse the repository at this point in the history
  2. Fix Russian translation

    ddk85 committed Oct 30, 2015
    Configuration menu
    Copy the full SHA
    dc68887 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2015

  1. Merge pull request #24 from ddk85/master

    Added author_url for easy search code from Redmine
    dro123 committed Oct 31, 2015
    Configuration menu
    Copy the full SHA
    6df90f8 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2015

  1. Add an option to show weekends

    This adds an plugin settiing to show weekends
    and allow bookings on weekends.
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Nov 27, 2015
    Configuration menu
    Copy the full SHA
    95e5c1a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f117379 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2015

  1. Respect redmines 'first day of week' setting

    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Dec 1, 2015
    Configuration menu
    Copy the full SHA
    73e0d3d View commit details
    Browse the repository at this point in the history
  2. Allow overlap

    kostyfisik committed Dec 1, 2015
    Configuration menu
    Copy the full SHA
    15a5e6e View commit details
    Browse the repository at this point in the history
  3. update default value

    kostyfisik committed Dec 1, 2015
    Configuration menu
    Copy the full SHA
    95abe93 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2015

  1. update default value

    kostyfisik committed Dec 2, 2015
    Configuration menu
    Copy the full SHA
    9e8fbe6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #31 from kostyfisik/master

    Allow overlap option
    dro123 committed Dec 2, 2015
    Configuration menu
    Copy the full SHA
    0860ed9 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2016

  1. Update to fullcalendar 2.9.1 and fix 'all' rooms query for redmine v<3.0

    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Oct 4, 2016
    Configuration menu
    Copy the full SHA
    04649f3 View commit details
    Browse the repository at this point in the history
  2. Respect redmine date and time format settings

    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Oct 4, 2016
    Configuration menu
    Copy the full SHA
    cf57070 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2018

  1. Add Italian translation

    Provided by @dellui in issue #45.
    Thanks.
    
    Signed-off-by: Tobias Droste <tdroste@gmx.de>
    dro123 committed Jan 21, 2018
    Configuration menu
    Copy the full SHA
    fc7a435 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2018

  1. Updated the incorrect language identifier

    Some of the labels were coming up in Italian by default. The fix should revert it back to English
    shash66 committed Mar 27, 2018
    Configuration menu
    Copy the full SHA
    8d8f996 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2018

  1. Merge pull request #47 from shash66/patch-1

    Updated the incorrect language identifier
    dro123 committed Mar 28, 2018
    Configuration menu
    Copy the full SHA
    2af056c View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2020

  1. Configuration menu
    Copy the full SHA
    ab54e52 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2020

  1. Merge pull request #51 from x-redmine/release/4.1.x

    rails 5.1+ & redmine 4.1 compatibility
    dro123 committed Apr 9, 2020
    Configuration menu
    Copy the full SHA
    e663093 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2020

  1. Update 001_add_meeting_rooms_to_projects.rb

    compatibility redmine 4.1. Migration works
    aescariom committed May 22, 2020
    Configuration menu
    Copy the full SHA
    0b1b9c5 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2020

  1. Merge pull request #52 from aescariom/master

    Migrations [4.2]
    dro123 committed May 23, 2020
    Configuration menu
    Copy the full SHA
    c639ccf View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2020

  1. add Japanese language

    guskma committed Jun 24, 2020
    Configuration menu
    Copy the full SHA
    4c4c822 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2020

  1. Merge pull request #55 from guskma/lang-ja

    add Japanese language
    dro123 committed Jun 27, 2020
    Configuration menu
    Copy the full SHA
    d7556d0 View commit details
    Browse the repository at this point in the history