Skip to content

Commit

Permalink
Proofreading - fix various typos and improve grammar
Browse files Browse the repository at this point in the history
This updates the changelog and translation doc file as well as fixing several function docstrings/examples.
  • Loading branch information
ethancrawford committed Oct 18, 2016
1 parent 4a5cfbe commit f22d275
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 35 deletions.
32 changes: 16 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ Jeremy for all of his contributions - in particular for turning the
Windows release from a possibility into a reality. Luckily Luis has
kindly stepped in to maintain the Windows installer.

The main visible feature is the new new scope visualisers. The overall
The main visible feature is the new scope visualisers. The overall
audio output can now be visually monitored by one of three wave form
visualisers. Firstly there is the indivdiual left and right channels,
visualisers. Firstly there is the individual left and right channels,
next is a single mono scope which is mixed down from the stereo channels
using RMS and finally there is a Lissajous scope which displays phase
differences between the left and right channels. Typically the mono
Expand All @@ -50,20 +50,20 @@ other audio source.

Another exciting new feature is the sample opt `onset:` - which lets you
play a specific percussive part of a sample. This uses an automatic
onset detection algorithm to determine all the the points in the sample
onset detection algorithm to determine all the points in the sample
that go from quiet to loud quickly. For example, this allows you to take
a complex drum sample and to trigger each of the individual drums in
a complex drum sample and trigger each of the individual drums in
your own order and to your own timing.

Finally, translations are now crowd-sourced and small or large
contributions for any language can be made here:
`https://hosted.weblate.org/projects/sonic-pi/`If your language isn't
`https://hosted.weblate.org/projects/sonic-pi/`. If your language isn't
yet available or you would like to improve things, please join in the
effort. Thanks to Hanno Zulla for making this possible.


### Breaking Changes

* `sample` now supports the opt `path:` which enables the sample's path
to be overridden.
* `use_sample_pack` is now deprecated and no longer available. Consider
Expand All @@ -83,7 +83,7 @@ effort. Thanks to Hanno Zulla for making this possible.
all declared rands are consumed. This change might therefore
potentially modify your random stream consumption. Consider using
`rand_back` or `rand_skip` to re-align the stream if necessary.
* New threads now start with a fresh set tick counters and a new random
* New threads now start with a fresh set of tick counters and a new random
stream


Expand All @@ -92,7 +92,7 @@ effort. Thanks to Hanno Zulla for making this possible.
* `reset` - resets the user's thread locals (such as ticks and rand
stream index) to the snapshot of the state as recorded at the start of
the current thread.
* `clear` - clears all user's thread locals to a blank state.
* `clear` - clears all the user's thread locals to a blank state.
* `time_warp`- allows whole blocks of code to be shifted forward or
backwards in time up to the value of `current_sched_ahead_time`.
* `rand_look` - generate a random number without consuming a rand by
Expand All @@ -119,9 +119,9 @@ effort. Thanks to Hanno Zulla for making this possible.
supersaw.
* New synth `:sound_in` - reads audio from the sound card.
* New synth `:sound_in_stereo` - reads audio from the sound card.
* All FX now all have a `pre_mix:` opt. This allows the audio flow to
* All FX now have a `pre_mix:` opt. This allows the audio flow to
completely bypass a given FX (unlike `mix:` which passes the audio
through the FX but modifies the amplitude afterwards.
through the FX but modifies the amplitude afterwards).
* Teach `control` to manipulate the last triggered synth by default. For
example, `control amp: 3` will set the `amp:` opt of the last
triggered synth to 3. However, `control foo, amp: 3` will still
Expand All @@ -130,13 +130,13 @@ effort. Thanks to Hanno Zulla for making this possible.

### Samples

* New opt `slice:` - let's you play a specific slice of a sample. The
* New opt `slice:` - lets you play a specific slice of a sample. The
default number of slices is 16 which may be changed with the
`num_slices:` opt. Sample is divided equally into the number of slices
without regard for audio content and onset points. The `slice:` opt
also works with `pick` for triggering random sample slices: `sample
:loop_amen, slice: pick`.
* New opt `onset:` - let's you play a specific percussive part of a
* New opt `onset:` - lets you play a specific percussive part of a
sample. Uses automatic onset detection to determine the points in the
sample that go from quiet to loud quickly. Unlike `slice:`, `onset:`
does not necessarily divide a sample into equal onsets - some onsets
Expand All @@ -156,15 +156,15 @@ effort. Thanks to Hanno Zulla for making this possible.
now have a button for toggling the visibility of the scope(s).
* Loading multiple samples simultaneously is now much faster.
* Preferences have been slightly re-organised.
* Preferences now has a Master volume slider which control's Sonic Pi's
* Preferences now has a Master volume slider which controls Sonic Pi's
audio amplitude independently from the system volume.
* All buttons now display status message + shortcut where available.
* Enable app transparency slider for Windows.
* Dark and light theme colours have been slightly polished and unified
to use the same logic.
* On multi-screen systems, fullscreen mode now defaults to the app's
current screen.


### Documentation

