@moises.ai/design-system 4.17.11 → 4.17.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -103,14 +103,14 @@ const ProjectItem = ({
|
|
|
103
103
|
{allTracks.length === 0 && !loading && (
|
|
104
104
|
<Flex direction="row" gap="3" p="5" pt="2" align="center" justify="center">
|
|
105
105
|
<NoMusicIcon width={16} height={16} style={{ color: 'var(--neutral-alpha-10)' }} />
|
|
106
|
-
<Text size="2" style={{ color: 'var(--neutral-alpha-10)' }}>This file has no tracks</Text>
|
|
106
|
+
<Text size="2" style={{ color: 'var(--neutral-alpha-10)' }}>{labels.noTracks || 'This file has no tracks'}</Text>
|
|
107
107
|
</Flex>
|
|
108
108
|
)}
|
|
109
109
|
|
|
110
110
|
{loading && (
|
|
111
111
|
<Flex direction="row" gap="3" p="5" align="center" justify="center">
|
|
112
112
|
<Spinner width={16} height={16} style={{ color: 'var(--neutral-alpha-10)' }} />
|
|
113
|
-
<Text size="2" style={{ color: 'var(--neutral-alpha-10)' }}>Loading tracks
|
|
113
|
+
<Text size="2" style={{ color: 'var(--neutral-alpha-10)' }}>{labels.loading || 'Loading tracks...'}</Text>
|
|
114
114
|
</Flex>
|
|
115
115
|
)}
|
|
116
116
|
|