Skip to content

Commit

Permalink
test: Fix eslint and yarn i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
avoinea committed Aug 29, 2023
1 parent d791301 commit 331149f
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 45 deletions.
14 changes: 14 additions & 0 deletions locales/en/LC_MESSAGES/volto.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language: \n"
"Language-Team: \n"
"Content-Type: \n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"


8 changes: 4 additions & 4 deletions src/helpers/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export useClickOutside from './useClickOutside';
export usePrevious from './usePrevious';
export useFirstVisited from './useFirstVisited';
export handleEnterKeyPress from './eventHandlers';
export { default as useClickOutside } from './useClickOutside';
export { default as usePrevious } from './usePrevious';
export { default as useFirstVisited } from './useFirstVisited';
export { default as handleEnterKeyPress } from './eventHandlers';
62 changes: 21 additions & 41 deletions src/ui/index.js
Original file line number Diff line number Diff line change
@@ -1,41 +1,21 @@
export Banner from './Banner/Banner';

export Callout from './Callout/Callout';

export Breadcrumbs from './Breadcrumbs/Breadcrumbs';

export Tag from './Tag/Tag';

export TagList from './TagList/TagList';

export Footer from './Footer/Footer';

export Header from './Header/Header';

export InpageNavigation from './InpageNavigation/InpageNavigation';

export Logo from './Logo/Logo';

export Quote from './Quote/Quote';

export Timeline from './Timeline/Timeline';

export Testimonial from './Quote/Testimonial/Testimonial';

export KeyContent from './KeyContent/KeyContent';

export DownloadLabeledIcon from './DownloadLabeledIcon/DownloadLabeledIcon';

export NewTabLabeledIcon from './NewTabLabeledIcon/NewTabLabeledIcon';

export LabeledIconGroup from './LabeledIconGroup/LabeledIconGroup';

export LanguageLabeledIcon from './LanguageLabeledIcon/LanguageLabeledIcon';

export RelatedContent from './Card/RelatedContent/RelatedContent';

export Hero from './Hero/Hero';

export Copyright from './Copyright/Copyright';

export Video from './Video/Video';
export { default as Banner } from './Banner/Banner';
export { default as Callout } from './Callout/Callout';
export { default as Breadcrumbs } from './Breadcrumbs/Breadcrumbs';
export { default as Tag } from './Tag/Tag';
export { default as TagList } from './TagList/TagList';
export { default as Footer } from './Footer/Footer';
export { default as Header } from './Header/Header';
export { default as InpageNavigation } from './InpageNavigation/InpageNavigation';
export { default as Logo } from './Logo/Logo';
export { default as Quote } from './Quote/Quote';
export { default as Timeline } from './Timeline/Timeline';
export { default as Testimonial } from './Quote/Testimonial/Testimonial';
export { default as KeyContent } from './KeyContent/KeyContent';
export { default as DownloadLabeledIcon } from './DownloadLabeledIcon/DownloadLabeledIcon';
export { default as NewTabLabeledIcon } from './NewTabLabeledIcon/NewTabLabeledIcon';
export { default as LabeledIconGroup } from './LabeledIconGroup/LabeledIconGroup';
export { default as LanguageLabeledIcon } from './LanguageLabeledIcon/LanguageLabeledIcon';
export { default as RelatedContent } from './Card/RelatedContent/RelatedContent';
export { default as Hero } from './Hero/Hero';
export { default as Copyright } from './Copyright/Copyright';
export { default as Video } from './Video/Video';

0 comments on commit 331149f

Please sign in to comment.