Expand All @@ -180,7 +180,7 @@ effort. Thanks to Hanno Zulla for making this possible.
* Improve log messages written to `~/.sonic-pi/log`
* Improve booting on Mac in the case that the audio card's rate can't be
determined.
* Massively improve boot stability on Windows.
* Massively improve boot stability on Windows.
* Improve error message for `play_chord` when notes isn't list like.
* The number of samples that may be loaded at any one time has been
increased from 1000 to 4000. However, memory limitations still apply
Expand All @@ -201,7 +201,7 @@ effort. Thanks to Hanno Zulla for making this possible.
* `sample nil` now no longer plays a sample - it was incorrectly
defaulting to the first built-in sample (`:ambi_choir`)
* `pick`'s `skip:` opt now works as expected: `pick(5).drop(1) == pick(5, skip: 1)`
* `sample` now prints a 'no sample found' message with both `sample nil` and `sample []` ratehr than incorrectly playing the first built-in wav file.
* `sample` now prints a 'no sample found' message with both `sample nil` and `sample []` rather than incorrectly playing the first built-in wav file.


<a name="v2.10"></a>
Expand Down
36 changes: 18 additions & 18 deletions TRANSLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

[![Weblate](https://hosted.weblate.org/widgets/sonic-pi/-/svg-badge.svg)](https://hosted.weblate.org/engage/sonic-pi/)

__(This document is meant for translators who want to help bring Sonic Pi
to their language. If you're contributing code to Sonic Pi, please read
the primer to the [Translation Workflow](TRANSLATION-WORKFLOW.md) to
__(This document is meant for translators who want to help bring Sonic Pi
to their language. If you're contributing code to Sonic Pi, please read
the primer to the [Translation Workflow](TRANSLATION-WORKFLOW.md) to
learn about the inner workings of i18n in your code.)__

Sonic Pi is designed to be usable by everyone including school students
Expand All @@ -23,12 +23,12 @@ appreciated.
*Thanks to everybody involved!*


## Getting started
## Getting started

As Sonic Pi development moves fast, there are always updates to the GUI
(Graphical User Interface) and the tutorial. To help translators keep
track of these changes, we use
*[Weblate](https://hosted.weblate.org/engage/sonic-pi/)*_, an
*[Weblate](https://hosted.weblate.org/engage/sonic-pi/)*, an
open-source web-based translation editor.

The nice thing about Weblate is that you don't need to be a developer to
Expand All @@ -43,7 +43,7 @@ help translate Sonic Pi.
* The *Tutorial* is a long document. Translating it requires
significantly more effort, but it's very rewarding as it is a
step-by-step introduction for new users to Sonic Pi.

The tutorial is written in
[Github Markdown](https://guides.github.com/features/mastering-markdown/),
which contains a few special control character sequences.
Expand All @@ -60,19 +60,19 @@ So if you want to...
* correct a mistake in a translation
* translate to a whole new language

...all you need to do is visit [Sonic Pi on
Weblate](https://hosted.weblate.org/engage/sonic-pi/), sign up and
...all you need to do is visit [Sonic Pi on
Weblate](https://hosted.weblate.org/engage/sonic-pi/), sign up and
follow the instructions there.

Weblate gives you a number of helpful tools, e.g. it spots common
mistakes and you can keep a glossary of recurring terms that you can
Weblate gives you a number of helpful tools, e.g. it spots common
mistakes and you can keep a glossary of recurring terms that you can
share with other translators.

We can't thank you enough for putting up with the inconvenience of
translating Sonic Pi, but allow me to ask you for one more giant
favour: If you want to help keep the translation up-to-date in the
future, please consider [subscribing to the Sonic Pi project on
Weblate](https://hosted.weblate.org/accounts/profile/#subscriptions) so
We can't thank you enough for putting up with the inconvenience of
translating Sonic Pi, but allow me to ask you for one more giant
favour: If you want to help keep the translation up-to-date in the
future, please consider [subscribing to the Sonic Pi project on
Weblate](https://hosted.weblate.org/accounts/profile/#subscriptions) so
that you will be informed of new or changed strings.


Expand All @@ -91,7 +91,7 @@ a friend might use when explaining things to you.

## How to fix the original English texts

You cannot change the original English strings with Weblate. If you
spot a mistake in the English texts, please [file an
issue](https://github.com/samaaron/sonic-pi/issues) or correct it with
You cannot change the original English strings with Weblate. If you
spot a mistake in the English texts, please [file an
issue](https://github.com/samaaron/sonic-pi/issues) or correct it with
a pull request here on github. Thanks!
2 changes: 1 addition & 1 deletion app/server/sonicpi/lib/sonicpi/lang/core.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ def choose(args=nil)
accepts_block: false,
doc: "Choose an element at random from a list (array).
If no arguments are given, will return a lambda function which wnen called takes an argument which will be a list to be chosn from. This is useful for choosing random `onset:` vals for samples
If no arguments are given, will return a lambda function which when called takes an argument which will be a list to be chosen from. This is useful for choosing random `onset:` vals for samples
Always returns a single element (or nil)" ,
examples: ["
Expand Down

0 comments on commit f22d275

Please sign in to comment.