-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
272 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
../node_modules/font-awesome/fonts/ | ||
../node_modules/@fortawesome/fontawesome-free-webfonts/webfonts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
'use strict' | ||
|
||
module.exports = function(shariff) { | ||
var url = encodeURIComponent(shariff.getURL()) | ||
var title = encodeURIComponent(shariff.getTitle()) | ||
return { | ||
popup: true, | ||
shareText: 'flip it', | ||
name: 'flipboard', | ||
faPrefix: 'fab', | ||
faName: 'fa-flipboard', | ||
title: { | ||
'bg': 'Сподели в Flipboard', | ||
'cs': 'Sdílet na Flipboardu', | ||
'da': 'Del på Flipboard', | ||
'de': 'Bei Flipboard teilen', | ||
'en': 'Share on Flipboard', | ||
'es': 'Compartir en Flipboard', | ||
'fi': 'Jaa Flipboardissä', | ||
'fr': 'Partager sur Flipboard', | ||
'hr': 'Podijelite na Flipboardu', | ||
'hu': 'Megosztás Flipboardon', | ||
'it': 'Condividi su Flipboard', | ||
'ja': 'Flipboard上で共有', | ||
'ko': 'Flipboard에서 공유하기', | ||
'nl': 'Delen op Flipboard', | ||
'no': 'Del på Flipboard', | ||
'pl': 'Udostępnij na Flipboardu', | ||
'pt': 'Compartilhar no Flipboard', | ||
'ro': 'Partajează pe Flipboard', | ||
'ru': 'Поделиться на Flipboard', | ||
'sk': 'Zdieľať na Flipboardu', | ||
'sl': 'Deli na Flipboardu', | ||
'sr': 'Podeli na Flipboard-u', | ||
'sv': 'Dela på Flipboard', | ||
'tr': 'Flipboard\'ta paylaş', | ||
'zh': '在Flipboard上分享' | ||
}, | ||
shareUrl: 'https://share.flipboard.com/bookmarklet/popout?v=2&title=' + title + '&url=' + url + shariff.getReferrerTrack() | ||
} | ||
} |
Oops, something went wrong.