Skip to content

Commit

Permalink
finish en
Browse files Browse the repository at this point in the history
  • Loading branch information
leeowenowen committed Apr 19, 2016
1 parent ef6f0f3 commit df842fa
Showing 1 changed file with 102 additions and 101 deletions.
203 changes: 102 additions & 101 deletions app/src/main/res/values-en/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,108 +86,109 @@
<string name="desc_observable_create_error">create an Observable that emits nothing and then signals an error</string>
<string name="desc_observable_create_never">create an Observable that emits nothing at all</string>

<string name="desc_math_averageInteger"></string>
<string name="desc_math_averageLong"></string>
<string name="desc_math_averageFloat"></string>
<string name="desc_math_averageDouble"></string>
<string name="desc_math_max"></string>
<string name="desc_math_maxBy"></string>
<string name="desc_math_min"></string>
<string name="desc_math_minBy"></string>
<string name="desc_math_sumInteger"></string>
<string name="desc_math_sumLong"></string>
<string name="desc_math_sumFloat"></string>
<string name="desc_math_sumDouble"></string>
<string name="desc_math_concat"></string>
<string name="desc_math_count"></string>
<string name="desc_math_countLong"></string>
<string name="desc_math_reduce"></string>
<string name="desc_math_collect"></string>
<string name="desc_math_toList"></string>
<string name="desc_math_toSortedList"></string>
<string name="desc_math_toMap"></string>
<string name="desc_math_toMultiMap"></string>

<string name="desc_filter_filter"></string>
<string name="desc_filter_takeLast"></string>
<string name="desc_filter_last"></string>
<string name="desc_filter_lastOrDefault"></string>
<string name="desc_filter_takeLastBuffer"></string>
<string name="desc_filter_skip"></string>
<string name="desc_filter_skipLast"></string>
<string name="desc_filter_take"></string>
<string name="desc_filter_first"></string>
<string name="desc_filter_takeFirst"></string>
<string name="desc_filter_firstOrDefault"></string>
<string name="desc_filter_elementAt"></string>
<string name="desc_filter_elementAtOrDefault"></string>
<string name="desc_filter_sample"></string>
<string name="desc_filter_throttleLast"></string>
<string name="desc_filter_throttleFirst"></string>
<string name="desc_filter_throttleWithTimeout"></string>
<string name="desc_filter_debounce"></string>
<string name="desc_filter_timeout"></string>
<string name="desc_filter_distinct"></string>
<string name="desc_filter_distinctUntilChanged"></string>
<string name="desc_filter_ofType"></string>
<string name="desc_filter_ignoreElements"></string>

<string name="desc_error_handler_onErrorResumeNext"></string>
<string name="desc_error_handler_onErrorReturn"></string>
<string name="desc_error_handler_onExceptionResumeNext"></string>
<string name="desc_error_handler_retry"></string>
<string name="desc_error_handler_retryWhen"></string>
<string name="desc_math_averageInteger">calculates the average of Integers emitted by an Observable and emits this average</string>
<string name="desc_math_averageLong">calculates the average of Longs emitted by an Observable and emits this average</string>
<string name="desc_math_averageFloat"> calculates the average of Floats emitted by an Observable and emits this average</string>
<string name="desc_math_averageDouble"> calculates the average of Doubles emitted by an Observable and emits this average</string>
<string name="desc_math_max">emits the maximum value emitted by a source Observable</string>
<string name="desc_math_maxBy">emits the item emitted by the source Observable that has the maximum key value</string>
<string name="desc_math_min">emits the minimum value emitted by a source Observable</string>
<string name="desc_math_minBy"> emits the item emitted by the source Observable that has the minimum key value</string>
<string name="desc_math_sumInteger">adds the Integers emitted by an Observable and emits this sum</string>
<string name="desc_math_sumLong">adds the Longs emitted by an Observable and emits this sum</string>
<string name="desc_math_sumFloat">adds the Floats emitted by an Observable and emits this sum</string>
<string name="desc_math_sumDouble">adds the Doubles emitted by an Observable and emits this sum</string>

