README.md in 4me-sdk-1.1.3 vs README.md in 4me-sdk-1.1.4

- old
+ new

@@ -307,9 +307,17 @@ By default all actions on the 4me SDK Client will block until the 4me API is accessible, see the _max_retry_time_ option in the [configuration](#configuration). This is especially helpfull for flaky internet connections. By setting the _block_at_rate_limit_ to `true` in the [configuration](#configuration) all actions will also block in case the [rate limit](http://developer.4me.com/v1/#rate-limiting) is reached. The action is retried every 5 minutes until the [rate limit](http://developer.4me.com/v1/#rate-limiting) is lifted again, which might take up to 1 hour. +### Translations + +When exporting translations, the _locale_ parameter is required: + +``` + response = Itrp::Client.new.export('translations', nil, false, 'nl') +``` + ### Exception handling The standard methods `get`, `post`, `put` and `delete` will always return a Response with an [error message](http://developer.4me.com/v1/#http-status-codes) in case something went wrong. By calling `response.valid?` you will know if the action succeeded or not, and `response.message` provides additinal information in case the response was invalid.