fix grammar

This commit is contained in:
Marcell Kovács 2023-02-07 18:02:24 +01:00
parent 0a7faff2b9
commit 0ec3741ef8
No known key found for this signature in database
10 changed files with 13 additions and 13 deletions

View File

@ -50,7 +50,7 @@ jobs:
uses: codecov/codecov-action@v3.1.1
if: ${{ matrix.py_version == '3.9' }}
- name: Publish Test Atrifact
- name: Publish Test Artifact
uses: actions/upload-artifact@v3
with:
retention-days: 14

View File

@ -1,6 +1,6 @@
# How to contribute
Thanks you for contributing to Jellyfin for Kodi!
Thank you for contributing to Jellyfin for Kodi!
* Make pull requests towards the **master** branch;
* Keep the maximum line length shorter than 100 characters to keep things clean and readable;

View File

@ -58,7 +58,7 @@ def get_device_name():
''' Detect the device name. If deviceNameOpt, then
use the device name in the add-on settings.
Otherwise fallback to the Kodi device name.
Otherwise, fallback to the Kodi device name.
'''
if not settings('deviceNameOpt.bool'):
device_name = xbmc.getInfoLabel('System.FriendlyName')

View File

@ -235,7 +235,7 @@ def _get_items(query, server_id=None):
# multiprocessing.dummy.Pool completes all requests in multiple threads but has to
# complete all tasks before allowing any results to be processed. ThreadPoolExecutor
# allows for completed tasks to be processed while other tasks are completed on other
# threads. Dont be a dummy.Pool, be a ThreadPoolExecutor
# threads. Don't be a dummy.Pool, be a ThreadPoolExecutor
with concurrent.futures.ThreadPoolExecutor(dthreads) as p:
# dictionary for storing the jobs and their results
jobs = {}

View File

@ -210,7 +210,7 @@ class FullSync(object):
def process_library(self, library_id):
''' Add a library by it's id. Create a node and a playlist whenever appropriate.
''' Add a library by its id. Create a node and a playlist whenever appropriate.
'''
media = {
'movies': self.movies,

View File

@ -4,7 +4,7 @@ from __future__ import division, absolute_import, print_function, unicode_litera
class LazyLogger(object):
"""`helper.loghandler.getLogger()` is used everywhere.
This class helps avoiding import errors.
This class helps to avoid import errors.
"""
__logger = None
__logger_name = None

View File

@ -515,7 +515,7 @@ class PlayUtils(object):
def set_external_subs(self, source, listitem):
''' Try to download external subs locally so we can label them.
''' Try to download external subs locally, so we can label them.
Since Jellyfin returns all possible tracks together, sort them.
IsTextSubtitleStream if true, is available to download from server.
'''

View File

@ -20,7 +20,7 @@ LOG = LazyLogger(__name__)
def callback(message, data):
''' Callback function should received message, data
''' Callback function should receive message, data
message: string
data: json dictionary
'''

View File

@ -77,7 +77,7 @@ class Monitor(xbmc.Monitor):
Otherwise the next played item will be added the previous queue.
'''
if method == "Player.OnStop":
xbmc.sleep(3000) # let's wait for the player so we don't clear the canceled playlist by mistake.
xbmc.sleep(3000) # let's wait for the player, so we don't clear the canceled playlist by mistake.
if xbmc.getCondVisibility("!Player.HasMedia + !Window.IsVisible(busydialog)"):
@ -247,7 +247,7 @@ class Monitor(xbmc.Monitor):
elif command == 'SetVolume':
xbmc.executebuiltin('SetVolume(%s[,showvolumebar])' % args['Volume'])
# Kodi needs a bit of time to update it's current status
# Kodi needs a bit of time to update its current status
xbmc.sleep(500)
self.player.report_playback()

View File

@ -191,7 +191,7 @@ class Views(object):
playlist_path = translate_path("special://profile/playlists/video")
index = 0
# Kodi 19 doesn't seem to create this directory on it's own
# Kodi 19 doesn't seem to create this directory on its own
if not os.path.isdir(node_path):
os.makedirs(node_path)
@ -937,7 +937,7 @@ class Views(object):
def delete_playlist_by_id(self, view_id):
''' Remove playlist based based on view_id.
''' Remove playlist based on view_id.
'''
path = translate_path("special://profile/playlists/video/")
_, files = xbmcvfs.listdir(path)