Skip to content

Commit

Permalink
Merge pull request #135 from rffontenelle/patch-1
Browse files Browse the repository at this point in the history
Fix misspellings
  • Loading branch information
Rirusha authored Aug 30, 2024
2 parents bd0e6d7 + 747ca19 commit 1d6640b
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion data/ui/playlists-view.ui
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<style>
<class name="title-1"/>
</style>
<property name="label" translatable="true">Also you liked this playlists</property>
<property name="label" translatable="true">Also you liked these playlists</property>
</object>
</child>
<child>
Expand Down
2 changes: 1 addition & 1 deletion data/ui/track-list.ui
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</style>
<property name="search-delay">900</property>
<property name="hexpand">true</property>
<!-- Translators: placeholder of "search" entry. Local track search (inside of track lsit) -->
<!-- Translators: placeholder of "search" entry. Local track search (inside of track list) -->
<property name="placeholder-text" translatable="true">Search track</property>
</object>
</child>
Expand Down
2 changes: 1 addition & 1 deletion docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Как внести вклад

Если вы не знаете, чем занятся, то:
* Все запланированные задачи лежат в разделе issue и имеют ярлык "enchancement".
* Все запланированные задачи лежат в разделе issue и имеют ярлык "enhancement".
* Все известные проблемы лежат там же и имеют ярлык "bug".

Выбирайте задачи из ближайших версией. Их список вы можете найти [здесь](https://github.com/Rirusha/Cassette/milestones). Это как ускорит выход следующей версии, так и облегчит ревью, так так не нужно будет переключаться с одной глобальной проблемы на другую.
Expand Down
2 changes: 1 addition & 1 deletion src/client/cachier/info-db.vala
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ namespace Cassette.Client.Cachier {

int error_code = statement.step ();
if (error_code != Sqlite.ROW) {
Logger.error ("Error while geting ref for %s in %s, Sqlite error code: %s, message: %s".printf (
Logger.error ("Error while getting ref for %s in %s, Sqlite error code: %s, message: %s".printf (
what_id, db_path, db.errcode ().to_string (), db.errmsg ()
));
}
Expand Down
4 changes: 2 additions & 2 deletions src/client/player/mods/abstract-mode.vala
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public abstract class Cassette.Client.Player.Mode : Object {
* Get previous track index in queue.
* Track list and Flow have different rules for this.
*
* @return new index. Returns -1 if theres no previous track
* @return new index. Returns -1 if there's no previous track
*/
public abstract int get_prev_index ();

Expand Down Expand Up @@ -118,7 +118,7 @@ public abstract class Cassette.Client.Player.Mode : Object {
*
* @param consider_repeat_mode some mode ignore this.
*
* @return new index. Returns -1 if theres no next track
* @return new index. Returns -1 if there's no next track
*/
public abstract int get_next_index (bool consider_repeat_mode);

Expand Down
6 changes: 3 additions & 3 deletions src/client/player/player.vala
Original file line number Diff line number Diff line change
Expand Up @@ -180,19 +180,19 @@ public class Cassette.Client.Player.Player : Object {

/**
* Triggers when previous track in queue finish loading.
* For next track show posibility.
* For next track show possibility.
*/
public signal void next_track_loaded (YaMAPI.Track? next_track);

/**
* Current track started loaded.
* Inteface should block for interaction.
* Interface should block for interaction.
*/
public signal void current_track_start_loading ();

/**
* Current track started loaded.
* Inteface can be released from block.
* Interface can be released from block.
*/
public signal void current_track_finish_loading (YaMAPI.Track track_info);

Expand Down
4 changes: 2 additions & 2 deletions src/pager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ namespace Cassette {
}

} catch (Error e) {
Logger.warning (_("Can't read pages file. Messsage: %s").printf (e.message));
Logger.warning (_("Can't read pages file. Message: %s").printf (e.message));
}
}

Expand All @@ -328,7 +328,7 @@ namespace Cassette {
FileUtils.set_contents (pages_file.peek_path (), content_str, content_str.length);

} catch (Error e) {
Logger.warning (_("Can't create pages file. Messsage: %s").printf (e.message));
Logger.warning (_("Can't create pages file. Message: %s").printf (e.message));
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/widgets/views/abstract-cachiable.vala
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ namespace Cassette {
if (yell_status) {
var content_info = get_content_name (object_info, false, false);
// Translators: first %s - content type (Playlist), second - name
application.show_message (_("Cacheing of %s%s started").printf (content_info[0], content_info[1]));
application.show_message (_("Caching of %s%s started").printf (content_info[0], content_info[1]));
}
}

Expand Down

0 comments on commit 1d6640b

Please sign in to comment.