forked from Anamari-ctrl/orange3-pumice
-
Notifications
You must be signed in to change notification settings - Fork 1
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
6 changed files
with
122 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
recursive-include . *.toml *.ini *.md *.pypi .coveragerc LICENSE | ||
recursive-include doc *.bat *.json *.md *.png *.py *.rst *.txt Makefile | ||
recursive-include orangecontrib *.svg | ||
recursive-include i18n *.jaml *.yaml |
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,70 @@ | ||
networks/dataSimulation.py: | ||
inputData.csv: false | ||
;: false | ||
%d: false | ||
widgets/owrecommendation.py: | ||
class `PersonDelegate`: | ||
def `paint`: | ||
\x00: false | ||
def `sizeHint`: | ||
\x00: false | ||
class `ItemDelegate`: | ||
def `paint`: | ||
\x00: false | ||
def `sizeHint`: | ||
\x00: false | ||
class `CartoonTableModel`: | ||
def `data_for_person`: | ||
'Similar: ': 'Podobni: ' | ||
', ': true | ||
\x00: false | ||
def `data_for_recommendation`: | ||
\N{Hourglass}: false | ||
\N{Empty Set}: false | ||
', ': false | ||
({recommenders}): false | ||
{title}\x00{recommenders}: false | ||
def `__on_future_done`: | ||
Future[QImage]: false | ||
class `OWRecommendation`: | ||
Recommendation: Priporočila | ||
Demo for simple network-based recommendation algorithm: Demo za preprost algoritem priporočil na podlagi omrežja podobnih uporabnikov | ||
icons/recommendation.svg: false | ||
class `Inputs`: | ||
Network: Mreža | ||
Items: Stvari | ||
class `Error`: | ||
Network does not contain user choices. Provide separate data.: Mreža ne vsebuje uporabniških izbir. Posredujte ločene podatke. | ||
Network does not contain item names.: Mreža ne vsebuje imen stvari. | ||
Data included in the network does not contain user names.: Podatki vključeni v mrežo ne vsebujejo uporabniških imen. | ||
Some network nodes are missing from data columns: Nekatera vozlišča mreže manjkajo v stolpcih podatkov | ||
Network nodes contain multiple string attributes.\n: Vozlišča mreže vsebujejo več besedilnih spremenljivk.\n | ||
When network and data are both present, the network must have\n: Ko sta mreža in podatki prisotni, mora mreža imeti\n | ||
a single string attribute whose values match the names of persons.: en sam besedilni atribut, katerega vrednosti se ujemajo z imeni oseb. | ||
Network data must be a table or a 1-d array: Podatki mreže morajo biti tabela ali 1-d polje | ||
def `__init__`: | ||
person_column: false | ||
'Person name column (in network data): ': 'Stolpec z imeni oseb (v podatkih mreže): ' | ||
item_column: false | ||
'Item column: ': 'Stolpec z imeni stvari: ' | ||
def `_init_item_column_from_data`: | ||
type: false | ||
image: false | ||
.png: false | ||
.jpg: false | ||
.jpeg: false | ||
.gif: false | ||
def `set_images`: | ||
origin: false | ||
.: false | ||
http: false | ||
file://: false | ||
def `main`: | ||
..: false | ||
datasets: false | ||
cartoons: false | ||
cartoons.xlsx: false | ||
poster: false | ||
origin: false | ||
cartoons.net: false | ||
__main__: false |
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,7 @@ | ||
if [ "$#" -ne 1 ] | ||
then | ||
echo "Usage: trans <destination>" | ||
else | ||
dest=$1 | ||
trubar --conf trubar-config.yaml translate -s ../orangecontrib/pumice -d $dest/orangecontrib/pumice msgs.jaml | ||
fi |
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,13 @@ | ||
languages: | ||
en: | ||
name: English | ||
original: true | ||
si: | ||
name: Slovenščina | ||
international-name: Slovenian | ||
auto-import: from orangecanvas.utils.localization.si import plsi, plsi_sz, z_besedo # pylint: disable=wrong-import-order | ||
auto-import: |2 | ||
from orangecanvas.utils.localization import Translator # pylint: disable=wrong-import-order | ||
_tr = Translator("orangecontrib.imageanalytics", "biolab.si", "Orange") | ||
del Translator | ||
encoding: "utf-8" |
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