<string name="desc_math_concat">concatenate two or more Observables sequentially</string>
<string name="desc_math_count"> counts the number of items emitted by an Observable and emits this count</string>
<string name="desc_math_countLong"> counts the number of items emitted by an Observable and emits this count</string>
<string name="desc_math_reduce">apply a function to each emitted item, sequentially, and emit only the final accumulated value</string>
<string name="desc_math_collect">collect items emitted by the source Observable into a single mutable data structure and return an Observable that emits this structure</string>
<string name="desc_math_toList">collect all items from an Observable and emit them as a single List</string>
<string name="desc_math_toSortedList">collect all items from an Observable and emit them as a single, sorted List</string>
<string name="desc_math_toMap">convert the sequence of items emitted by an Observable into a map keyed by a specified key function</string>
<string name="desc_math_toMultiMap">convert the sequence of items emitted by an Observable into an ArrayList that is also a map keyed by a specified key function</string>

<string name="desc_filter_filter">filter items emitted by an Observable</string>
<string name="desc_filter_takeLast">only emit the last n items emitted by an Observable</string>
<string name="desc_filter_last">emit only the last item emitted by an Observable</string>
<string name="desc_filter_lastOrDefault">emit only the last item emitted by an Observable, or a default value if the source Observable is empty</string>
<string name="desc_filter_takeLastBuffer">emit the last n items emitted by an Observable, as a single list item</string>
<string name="desc_filter_skip"> ignore the first n items emitted by an Observable</string>
<string name="desc_filter_skipLast"> ignore the last n items emitted by an Observable</string>
<string name="desc_filter_take">emit only the first n items emitted by an Observable</string>
<string name="desc_filter_first">emit only the first item emitted by an Observable, or the first item that meets some condition</string>
<string name="desc_filter_takeFirst">emit only the first item emitted by an Observable</string>
<string name="desc_filter_firstOrDefault">emit only the first item emitted by an Observable that meets some condition</string>
<string name="desc_filter_elementAt"> emit item n emitted by the source Observable</string>
<string name="desc_filter_elementAtOrDefault">emit item n emitted by the source Observable, or a default item if the source Observable emits fewer than n items</string>
<string name="desc_filter_sample">emit the most recent items emitted by an Observable within periodic time intervals</string>
<string name="desc_filter_throttleLast">emit the most recent items emitted by an Observable within periodic time intervals</string>
<string name="desc_filter_throttleFirst">emit the first items emitted by an Observable within periodic time intervals</string>
<string name="desc_filter_throttleWithTimeout">only emit an item from the source Observable after a particular timespan has passed without the Observable emitting any other items</string>
<string name="desc_filter_debounce">only emit an item from the source Observable after a particular timespan has passed without the Observable emitting any other items</string>
<string name="desc_filter_timeout">emit items from a source Observable, but issue an exception if no item is emitted in a specified timespan</string>
<string name="desc_filter_distinct"> suppress duplicate items emitted by the source Observable</string>
<string name="desc_filter_distinctUntilChanged"> suppress duplicate consecutive items emitted by the source Observable</string>
<string name="desc_filter_ofType">emit only those items from the source Observable that are of a particular class</string>
<string name="desc_filter_ignoreElements"> discard the items emitted by the source Observable and only pass through the error or completed notification</string>

<string name="desc_error_handler_onErrorResumeNext">instructs an Observable to emit a sequence of items if it encounters an error</string>
<string name="desc_error_handler_onErrorReturn"> instructs an Observable to emit a particular item when it encounters an error</string>
<string name="desc_error_handler_onExceptionResumeNext"> instructs an Observable to continue emitting items after it encounters an exception (but not another variety of throwable)</string>
<string name="desc_error_handler_retry"> if a source Observable emits an error, resubscribe to it in the hopes that it will complete without error</string>
<string name="desc_error_handler_retryWhen">if a source Observable emits an error, pass that error to another Observable to determine whether to resubscribe to the source</string>

<string name="desc_custormer_operator_customeOperator"></string>
<string name="desc_connectable_obervable_connect"></string>
<string name="desc_connectable_obervable_publish"></string>
<string name="desc_connectable_obervable_replay"></string>
<string name="desc_connectable_obervable_refCount"></string>

