Skip to content
Snippets Groups Projects
  1. May 31, 2017
    • spla's avatar
      Catalan language updates (#3454) · 93de41b3
      spla authored
      * Add Catalan language
      
      * Add Catalan language
      
      * Update ca.json
      
      * Update ca.json
      
      * Update ca.json
      
      * Update ca.json
      
      * Update ca.json
      
      * Update ca.json
      
      * Update settings_helper.rb
      
      * Update mastodon.js
      
      * Update index.js
      
      * Update application.rb
      
      * Update ca.yml
      
      * removed extra spaces at line 225
      
      * Catalan translation update
      
      added activerecord.ca.yml
      
      * Update activerecord.ca.yml
      
      Done
      
      * Updated activerecord.ca.yml
      
      * Catalan language updated
      
      * Catalan language updated
      
      * Catalan language updated
      
      * Catalan language updated
      
      * Catalan language updated
      93de41b3
  2. May 30, 2017
    • Naouak's avatar
      Fix webpack building on Windows (#3426) · 499cc7b8
      Naouak authored
      * Path should not be constructed manually. Use path.join to ensure compatibility.
      
      * Path should not be constructed manually. Use path.join to ensure compatibility.
      
      * Fix regexp.
      
      * Fix my own stupidity.
      I forgot to check outside my test script the regexp...
      499cc7b8
  3. May 29, 2017
    • Daniel Hunsaker's avatar
      [nanobox] Adjustments for Nanobox development (#3295) · 9ead3d1c
      Daniel Hunsaker authored
      Because Nanobox doesn't run data components in the same container as the code, there are a few tweaks that need to be made in the configuration to get WebPack to work properly in development mode.
      
      The same differences lead to needing to use `DATABASE_URL` by default in the `.env` file for Rails to work correctly.
      
      Limitations of our `.env` loader for Node.js mean the `.env` file needs to be compiled everywhere in order to work, so we compile it in development, now, too. Also, all the `.env.production` tweaks have been consolidated into a single command.
      
      Finally, since Nanobox actually creates the database when it sets up the database server, using the existence of the database alone to determine whether to migrate or setup is insufficient. So we add a condition to `rake db:migrate:setup` to check whether any migrations have run - if the database doesn't exist yet, `db:setup` will be called; if it does, but no migrations have been run, `db:migrate` and `db:seed` are called instead (the same basic idea as what `db:setup` does, but it skips `db:create`, which will only cause problems with an existing DB); otherwise, only `db:migrate` is called.
      
      None of these changes should affect development, and all are designed not to interfere with existing behaviors in other environments.
      9ead3d1c
    • Atsushi Yamamoto's avatar
      Add preference setting for delete toot modal (#3368) · 402c19a9
      Atsushi Yamamoto authored
      * Set delete_modal preference to true by default
      * Does not show confirmation modal if delete_modal is false
      * Add ja translation for preference setting page
      402c19a9
  4. May 28, 2017
  5. May 27, 2017
    • Eugen Rochko's avatar
      Fix #2922 - Load stylesheet from "custom.css" entrypoint when present (#3332) · 62ca3788
      Eugen Rochko authored
      * Fix #2922 - Load stylesheet from "custom.css" entrypoint when present
      
      This is pretty much the same way it worked as before, albeit with
      having to create app/javascript/packs/custom.js with
      require('../styles/custom.scss') (or whatever you want really), which
      will be a blank slate for you to import whatever you want
      
      * Remove old assets directory
      
      * Extract font-awesome into common.css and always load it
      62ca3788
    • jeroenpraat's avatar
      Update Dutch strings for 1.4 (#3363) · f9180823
      jeroenpraat authored
      * Update nl strings for 1.4
      
      * Update nl strings for 1.4
      
      * Update nl strings for 1.4
      
      * nl strings (+1)
      
      More new OTP strings will be translated another time
      f9180823
    • Quent-in's avatar
      i18n update for Occitan language (#3362) · 4b0c667c
      Quent-in authored
      * Update simple_form.oc.yml
      
      * Added check spam folder
      
      * Update oc.json
      
      abonats => seguidors
      
      * Update oc.yml
      
      * Update oc.json
      
      Added translations + corrections
      
      * Update confirmation_instructions.oc.html.erb
      
      * Update confirmation_instructions.oc.text.erb
      
      * i18n mailer
      
      * Update reset_password_instructions.oc.html.erb
      4b0c667c
    • m4sk1n's avatar
      i18n: pl: pluralized (#3344) · 1b732cad
      m4sk1n authored
      
      Signed-off-by: default avatarMarcin Mikołajczak <me@m4sk.in>
      1b732cad
  6. May 26, 2017
  7. May 25, 2017
  8. May 23, 2017
  9. May 22, 2017
  10. May 21, 2017
  11. May 20, 2017
  12. May 19, 2017
  13. May 18, 2017
    • Eugen Rochko's avatar
      Account domain blocks (#2381) · 620d0d80
      Eugen Rochko authored
      * Add <ostatus:conversation /> tag to Atom input/output
      
      Only uses ref attribute (not href) because href would be
      the alternate link that's always included also.
      
      Creates new conversation for every non-reply status. Carries
      over conversation for every reply. Keeps remote URIs verbatim,
      generates local URIs on the fly like the rest of them.
      
      * Conversation muting - prevents notifications that reference a conversation
      (including replies, favourites, reblogs) from being created. API endpoints
      /api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute
      
      Currently no way to tell when a status/conversation is muted, so the web UI
      only has a "disable notifications" button, doesn't work as a toggle
      
      * Display "Dismiss notifications" on all statuses in notifications column, not just own
      
      * Add "muted" as a boolean attribute on statuses JSON
      
      For now always false on contained reblogs, since it's only relevant for
      statuses returned from the notifications endpoint, which are not nested
      
      Remove "Disable notifications" from detailed status view, since it's
      only relevant in the notifications column
      
      * Up max class length
      
      * Remove pending test for conversation mute
      
      * Add tests, clean up
      
      * Rename to "mute conversation" and "unmute conversation"
      
      * Raise validation error when trying to mute/unmute status without conversation
      
      * Adding account domain blocks that filter notifications and public timelines
      
      * Add tests for domain blocks in notifications, public timelines
      Filter reblogs of blocked domains from home
      
      * Add API for listing and creating account domain blocks
      
      * API for creating/deleting domain blocks, tests for Status#ancestors
      and Status#descendants, filter domain blocks from them
      
      * Filter domains in streaming API
      
      * Update account_domain_block_spec.rb
      620d0d80
    • Ira's avatar
      i18l: Hebrew translation updates (#3109) · b11c4326
      Ira authored
      b11c4326
Loading