<string name="desc_condition_amb"></string>
<string name="desc_condition_defaultIfEmpty"></string>
<string name="desc_condition_doWhile"></string>
<string name="desc_condition_ifThen"></string>
<string name="desc_condition_skipUtil"></string>
<string name="desc_condition_skipWhile"></string>
<string name="desc_condition_switchcase"></string>
<string name="desc_condition_takeUntil"></string>
<string name="desc_condition_takeWhile"></string>
<string name="desc_condition_takeWhileWithIndex"></string>
<string name="desc_condition_WhileDo"></string>
<string name="desc_combine_startWith"></string>
<string name="desc_combine_merge"></string>
<string name="desc_combine_mergeDelayError"></string>
<string name="desc_combine_zip"></string>
<string name="desc_combine_and_then_when"></string>
<string name="desc_combine_combineLatest"></string>
<string name="desc_combine_join"></string>
<string name="desc_combine_groupjoin"></string>
<string name="desc_connectable_obervable_connect">instructs a Connectable Observable to begin emitting items</string>
<string name="desc_connectable_obervable_publish"> represents an Observable as a Connectable Observable</string>
<string name="desc_connectable_obervable_replay">ensures that all Subscribers see the same sequence of emitted items, even if they subscribe after the Observable begins emitting the items</string>
<string name="desc_connectable_obervable_refCount"> makes a Connectable Observable behave like an ordinary Observable</string>

<string name="desc_condition_amb"> given two or more source Observables, emits all of the items from the first of these Observables to emit an item</string>
<string name="desc_condition_defaultIfEmpty">emit items from the source Observable, or emit a default item if the source Observable completes after emitting no items</string>
<string name="desc_condition_doWhile">emit the source Observable's sequence, and then repeat the sequence as long as a condition remains true</string>
<string name="desc_condition_ifThen">only emit the source Observable's sequence if a condition is true, otherwise emit an empty or default sequence</string>
<string name="desc_condition_skipUtil">discard items emitted by a source Observable until a second Observable emits an item, then emit the remainder of the source Observable's items</string>
<string name="desc_condition_skipWhile"> discard items emitted by an Observable until a specified condition is false, then emit the remainder</string>
<string name="desc_condition_switchcase"> emit the sequence from a particular Observable based on the results of an evaluation</string>
<string name="desc_condition_takeUntil">emits the items from the source Observable until a second Observable emits an item or issues a notification</string>
<string name="desc_condition_takeWhile">emit items emitted by an Observable as long as a specified condition is true, then skip the remainder</string>
<string name="desc_condition_takeWhileWithIndex">emit items emitted by an Observable as long as a specified condition is true, then skip the remainder</string>
<string name="desc_condition_WhileDo">if a condition is true, emit the source Observable's sequence and then repeat the sequence as long as the condition remains true</string>
<string name="desc_combine_startWith">emit a specified sequence of items before beginning to emit the items from the Observable</string>
<string name="desc_combine_merge">combine multiple Observables into one</string>
<string name="desc_combine_mergeDelayError">combine multiple Observables into one, allowing error-free Observables to continue before propagating errors</string>
<string name="desc_combine_zip">combine sets of items emitted by two or more Observables together via a specified function and emit items based on the results of this function</string>
<string name="desc_combine_and_then_when">combine sets of items emitted by two or more Observables by means of Pattern and Plan intermediaries</string>
<string name="desc_combine_combineLatest">when an item is emitted by either of two Observables, combine the latest item emitted by each Observable via a specified function and emit items based on the results of this function</string>
<string name="desc_combine_join">combine the items emitted by two Observables whenever one item from one Observable falls within a window of duration specified by an item emitted by the other Observable</string>
<string name="desc_combine_groupjoin">combine the items emitted by two Observables whenever one item from one Observable falls within a window of duration specified by an item emitted by the other Observable</string>
<string name="desc_combine_switchIfEmpty"></string>
<string name="desc_combine_switchOnNext"></string>

<string name="desc_blocking_observable_forEach"></string>
<string name="desc_blocking_observable_first"></string>
<string name="desc_blocking_observable_firstOrDefault"></string>
<string name="desc_blocking_observable_last"></string>
<string name="desc_blocking_observable_lastOrDefault"></string>
<string name="desc_blocking_observable_mostRecent"></string>
<string name="desc_blocking_observable_next"></string>
<string name="desc_blocking_observable_latest"></string>
<string name="desc_blocking_observable_single"></string>
<string name="desc_blocking_observable_singleOrDefault"></string>
<string name="desc_blocking_observable_toFuture"></string>
<string name="desc_blocking_observable_toIterable"></string>
<string name="desc_blocking_observable_getIterator"></string>


<string name="desc_async_start"></string>
<string name="desc_async_toAsync"></string>
<string name="desc_async_startFuture"></string>
<string name="desc_async_deferFuture"></string>
<string name="desc_async_forEachFuture"></string>
<string name="desc_async_fromAction"></string>
<string name="desc_async_fromCallable"></string>
<string name="desc_async_fromRunnable"></string>
<string name="desc_async_runAsync"></string>
<string name="desc_combine_switchOnNext">convert an Observable that emits Observables into a single Observable that emits the items emitted by the most-recently emitted of those Observables</string>

<string name="desc_blocking_observable_forEach"> invoke a function on each item emitted by the Observable; block until the Observable completes</string>
<string name="desc_blocking_observable_first">block until the Observable emits an item, then return the first item emitted by the Observable</string>
<string name="desc_blocking_observable_firstOrDefault">block until the Observable emits an item or completes, then return the first item emitted by the Observable or a default item if the Observable did not emit an item</string>
<string name="desc_blocking_observable_last">block until the Observable completes, then return the last item emitted by the Observable</string>
<string name="desc_blocking_observable_lastOrDefault">block until the Observable completes, then return the last item emitted by the Observable or a default item if there is no last item</string>
<string name="desc_blocking_observable_mostRecent">returns an iterable that always returns the item most recently emitted by the Observable</string>
<string name="desc_blocking_observable_next">returns an iterable that blocks until the Observable emits another item, then returns that item</string>
<string name="desc_blocking_observable_latest">returns an iterable that blocks until or unless the Observable emits an item that has not been returned by the iterable, then returns that item</string>
<string name="desc_blocking_observable_single">if the Observable completes after emitting a single item, return that item, otherwise throw an exception</string>
<string name="desc_blocking_observable_singleOrDefault">if the Observable completes after emitting a single item, return that item, otherwise return a default item</string>
<string name="desc_blocking_observable_toFuture">convert the Observable into a Future</string>
<string name="desc_blocking_observable_toIterable">convert the sequence emitted by the Observable into an Iterable</string>
<string name="desc_blocking_observable_getIterator">convert the sequence emitted by the Observable into an Iterator</string>


<string name="desc_async_start"> create an Observable that emits the return value of a function</string>
<string name="desc_async_toAsync">convert a function or Action into an Observable that executes the function and emits its return value</string>
<string name="desc_async_startFuture">convert a function that returns Future into an Observable that emits that Future's return value</string>
<string name="desc_async_deferFuture">convert a Future that returns an Observable into an Observable, but do not attempt to get the Observable that the Future returns until a Subscriber subscribes</string>
<string name="desc_async_forEachFuture">pass Subscriber methods to an Observable but also have it behave like a Future that blocks until it completes</string>
<string name="desc_async_fromAction"> convert an Action into an Observable that invokes the action and emits its result when a Subscriber subscribes</string>
<string name="desc_async_fromCallable">convert a Callable into an Observable that invokes the callable and emits its result or exception when a Subscriber subscribes</string>
<string name="desc_async_fromRunnable">convert a Runnable into an Observable that invokes the runable and emits its result when a Subscriber subscribes</string>
<string name="desc_async_runAsync"> returns a StoppableObservable that emits multiple actions as generated by a specified Action on a Scheduler</string>
</resources>

0 comments on commit df842fa

Please sign in to comment.